Courseiva

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

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

Page 1

Page 2 of 19

Page 3
76
MCQhard

A network engineer notices that a switch port connected to a legacy server is experiencing late collisions and the server reports excessive retransmissions. The switch port is configured for auto-negotiation and shows a negotiated speed of 100 Mbps and duplex full. The server's NIC is manually set to 100 Mbps and half-duplex. What is the most likely cause?

A.The switch port is incorrectly configured for auto-negotiation and should be manually set to match the server's NIC.
B.The server's NIC is failing, causing cyclic redundancy check (CRC) errors and forcing retransmissions.
C.A duplex mismatch exists between the switch port and the server NIC.
D.The switch port is overloaded by a broadcast storm, causing an excessive number of collisions.
AnswerC

The switch port negotiated full-duplex at 100 Mbps (as shown in the switch output), while the server NIC is hard-coded to half-duplex. This mismatch causes exactly the observed symptoms: late collisions on the full-duplex switch port and excessive retransmissions on the half-duplex server.

Why this answer

The switch port is auto-negotiating to full-duplex while the server's NIC is manually set to half-duplex. This creates a duplex mismatch: the switch transmits expecting no collisions (full-duplex), but the server, operating in half-duplex, detects collisions when the switch sends frames while the server is transmitting. Late collisions occur because the collision is detected after the first 64 bytes of the frame, and the server's half-duplex CSMA/CD logic forces retransmissions, matching the symptoms described.

Exam trap

Cisco often tests the concept that auto-negotiation mismatches (e.g., one side set to manual) cause duplex mismatches, and candidates mistakenly think the issue is speed mismatch or that both sides must be manually set, but the trap here is that the server's manual half-duplex setting overrides the auto-negotiation result, creating a duplex mismatch that produces late collisions.

Why the other options are wrong

A

Misunderstanding that auto-negotiation always causes duplex mismatches, when in fact a mismatch occurs because one side is manually configured while the other uses auto-negotiation to negotiate an incompatible mode.

B

Confusing CRC errors with late collisions. Late collisions are a layer-1 timing issue, not a data integrity problem.

D

Attributing all network performance problems to broadcast storms, ignoring the specific error counter 'late collisions' that points directly to a duplex mismatch.

77
MCQhard

A network administrator has configured dynamic NAT on a Cisco router to allow internal hosts to access the Internet. Internal hosts can ping external servers, but external hosts cannot initiate connections to any internal host. The administrator checks the NAT translations. What is the most likely cause of this behavior?

A.The NAT pool is exhausted because it contains only 21 addresses, and more than 21 internal hosts are trying to access the Internet simultaneously.
B.The router is configured for dynamic NAT without overload (PAT), so it assigns one public IP per inside host and does not allow inbound connections without a static mapping.
C.The inside local addresses are not in the same subnet as the inside interface, causing asymmetric routing.
D.The outside global addresses are not routable on the Internet, so external hosts cannot send return traffic.
AnswerB

The absence of protocol/port in the translations indicates one-to-one dynamic NAT without overload. This explains why internal hosts can initiate outbound traffic (they get a public IP) but external hosts cannot reach internal hosts (no return path).

Why this answer

Dynamic NAT without overload maps each inside host to a unique public IP from the pool, but it does not allow external hosts to initiate connections because there is no static mapping or port forwarding to direct inbound traffic. The described behavior—internal hosts reaching the Internet while external hosts cannot initiate connections—is typical of dynamic NAT without PAT. With PAT (overload), many internal hosts share a single public IP and inbound connections would still require explicit port forwarding; without overload, the router simply does not know how to translate incoming requests back to the correct inside host.

Exam trap

Candidates often confuse dynamic NAT with Port Address Translation (PAT). The trap is assuming that any dynamic NAT configuration automatically allows inbound connections, but without overload, external hosts cannot reach internal hosts unless static NAT or port forwarding is configured.

Why the other options are wrong

A

The symptom described is that external hosts cannot initiate connections to internal hosts. Even if the NAT pool were exhausted, internal hosts would still be able to initiate outbound connections (using PAT if configured), and external hosts would still be unable to initiate inbound connections unless static NAT or port forwarding is configured. Pool exhaustion would cause outbound failures, not specifically inbound failures.

C

The inside local addresses (192.168.1.x) are private IPs that are typically configured on the inside interface. The NAT translations show them mapping to public IPs, indicating that the router is correctly performing NAT. Asymmetric routing would cause connectivity issues in both directions, not just inbound, and is not indicated by the given symptoms.

D

The question states that internal hosts can ping external servers, which means return traffic is reaching the internal hosts. If the outside global addresses were not routable, the ping would fail because the external server would not be able to send a reply. Therefore, the addresses must be routable in this scenario.

Why candidates pick the wrong answer

A

Students might think that if the pool is exhausted, no new translations can be created, which could prevent inbound connections. However, inbound connections require a pre-existing translation or static mapping, not just an available pool address.

C

Students might confuse subnet mismatch with NAT behavior, thinking that if the inside local addresses are not in the same subnet as the inside interface, routing could be affected. However, NAT is designed to translate between different address spaces, so this is not a typical cause of the described problem.

D

Students might recognize that 203.0.113.x is from the TEST-NET-3 documentation range and assume it is not routable. However, in exam scenarios, these addresses are used as placeholders for routable public IPs. The key point is that the symptom is about inbound connections, not routability.

78
MCQhard

A security policy requires that only one management subnet be able to initiate SSH to a router. Which approach most directly supports that requirement?

A.Use an ACL to permit SSH access only from the approved management subnet.
B.Enable PortFast on the router interfaces.
C.Disable all logging on the router.
D.Replace SSH with Telnet for easier filtering.
AnswerA

This is correct because the policy is specifically about restricting management access by source subnet.

Why this answer

The most direct approach is to use an ACL that restricts which source subnet is permitted to reach SSH management access on the router. In practical terms, SSH can remain enabled as the secure protocol, but access to it should still be limited to trusted management sources. That is a classic example of combining secure protocol choice with source restriction.

Options B and C are incorrect because PortFast is a spanning-tree feature unrelated to access control, and disabling logging does not restrict who can initiate SSH. Option D is wrong because Telnet does not filter by subnet and is less secure than SSH.

Exam trap

Don't confuse securing the protocol (SSH) with controlling access by source subnet. They are complementary but distinct actions.

Why the other options are wrong

B

PortFast is a spanning-tree optimization that speeds up the transition of an access port to forwarding; it does not control which sources can initiate SSH.

C

Disabling logging prevents the router from recording events, but it does not prevent unauthorized subnets from attempting SSH access.

D

Replacing SSH with Telnet does not add source filtering and actually reduces security; Telnet transmits credentials in clear text.

When would these options actually be correct?

B

If the question were about optimizing the time it takes for a switch port to transition to an active state after being connected, then enabling PortFast would be the correct answer. This would be relevant in a scenario focused on reducing network downtime during device connections.

C

In a question where the goal is to minimize resource usage or enhance performance by reducing log entries, disabling logging could be the correct answer. For example, if the question specifies that logging is causing performance issues and needs to be turned off to maintain system efficiency, this option would be valid.

D

If the exam question asked for a method to simplify access control for a legacy system that only supports Telnet, and the requirement was to allow access from a specific subnet, then replacing SSH with Telnet could be considered correct in that context.

Why candidates pick the wrong answer

B

Students might confuse PortFast with a security feature because it is often used on ports connected to end devices to speed up connectivity, but it has no role in restricting management access.

C

Some might think that disabling logging reduces the attack surface or hides the router's activity, but it does not prevent unauthorized access attempts from non-management subnets.

D

Students may recall that Telnet uses TCP port 23 and might think it is simpler to filter with ACLs, but SSH also uses a single TCP port (22) and is equally filterable. The core issue is that Telnet lacks encryption, making it unsuitable for secure management.

79
MCQmedium

A host receives its IP address automatically but cannot resolve hostnames. Which additional service information is most likely missing from its configuration?

A.A DNS server address
B.A new MAC address
C.A trunk native VLAN
D.An OSPF router ID
AnswerA

The host's IP address was obtained dynamically, typically via DHCP, and the DHCP offer should also include a DNS server address. Without this DNS resolver entry, the host cannot translate domain names into IP addresses, so any hostname-based request fails. A missing or invalid DNS server address is the direct and correct cause of the resolution failure.

Why this answer

If the host receives an IP address but cannot resolve hostnames, the most likely missing information is a DNS server setting. In plain language, the device has enough configuration to join the network but not enough to ask where hostnames map in IP terms. DHCP can provide this DNS server information automatically, and if it is missing, the host may still communicate by IP while failing on names.

This is a common service-troubleshooting pattern because it separates address configuration from name resolution. The correct answer is the missing DNS-related setting rather than the IP address itself or the subnet mask.

Exam trap

A frequent exam trap is assuming that if a host receives an IP address via DHCP, it automatically has all necessary network information, including DNS server addresses. This mistake overlooks that DHCP can provide IP address and subnet mask without DNS settings. Candidates might incorrectly select options related to MAC address changes, VLAN configurations, or routing protocols like OSPF, which do not affect hostname resolution.

The trap is confusing IP connectivity with name resolution, leading to wrong answers that ignore the essential role of DNS in translating hostnames to IP addresses.

Why the other options are wrong

B

Incorrect because changing the MAC address does not affect DNS or hostname resolution. MAC addresses operate at Layer 2 and are unrelated to IP services like DNS.

C

Incorrect because a trunk native VLAN setting relates to VLAN tagging on switches and does not impact a host’s ability to resolve hostnames or DNS functionality.

D

Incorrect because OSPF router ID is a routing protocol parameter used by routers and does not influence DNS or hostname resolution on end hosts.

When would these options actually be correct?

B

If the exam question were about a scenario where a host is unable to connect to the network due to a hardware issue, such as a MAC address conflict or a requirement for a specific MAC address for network access control, then selecting a new MAC address could be correct.

C

In a question about configuring a switch for VLANs, if the scenario involves ensuring that a specific VLAN is set as the native VLAN for trunk ports, then selecting 'A trunk native VLAN' would be correct. This would be relevant in a context where VLAN tagging and traffic management are being discussed.

D

In a question asking about OSPF configuration issues, where a router is unable to establish OSPF neighbor relationships due to misconfiguration, the absence of a proper OSPF router ID would be the correct answer, as it is essential for OSPF operation.

Why candidates pick the wrong answer

B

Students might think that a new MAC address could resolve connectivity issues, confusing it with scenarios where MAC address filtering or duplication causes network problems.

C

Test-takers might associate VLANs with network segmentation and incorrectly assume that misconfigured VLANs could affect name resolution, especially if they confuse layer 2 and layer 3 issues.

D

Students may confuse routing protocols with DNS, thinking that a router ID is needed for the host to communicate with a DNS server, but DNS is an application-layer service independent of OSPF.

80
MCQhard

A router learns the same destination prefix from OSPF and from a static route configured with administrative distance 90. Which route is preferred by default?

A.The static route with distance 90
B.The OSPF route, because dynamic routes always beat static routes
C.Both routes equally, because the prefix is identical
D.Neither route, because duplicate information is dropped
AnswerA

The static route with distance 90 is correct because administrative distance is the tiebreaker for routes to the same prefix from different sources. OSPF has a default administrative distance of 110, which represents a lower trustworthiness than the explicitly configured value of 90. Since lower administrative distance is preferred, the router installs the static route in the routing table. The source being static is not the reason; the configured distance value is what makes it win.

Why this answer

The static route is preferred because its administrative distance of 90 is lower than OSPF’s default administrative distance of 110. In practical terms, when the prefix length is the same, the router compares route-source trust next. The lower administrative distance wins.

This question is important because many learners remember that static routes are often strong choices but forget that administrative distance can be tuned. Here, that tuning explicitly makes the static route more preferred than OSPF.

Exam trap

A frequent exam trap is believing that dynamic routing protocols like OSPF always take precedence over static routes. Many candidates mistakenly think that dynamic routes inherently override static routes regardless of administrative distance. However, Cisco routers use administrative distance as the primary factor in route selection, not the route source type.

Since the static route in this question has an AD of 90, which is lower than OSPF’s default 110, the static route is preferred. Misunderstanding this can lead to incorrect answers and confusion about route installation in the routing table.

Why the other options are wrong

B

This option is incorrect because route preference is determined by administrative distance, not by a blanket rule that dynamic routes always beat static routes.

C

This option is incorrect because identical prefix length alone does not guarantee equal route preference; administrative distance is the deciding factor.

D

This option is incorrect because routers do not drop duplicate routing information; instead, they choose the best route based on administrative distance.

When would these options actually be correct?

B

In a different question setup where OSPF is configured with a lower administrative distance than the static route (e.g., OSPF at 80 and static at 90), the OSPF route would be preferred, making this option correct. The question would need to specify that the OSPF route has a lower administrative distance.

C

In a different scenario, if a question stated that both routes had the same administrative distance and the router was configured to load balance between equal-cost paths, then this option could be correct as both routes would be considered equally valid for forwarding traffic.

D

In a scenario where a router is configured to drop duplicate routes due to a specific policy or configuration, such as using route filtering or specific routing protocol settings, this option could be correct. For example, if the question states that the router is configured to ignore duplicate routes from OSPF, then neither route would be preferred.

Why candidates pick the wrong answer

B

Students may mistakenly believe that dynamic routing protocols are always superior to static routes because they adapt to network changes, but administrative distance overrides this general notion.

C

Test-takers might confuse administrative distance with metric or think that identical prefixes lead to load balancing, but AD is the primary tiebreaker for route selection.

D

Some may think that duplicate information causes confusion or is discarded, but routers are designed to handle multiple sources for the same prefix and choose the most trustworthy one.

81
PBQmedium

You are connected to R1 via console. R1 has two paths to the Internet: primary via ISP1 (G0/0) and backup via ISP2 (G0/1). The primary route has an administrative distance of 1, and the backup should only be used if the primary fails. Currently, both routes are active. You need to configure a floating static route for the backup.

Network Topology
G0/0198.51.100.1/30linkG0/1203.0.113.1/30linkR1ISP1ISP2

Hints

  • The existing default route has AD 1.
  • Use a higher administrative distance for the backup route.
  • The backup route should point to the ISP2 next-hop.
A.ip route 0.0.0.0 0.0.0.0 G0/1 200
B.ip route 0.0.0.0 0.0.0.0 G0/1 1
C.ip route 0.0.0.0 0.0.0.0 G0/1 0
D.ip route 0.0.0.0 0.0.0.0 G0/1 255
AnswerA
solution
! R1
ip route 0.0.0.0 0.0.0.0 203.0.113.2 200
end

Why this answer

A floating static route with a higher administrative distance (200) than the primary route (1) ensures it is only used when the primary route is removed from the routing table, providing redundancy.

Exam trap

Remember that a floating static route must have a higher administrative distance than the primary route. Do not confuse 'higher' with 'lower' or use extreme values like 0 or 255. Also, ensure the backup route is configured with the correct next-hop interface or IP address.

Why the other options are wrong

B

The specific factual error is that an AD of 1 does not create a floating static route; it matches the primary route's AD, so both routes are used.

C

The specific factual error is that AD 0 is used for directly connected routes; using it for a static route would override the primary route.

D

The specific factual error is that AD 255 means the route is not trusted and will not be installed; it cannot serve as a backup.

Why candidates pick the wrong answer

B

Candidates might think that using the same AD as the primary route is acceptable, not realizing that floating static routes require a higher AD to be less preferred.

C

Candidates might mistakenly believe that a lower AD always means a better backup, not understanding that the backup must be less preferred.

D

Candidates might think that a very high AD ensures the route is only used as a last resort, but AD 255 effectively disables the route.

82
Drag & Dropmedium

Drag and drop the following steps into the correct order to send a RESTCONF GET request to retrieve interface configuration from a Cisco IOS-XE device and apply a configuration change based on the response.

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

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

Why this order

The correct order for a RESTCONF GET request workflow is: first, send a GET request to retrieve the current interface configuration. Second, analyze the JSON/XML response to identify required changes. Third, create the updated configuration payload in JSON or XML format.

Finally, apply the configuration change using a PUT or PATCH request. This sequence ensures you read the existing state before modifying it.

Exam trap

The most common mistake is to create the payload before analyzing the current configuration. Always retrieve the current state first to know exactly what to change.

83
MCQeasy

In a REST-style API, which method is most commonly associated with retrieving information?

A.GET
B.DELETE
C.POST
D.PUT
AnswerA

GET is the standard HTTP method for retrieving representations of a resource without altering server state, making it the correct choice for read operations in RESTful APIs. It is both safe and idempotent, meaning multiple identical GET requests produce the same result with no side effects. Consequently, GET is the canonical method used to fetch information from an API endpoint.

Why this answer

GET is the method most commonly associated with retrieving information. In practical terms, when a client wants to read state, inventory, or configuration details from an API endpoint without modifying the resource, GET is the expected choice.

This is a core automation vocabulary question and works well as an easier confidence-building item.

Exam trap

Avoid confusing GET with other HTTP methods like POST, PUT, or DELETE, which are used for modifying resources.

Why the other options are wrong

B

The DELETE method is used to remove a resource from the server, not to retrieve information. Using DELETE for retrieval would violate REST principles and could lead to unintended data loss.

C

POST is used to create a new resource or submit data to be processed, not to retrieve information. It is not idempotent and often changes server state, making it unsuitable for simple retrieval.

D

PUT is used to update or replace an existing resource, or create one at a specific URI. It is idempotent but modifies server state, so it is not appropriate for retrieving information.

When would these options actually be correct?

B

If the question were to ask which method is used to confirm the deletion of a resource, or to check if a resource exists before deletion, DELETE would be the correct answer. For example, a question might ask, 'Which method would you use to ensure a resource is removed from the server?'

C

If the question were framed to ask about methods used for submitting data to a server or creating new resources, then POST would be the correct answer. For example, a question could ask which method is used to send user data to create a new account.

D

If the question were to ask which method is used to update or replace a resource in a RESTful API, then PUT would be the correct answer. For example, a question might state, 'Which HTTP method is used to replace an existing resource with new data?'

Why candidates pick the wrong answer

B

Students might confuse DELETE with GET because both are HTTP methods, but they serve opposite purposes. The word 'delete' might be mistakenly associated with 'getting rid of' a request rather than its actual function.

C

POST is a common method in web forms and APIs, and some students might think it can be used to 'post' a request for data. However, in REST, GET is the correct method for retrieval.

D

PUT might be confused with GET because both are idempotent, but PUT is for updates, not reads. Students may think 'put' means to place a request for data, but that is incorrect.

84
MCQmedium

What is a main operational benefit of a controller-based networking architecture?

A.It removes the need for IP addressing
B.It centralizes policy and can simplify network-wide changes
C.It eliminates the data plane on switches
D.It forces all routes to become static
AnswerB

A controller provides a single point of management where network administrators can define security, QoS, and segmentation policies that are then pushed consistently across all devices. When a change is needed—such as updating an ACL or VLAN configuration—the controller propagates it automatically, eliminating the need for device-by-device CLI access. This centralized policy engine reduces human error, ensures consistency, and dramatically simplifies large-scale network operations.

Why this answer

Controller-based architectures centralize the control plane, enabling network-wide policy management and simplifying changes. This is the correct answer because it accurately describes the primary operational benefit. Option A is wrong because controller-based architectures still require IP addressing for management and communication.

Option C is wrong because the data plane on switches remains operational for local forwarding; only the control plane may be centralized. Option D is wrong because dynamic routing protocols can still be used, and routes are not forced to be static.

Exam trap

A common exam trap is selecting answers that incorrectly claim controller-based architectures remove the need for IP addressing or eliminate the data plane on switches. While controllers centralize control functions, switches still perform local forwarding (data plane) and require IP addresses for management and routing. Another trap is believing that all routes become static under controller control; dynamic routing protocols continue to operate normally.

Misunderstanding these distinctions can lead to choosing incorrect options that overstate the controller's role, so focus on the controller’s role in centralizing policy rather than replacing fundamental network functions.

Why the other options are wrong

A

Option A is incorrect because controller-based architectures do not remove the need for IP addressing. IP addresses remain essential for device identification, management, and routing functions within the network.

C

Option C is incorrect since the data plane on switches is not eliminated. Switches continue to forward traffic locally based on instructions from the controller, maintaining essential forwarding functions.

D

Option D is incorrect because controller-based networks do not force all routes to become static. Dynamic routing protocols such as OSPF and EIGRP still operate under centralized policy control.

When would these options actually be correct?

A

If the exam question asked about a networking architecture that operates purely at Layer 2, where devices communicate without IP addresses, then this option could be correct. For example, a question focused on a network using only MAC addresses in a flat network topology could validate this option.

C

In a question focused on the theoretical aspects of networking architectures, if it asked about a scenario where a network design specifically required a centralized control mechanism without any data plane functionality, then this option could be correct.

D

If the exam question specifically asked about a networking architecture that exclusively utilizes static routing for all data paths, then this option would be correct. For example, a question could state, 'In a network design where only static routes are permitted, what is a characteristic of the routing configuration?'

Why candidates pick the wrong answer

A

Students might think that because the controller centralizes management, it also handles addressing automatically, confusing centralized control with address assignment protocols like DHCP.

C

Students may confuse the separation of control and data planes in SDN with the elimination of the data plane, not realizing that forwarding still occurs locally on switches.

D

Some might think that centralized control implies static configuration, but controllers can dynamically adapt routes based on network conditions and policies.

85
Multi-Selecthard

Which two statements accurately describe REST-based APIs in a network automation context?

Select 2 answers
A.They commonly use HTTP methods such as GET, POST, PUT, and DELETE.
B.They require Telnet to exchange structured data.
C.They often exchange structured data in formats such as JSON.
D.They can be used only on physical routers and never on controllers.
E.They eliminate the need for authentication or authorization.
AnswersA, C

A core REST constraint is a uniform interface, which is practically implemented by mapping CRUD operations onto standard HTTP verbs: GET for retrieval, POST for creation, PUT for full updates, and DELETE for removal. These methods are stateless and self-descriptive, meaning each request contains enough information for the server to process it. Using these familiar verbs enables clients to interact with network devices in a predictable, standards-based way.

Why this answer

REST APIs are a modern way for software tools to interact with networking systems. In plain language, they let one application ask another application for information or tell it to make a change using standard web-style requests. That is why methods such as GET, POST, PUT, and DELETE show up so often in automation examples. REST APIs also commonly exchange structured data, and JSON is one of the most common formats because it is compact and easy to process programmatically.

They do not depend on Telnet, and they absolutely do not remove the need for security controls. In real deployments, authentication and authorization are often critical. REST APIs are also not limited to one device category. They can exist on routers, switches, wireless controllers, cloud platforms, and many other systems.

Exam trap

A common exam trap is assuming that REST-based APIs require Telnet or similar legacy protocols for communication. This misconception arises because Telnet was historically used for device management, but REST APIs exclusively use HTTP or HTTPS. Another trap is believing REST APIs remove the need for authentication or authorization; in fact, security controls are mandatory to protect network devices from unauthorized access.

Misunderstanding the device scope is also frequent, as some think REST APIs only apply to physical routers, ignoring their availability on controllers and other network elements. Recognizing these pitfalls is essential to avoid incorrect answers.

Why the other options are wrong

B

Option B is incorrect because REST APIs do not use Telnet; they rely on HTTP or HTTPS protocols for communication, making Telnet irrelevant in this context.

D

Option D is incorrect since REST APIs are not limited to physical routers; they are also implemented on controllers, switches, and other network devices, enabling broad automation capabilities.

E

Option E is incorrect because REST APIs require authentication and authorization to secure access, so they do not eliminate the need for security controls in network automation.

When would these options actually be correct?

B

In a question focused on legacy systems or specific network configurations where Telnet is explicitly mentioned as a requirement for exchanging structured data, this option could be correct. For example, a question might ask about a scenario where a Telnet-based API is used for device management in a constrained environment.

D

In a question focused on the limitations of REST-based APIs in specific environments, such as a scenario that exclusively discusses physical hardware without mentioning virtual or cloud solutions, this option could be correct if it states that REST APIs are not applicable to those environments.

E

In a question focused on the theoretical aspects of API design, where the emphasis is on the simplicity of REST principles, an option stating that REST APIs eliminate the need for authentication could be correct if discussing a hypothetical scenario where security is not a concern.

Why candidates pick the wrong answer

B

Students might confuse Telnet with a protocol used for network automation because Telnet is a common method for accessing network devices. However, Telnet is not used for REST APIs, which rely on HTTP.

D

Students might think that APIs are only for physical devices because traditional network management focused on individual devices. However, modern network automation often uses controllers that provide APIs for centralized management.

E

Students might assume that APIs are open and do not need security because they are used for automation. However, security is critical to prevent unauthorized changes or data breaches.

86
MCQhard

A network technician replaced a faulty SFP transceiver on a switch port. After replacement, the port remains in a down/down state. The technician verifies the fiber cable is securely connected at both ends and observes that the remote switch port is also in a down/down state. What should the technician do next?

A.Verify that the speed and duplex settings are set to auto-negotiation.
B.Check whether the SFP module type is incompatible with the switch.
C.Verify the VLAN assignment on the port.
D.Check the running configuration for the no shutdown command on the interface.
AnswerD

This is the most immediate and logical next step. A shut-down interface displays as down/down (or administratively down/down), and without verifying the administrative state, all other troubleshooting is premature. The technician has already addressed physical connectivity, so a configuration oversight must be ruled out.

Why this answer

The most common cause of a port remaining in a down/down state after replacing a faulty SFP is that the interface is administratively down. The 'no shutdown' command must be applied to bring the interface up. Since the technician already verified physical connectivity and both ends show down/down, the issue is likely at the configuration layer, not the physical layer.

Exam trap

Cisco often tests the distinction between physical layer issues (cable, SFP) and administrative state issues (shutdown), where candidates mistakenly focus on hardware compatibility or VLAN settings when the port is simply disabled via configuration.

Why the other options are wrong

A

Candidates assume a speed mismatch must be the problem due to the down/down state, overlooking that a shutdown interface also appears down/down (without the 'administratively' prefix in some outputs) and that the physical check was already done.

B

The urgency to blame the newly installed hardware leads many to skip the quick-win config check, potentially wasting time on hardware replacement when the fix is a single command.

C

Candidates often confuse link status with connectivity issues that occur after the link is up, mistakenly targeting a Layer 2 problem for a Layer 1 symptom.

87
PBQmedium

You are connected to SW1 via the console. SW1 is a Layer 2 switch with two redundant links to SW2 (G0/1 and G0/2). The network administrator wants to use both links for load balancing and redundancy by configuring EtherChannel. You need to configure a Layer 2 EtherChannel using LACP on both switches. The port-channel should be in VLAN 1.

Network Topology
G0/1G0/1EtherChannelSW1SW2

Hints

  • LACP uses modes active or passive; both sides must be active or one active and one passive.
  • The physical interfaces must have the same configuration before being added to the port-channel.
  • The port-channel interface inherits the configuration applied to it, not the physical interfaces.
A.interface port-channel 1 switchport mode access switchport access vlan 1 interface range GigabitEthernet0/1-2 channel-group 1 mode active
B.interface port-channel 1 switchport mode trunk switchport trunk allowed vlan 1 interface range g0/1-2 channel-group 1 mode desirable
C.interface port-channel 1 switchport mode access switchport access vlan 1 interface range g0/1-2 channel-group 1 mode passive
D.interface port-channel 1 switchport mode access switchport access vlan 1 interface g0/1 channel-group 1 mode active interface g0/2 channel-group 2 mode active
AnswerA
solution
! SW1
interface GigabitEthernet0/1
channel-group 1 mode active
interface GigabitEthernet0/2
channel-group 1 mode active
interface Port-channel1
switchport mode access
switchport access vlan 1

! SW2
interface GigabitEthernet0/1
channel-group 1 mode active
interface GigabitEthernet0/2
channel-group 1 mode active
interface Port-channel1
switchport mode access
switchport access vlan 1

Why this answer

EtherChannel bundles multiple physical links into a single logical link for load balancing and redundancy. LACP (mode active) negotiates the bundle automatically. The port-channel interface must be configured with the desired switchport settings.

Exam trap

Be careful to distinguish between LACP modes (active/passive) and PAgP modes (desirable/auto). Also, remember that all interfaces in an EtherChannel must use the same channel-group number and have consistent switchport settings. A common mistake is to configure trunk when an access port is needed, or to use passive on both sides, which prevents the bundle from forming.

Why the other options are wrong

B

Uses PAgP mode 'desirable' instead of LACP mode 'active'. Additionally, configuring trunk is unnecessary for a single VLAN access port.

C

Using 'passive' on both sides would prevent the EtherChannel from forming because neither side sends LACP packets.

D

Using different channel-group numbers creates separate EtherChannels, not a single bundle. Both interfaces must be in the same channel-group to form one logical link.

Why candidates pick the wrong answer

B

Candidates may confuse PAgP and LACP modes, or think that VLAN 1 must be allowed on a trunk, but the requirement is for an access port.

C

Candidates may think 'passive' is sufficient because it still uses LACP, but they forget that at least one side must be active to initiate negotiation.

D

Candidates might think each interface needs its own port-channel, but EtherChannel requires all interfaces to share the same channel-group number.

88
Multi-Selectmedium

Which THREE statements correctly describe the configuration and verification of NAT, PAT, and static NAT?

Select 3 answers
A.To configure static NAT, use the command 'ip nat inside source static <inside-local> <inside-global>'.
B.PAT uses the command 'ip nat inside source list <acl> interface <interface> overload' to translate multiple inside addresses to the interface's IP using different port numbers.
C.The command 'show ip nat statistics' displays the current active translations including inside and outside addresses.
D.When configuring dynamic NAT, you must define a NAT pool using the command 'ip nat pool <name> <start-ip> <end-ip> netmask <mask>' and then use an ACL to match inside traffic.
E.To verify that static NAT is working, you should check the output of 'show ip interface brief' and look for the translated IP.
AnswersA, B, D

Static NAT establishes a permanent, one-to-one mapping between a private inside local address and a public inside global address using the 'ip nat inside source static' command. This is ideal for servers that need to be consistently reachable from the outside, as the translation does not change. Additionally, you must designate which interfaces are inside and outside using 'ip nat inside' and 'ip nat outside' for the mapping to be applied correctly.

Why this answer

The 'ip nat inside source static' command creates a one-to-one permanent NAT mapping. Option B is correct because PAT is configured by adding the 'overload' keyword to a dynamic NAT statement that references an ACL and an interface, allowing many private addresses to share a single public IP with different port numbers. Option D is correct: dynamic NAT requires a NAT pool defined with 'ip nat pool' and an access list to identify the inside traffic to be translated.

Option C is incorrect because 'show ip nat statistics' only displays counters and summary information, not the active translation entries; those are shown with 'show ip nat translations'. Option E is incorrect because 'show ip interface brief' does not show NAT translation mappings; verification of static NAT requires 'show ip nat translations'.

Exam trap

Cisco often tests the distinction between 'show ip nat statistics' (counters and summary) and 'show ip nat translations' (active mappings), leading candidates to mistakenly believe that statistics shows the actual translation entries.

Why the other options are wrong

C

The command 'show ip nat statistics' provides summary statistics such as total translations, hits, misses, and expired translations, but it does not list the actual translation entries. To view active translations, you must use 'show ip nat translations'.

E

The command 'show ip interface brief' displays the status and IP addresses of interfaces, but it does not show NAT translations. To verify static NAT, you should use 'show ip nat translations' or 'show ip nat statistics' to confirm the mapping is active.

Why candidates pick the wrong answer

C

Students often confuse 'show ip nat statistics' with 'show ip nat translations' because both commands are used for NAT verification. The word 'statistics' might imply detailed information, but it only gives aggregate data, not the specific mappings.

E

Since 'show ip interface brief' is a common verification command for interface IPs, students might mistakenly think it also shows translated IPs. The similarity in the word 'interface' and the fact that static NAT maps IPs can lead to this confusion.

89
Matchingmedium

Match each automation-related term to the description that best fits it.

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

Concepts
Matches

Structured data format

Data-modeling language

Access-related value used by a client

Secure transport for API communication

Why these pairings

The question requires matching automation-related terms to their correct descriptions. Idempotent means that an operation can be applied multiple times without changing the result after the first application. Declarative is a style where the user defines the desired state and the system determines the steps to achieve it.

Imperative is a style where explicit step-by-step instructions are given. Orchestration refers to the automated coordination of multiple systems or services to complete a workflow. Each description aligns precisely with these concepts.

Exam trap

A common mistake is confusing declarative with imperative. Declarative focuses on 'what' (desired state), while imperative focuses on 'how' (step-by-step). Also, idempotency is often conflated with idempotent operations in HTTP methods, but here it refers to automation tasks.

90
MCQhard

An engineer is troubleshooting an OSPFv3 adjacency issue between two routers R1 and R2 connected over a serial link. The link is up/up on both sides, and IPv6 is enabled on the interfaces. However, the 'show ipv6 ospf neighbor' command shows no neighbors. The engineer checks the OSPFv3 configuration. What is the most likely cause of the missing adjacency?

A.The serial interface on R2 is administratively down.
B.OSPFv3 authentication is configured on R1 but not on R2.
C.The IPv6 address on R2 is in a different subnet than R1.
D.The OSPFv3 router-id is not configured on R2.
AnswerB

On R1, OSPFv3 is configured with IPsec authentication, but R2 has no matching IPsec configuration under its OSPFv3 process. OSPFv3 relies on IPsec AH or ESP for authentication and integrity, unlike OSPFv2, and if one router encrypts or authenticates its packets while the other does not, the Hellos are silently discarded and the neighbor relationship cannot progress past the EXSTART/INIT state. Both routers must use the same SPI, authentication algorithm, and key for adjacency to form.

Why this answer

OSPFv3 uses IPsec for authentication, unlike OSPFv2 which uses plaintext or MD5 authentication. If authentication is configured on one router but not the other, the OSPFv3 Hello packets will be dropped, preventing neighbor adjacency from forming. The 'show ipv6 ospf neighbor' command will show no neighbors because the routers cannot exchange Hello packets successfully.

Exam trap

Cisco often tests the misconception that OSPFv3 requires matching subnets (like OSPFv2) or that authentication is optional, when in fact OSPFv3 uses IPsec and any mismatch breaks adjacency silently.

Why the other options are wrong

A

The question states the serial link is up/up on both sides, meaning the interface is not administratively down. An administratively down interface would show as 'administratively down' in the interface status, not 'up/up'.

C

Both interfaces have IPv6 addresses in the 2001:DB8:1:1::/64 subnet, so the subnet matches. OSPFv3 does not require interfaces to be in the same subnet for adjacency, but it does require link-local addresses to be reachable. However, the given addresses are global unicast, and the subnet match is not the issue here.

D

The router-id is configured on R2 as 2.2.2.2, as stated in the existing explanation. OSPFv3 requires a router-id, and it is present, so this is not the cause.

Why candidates pick the wrong answer

A

Students may think that an interface being down is a common cause for OSPF adjacency failure, but the given information explicitly rules this out.

C

In OSPFv2, mismatched subnets prevent adjacency, so students may incorrectly apply the same logic to OSPFv3. However, OSPFv3 uses link-local addresses for neighbor discovery and does not require matching global prefixes.

D

A missing router-id is a common OSPF issue, but in this case it is configured. Students might overlook the configuration details and assume it is missing.

91
PBQmedium

You are connected via the console to R1, a Cisco ISR 4331 router. The network administrator reports that the link between R1's GigabitEthernet0/0 and a switch is experiencing high error rates and intermittent connectivity. Upon inspection, you notice that the interface is configured with speed 1000 and duplex full. The switch port is set to auto-negotiate. Your task is to resolve the duplex mismatch by configuring the router interface to match the switch's settings.

Network Topology
G0/0G0/1linkR1SW1

Hints

  • The switch port is set to auto-negotiate.
  • Duplex mismatch occurs when one side is set manually and the other auto.
  • Use the 'speed auto' and 'duplex auto' commands.
A.Configure the router interface with 'speed 1000' and 'duplex full'.
B.Configure the router interface with 'no speed' and 'no duplex' to restore defaults, then set 'speed 1000' and 'duplex full'.
C.Configure the router interface with 'no speed' and 'no duplex' to restore defaults, then set 'speed 1000' and 'duplex half'.
D.Configure the router interface with 'no speed' and 'no duplex' to restore defaults, then set 'speed auto' and 'duplex auto'.
AnswerD
solution
! R1
interface GigabitEthernet0/0
speed auto
duplex auto

Why this answer

The duplex mismatch was caused by manually forcing speed and duplex on the router while the switch was set to auto-negotiate. Changing the router to auto-negotiate allows both sides to negotiate the best duplex (full duplex) and speed, eliminating errors.

Exam trap

A common trap is to think that manually setting the router to the same speed and duplex as the switch's negotiated settings will fix the issue. However, if the switch is set to auto-negotiate, it will not successfully negotiate with a manually configured interface. The only way to ensure a match is to enable auto-negotiation on both sides.

Why the other options are wrong

A

The specific factual error is that manually setting speed and duplex on one side while the other side is set to auto-negotiate can lead to a duplex mismatch because auto-negotiation relies on both ends participating.

B

The specific factual error is that manually setting speed and duplex after restoring defaults still disables auto-negotiation on the router, which does not resolve the mismatch.

C

The specific factual error is that setting duplex half on the router while the switch auto-negotiates will likely result in the switch negotiating to full duplex, causing a mismatch.

Why candidates pick the wrong answer

A

Candidates might think that since the switch is auto-negotiating, setting the router to full duplex will match the switch's negotiated duplex. However, if the switch is set to auto-negotiate, it will not successfully negotiate with a manually configured interface, often resulting in half-duplex on the switch side.

B

Candidates might think that restoring defaults first ensures a clean configuration, but then manually setting the same values as before does not change the mismatch condition.

C

Candidates might think that since the router was originally set to half duplex, matching that setting would fix the issue. However, the switch auto-negotiates to full duplex, so the mismatch persists.

92
MCQmedium

What is a common requirement for interfaces to successfully bundle into an EtherChannel?

A.All member interfaces must use matching speed, duplex, and trunk/access settings
B.Each interface must belong to a different VLAN
C.Only odd-numbered switch ports can be bundled
D.Each interface must have a different STP path cost
AnswerA

All member interfaces must have matching physical and logical characteristics to be eligible for EtherChannel bundling. This includes identical speed and duplex settings, because protocols like LACP and PAgP verify these parameters during negotiation and will not form a bundle if they differ. Additionally, each interface must be configured with the same operational mode—either access or trunk—with consistent native and allowed VLANs, so that the aggregated link behaves as a single port.

Why this answer

EtherChannel members must have compatible operational and administrative settings, including speed, duplex, and switchport mode.

Exam trap

Remember that EtherChannel is concerned with Layer 2 settings like speed and duplex, not Layer 3 settings like IP addresses.

Why the other options are wrong

B

EtherChannel does not require interfaces to be in different VLANs; in fact, all member interfaces must have the same VLAN configuration (either all access ports in the same VLAN or all trunk ports with the same allowed VLAN list). Placing interfaces in different VLANs would violate the consistency requirement and prevent bundling.

C

Port numbering (odd or even) has no bearing on EtherChannel eligibility; any physical ports on a switch can be bundled as long as they meet the configuration consistency requirements. The restriction is based on hardware capabilities, not port numbers.

D

STP path cost is a per-interface value used by Spanning Tree Protocol to determine the best path to the root bridge; it is not a requirement for EtherChannel bundling. In fact, when interfaces are bundled, STP treats the EtherChannel as a single logical link, and all member interfaces share the same STP state.

When would these options actually be correct?

B

In a different context, a question might ask about the configuration of multiple VLANs across different switches, where it is necessary to specify that each interface in a specific EtherChannel must belong to distinct VLANs for load balancing or segmentation purposes.

C

In a different question asking about specific configurations for a unique switch model that only supports bundling on odd-numbered ports, option C would be correct. For instance, if the exam question specified that only odd-numbered ports are allowed for EtherChannel due to hardware limitations, then this option would apply.

D

In a different exam scenario, if the question asked about configuring multiple EtherChannels with specific STP configurations for redundancy, then having different STP path costs might be correct if the intention is to control traffic flow and redundancy in a complex network design.

Why candidates pick the wrong answer

B

Students might mistakenly think that different VLANs are needed to avoid loops or to distribute traffic, confusing EtherChannel with concepts like VLAN load balancing or separate broadcast domains.

C

Some students may recall that certain switch models group ports into port channels based on numbering (e.g., only consecutive ports), but this is a hardware limitation, not a general rule. The odd/even distinction is a common myth.

D

Students might confuse the need for consistent STP parameters with the requirement for consistent interface settings, or think that different path costs help load balancing, but load balancing in EtherChannel is based on hashing algorithms, not STP costs.

93
MCQhard

A host has the address 10.10.10.94/27. Which subnet contains that host?

A.10.10.10.32/27
B.10.10.10.64/27
C.10.10.10.96/27
D.10.10.10.0/27
AnswerB

A /27 prefix length creates 32-address subnets. To find the subnet containing 10.10.10.94, divide 94 by 32, which gives 2.9375; the network address is the floor of that quotient multiplied by 32, i.e., 2 × 32 = 64. Thus 10.10.10.64/27 covers 64 through 95, and 94 is a valid host in that range (usable addresses 65–94, broadcast 95).

Why this answer

A /27 mask creates subnets in blocks of 32 addresses. In plain language, that means the fourth-octet ranges are 0–31, 32–63, 64–95, 96–127, and so on. Since the host address ends in 94, it falls inside the 64–95 block. That means the subnet is 10.10.10.64/27.

This is a classic subnetting task because it checks whether you can move from prefix length to block size and then locate the host inside the correct range. The key skill is recognizing the increment boundary and not guessing based only on the nearest familiar address.

Exam trap

Avoid guessing based on familiar numbers; calculate the subnet range using the block size.

Why the other options are wrong

A

The subnet 10.10.10.32/27 covers addresses 10.10.10.32 through 10.10.10.63. The host address 10.10.10.94 is not within this range, so this subnet is incorrect.

C

The subnet 10.10.10.96/27 covers addresses 10.10.10.96 through 10.10.10.127. The host address 10.10.10.94 is below the starting address of this subnet, so it is not included.

D

The subnet 10.10.10.0/27 covers addresses 10.10.10.0 through 10.10.10.31. The host address 10.10.10.94 is far outside this range, so this subnet is incorrect.

When would these options actually be correct?

A

If the question asked which subnet contains the address 10.10.10.32 or any address within the range of 10.10.10.32 to 10.10.10.63, then option A would be the correct answer, as it would directly correspond to that subnet.

C

If the question asked for the subnet that includes the address 10.10.10.96 specifically, then option C would be correct, as it would represent the subnet containing that address.

D

If the question asked for the subnet that contains the address 10.10.10.0 itself, or if it specified the network address for a different subnetting scheme that included 10.10.10.0, then option D would be correct.

Why candidates pick the wrong answer

A

Students might mistakenly think that because 94 is close to 64, it could be in the 32/27 subnet, but they forget that the subnet boundaries are multiples of 32.

C

Students might incorrectly assume that 94 is close to 96 and could be in that subnet, but they overlook that the subnet starts at 96, not 94.

D

Students might think that any address starting with 10.10.10 could be in the 0/27 subnet, but they fail to consider the subnet mask and the resulting address range.

94
MCQmedium

Exhibit: A collector is receiving traffic metadata from a router, including source IP, destination IP, protocol, and byte counts. Which feature is being used?

A.Syslog
B.SNMP trap
C.NetFlow
D.NTP
AnswerC

NetFlow is a Cisco-developed traffic accounting technology that samples and aggregates IP packets into unidirectional flows, capturing key fields such as source/destination IP, ports, protocol, and byte/packet counters. The router exports these flow records to a collector over UDP, which aggregates and analyzes the data for traffic metering, capacity planning, and security analysis. Therefore, a collector receiving this data would indeed be receiving flow summaries, making NetFlow the correct answer.

Why this answer

NetFlow exports flow records that summarize traffic conversations. It does not carry full packet payloads, but it does provide useful metadata for analysis and capacity planning.

Exam trap

A frequent exam trap is mistaking Syslog or SNMP traps for the feature that exports traffic metadata. Syslog messages only report system events and errors, not detailed flow data. SNMP traps notify about specific device events or threshold breaches but do not provide conversation-level traffic summaries.

Another trap is confusing NTP, which only synchronizes device clocks, with traffic monitoring features. Candidates must recognize that only NetFlow exports detailed flow records including source IP, destination IP, protocol, and byte counts, which are essential for traffic analysis and capacity planning.

Why the other options are wrong

A

Syslog is designed to send event messages and system logs, not detailed traffic flow summaries. It cannot provide source and destination IP addresses with byte counts, so it is incorrect for this question.

B

SNMP traps are notifications about specific device events or threshold conditions, not detailed records of traffic conversations. They do not include flow metadata like source/destination IP and byte counts, making this option incorrect.

D

NTP is used solely for synchronizing time across network devices and does not provide any traffic metadata or flow information, so it is not the correct feature in this context.

When would these options actually be correct?

A

If the exam question asked about a method for collecting logging information from network devices, including system events and alerts, then Syslog would be the correct answer. For example, a question could specify that the focus is on logging network device status changes.

B

If the question were about receiving alerts regarding network device status or performance issues, such as 'What feature sends alerts when a device exceeds a certain CPU usage threshold?', then SNMP traps would be the correct answer, as they are designed for such event notifications.

D

If the question were about the synchronization of time across network devices to ensure accurate logging and event correlation, then NTP would be the correct answer, as it plays a crucial role in maintaining time consistency in network operations.

Why candidates pick the wrong answer

A

Students might confuse Syslog with NetFlow because both involve sending data from network devices to a server. However, Syslog focuses on event logs, while NetFlow focuses on traffic flow records.

B

SNMP is a common network management protocol, and traps are used for notifications. A student might think that SNMP traps can carry traffic statistics, but they are designed for event alerts, not flow data.

D

NTP is a well-known protocol in networking, and a student might mistakenly associate it with traffic monitoring because it is often used in conjunction with logging and monitoring systems. However, its sole purpose is time synchronization.

95
Multi-Selectmedium

Which TWO statements correctly describe the configuration and behavior of a router-on-a-stick setup for inter-VLAN routing?

Select 2 answers
A.Each subinterface on the router must be configured with an IP address that belongs to the corresponding VLAN's subnet.
B.The switch port connecting to the router must be configured as an access port in VLAN 1.
C.The native VLAN on the trunk must be the same VLAN as the one used for management traffic.
D.The router's physical interface must be in 'no shutdown' state, but subinterfaces do not require a separate 'no shutdown' command.
E.The router's subinterface for the native VLAN must use the 'encapsulation dot1q <vlan-id> native' command.
AnswersA, D

For the router to route traffic for a VLAN, the subinterface must have an IP address in the same subnet as that VLAN. This allows the router to act as the default gateway for hosts in that VLAN.

Why this answer

Each subinterface is assigned an IP address in the subnet of its corresponding VLAN, enabling the router to act as the default gateway and route between VLANs using 802.1Q tags. Option D is correct because the physical interface must be 'no shutdown' to pass traffic, and subinterfaces inherit this state; they do not have their own shutdown command. Option B is incorrect because the switch port connecting to the router must be configured as a trunk port, not an access port, to carry multiple VLANs.

Option C is incorrect because the native VLAN on the trunk does not have to be the same as the management VLAN; they are separate concepts. Option E is incorrect because the 'encapsulation dot1q <vlan-id> native' command is only needed on the subinterface for the native VLAN to tag or untag frames appropriately; it is not required for all native VLAN configurations (e.g., if the native VLAN is left at default 1, the command may be optional).

Exam trap

The trap here is that candidates often think subinterfaces need a separate 'no shutdown' command, but Cisco tests that the physical interface must be 'no shutdown' and subinterfaces inherit that state, making option D correct.

Why the other options are wrong

B

The switch port must be a trunk port to carry multiple VLANs, not an access port assigned to VLAN 1.

C

The native VLAN on the trunk is used for untagged traffic and does not have to match the management VLAN.

E

The 'encapsulation dot1q <vlan-id> native' command is not always required for the native VLAN; it depends on whether the native VLAN is used for a subinterface.

Why candidates pick the wrong answer

B

Students might think that the router connects to a specific VLAN, like VLAN 1, and thus the port should be an access port. However, the router needs to receive traffic from all VLANs, which requires a trunk.

C

Many network administrators use VLAN 1 as both the native VLAN and the management VLAN by default, leading to the misconception that they must be the same. However, this is not a requirement.

E

Students may confuse the configuration on the router with that on the switch. On the switch, the 'native' keyword is used to define the native VLAN, but on the router, subinterfaces for the native VLAN should not use encapsulation at all, or use 'encapsulation dot1q <vlan-id> native' only if the router needs to tag native VLAN traffic (which is atypical).

96
PBQhard

You are connected to R1. Configure AAA with RADIUS authentication so that SSH users are authenticated first against the RADIUS server (198.51.100.10) and fall back to the local user database if the server is unreachable. Additionally, troubleshoot why an 802.1X-enabled interface (GigabitEthernet0/1) remains in the unauthorized state. The RADIUS server shares a key of 'cisco123' and uses UDP port 1812. The local user 'admin' with secret 'adminpass' must be available as a fallback.

Hints

  • The dot1x authentication list is missing a fallback method.
  • Use the 'aaa authentication dot1x default' command to add 'local' after 'group radius'.
  • After fixing, the port may need to re-authenticate; you can test by shutting/no shutting the interface.
A.[CORRECT] The RADIUS server is unreachable, but the 802.1X port remains unauthorized because the AAA authentication list for dot1x is configured to use only RADIUS without local fallback. The fix is to modify the dot1x authentication list to include 'local' as a fallback method.
B.The RADIUS server is unreachable because the shared key 'cisco123' is incorrect, causing the port to stay unauthorized.
C.The 802.1X port remains unauthorized because the RADIUS server uses UDP port 1812, but the switch expects port 1645.
D.The SSH authentication fails because the local user 'admin' is not configured with the correct privilege level, so fallback does not work.
AnswerA
solution
! R1
configure terminal
aaa authentication dot1x default group radius local
end
write memory

Why this answer

The RADIUS server is unreachable (not reachable), but the 802.1X port remains unauthorized because the AAA authentication list for dot1x is configured to use only RADIUS without local fallback. When the server cannot be reached (e.g., timeout), no fallback exists, so the port stays unauthorized. The fix is to modify the dot1x authentication list to include 'local' as a fallback method.

Adding local fallback allows the switch to authenticate the supplicant using the local database when the RADIUS server is unreachable.

Exam trap

Do not confuse authentication list configuration for different services (login vs dot1x). SSH uses 'login' list, while 802.1X uses 'dot1x' list. Also, ensure fallback methods are included for network access authentication to avoid permanent unauthorized state.

Why the other options are wrong

B

The specific factual error: The shared key is used for encrypting RADIUS traffic, but server reachability is confirmed; the key mismatch would cause authentication failures, not port unauthorized state due to missing fallback.

C

The specific factual error: The question states the server uses UDP port 1812, which is correct. The switch would need explicit configuration to use 1645; default is 1812.

D

The specific factual error: Privilege level is not required for authentication; it affects authorization. The local user exists and can authenticate, so SSH fallback is fine.

Why candidates pick the wrong answer

B

Candidates often confuse shared key issues with authentication list configuration, assuming any RADIUS problem is due to key mismatch.

C

Candidates may recall that older Cisco devices used port 1645, leading them to think a port mismatch is the cause.

D

Candidates may think that local fallback requires specific privilege levels, but authentication only needs a valid username/password.

97
Matchingmedium

Drag and drop the items on the left to match the descriptions on the right.

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

Concepts
Matches

Sets the switch port to permanent access mode

Configures the port as an 802.1Q trunk

Assigns VLAN 10 to the access port for data traffic

Specifies VLAN 20 for voice traffic on the port

Restricts the trunk to carry only VLANs 10 and 20

Why these pairings

Access ports carry traffic for a single VLAN and are configured with switchport mode access. Voice VLANs are added to an access port with switchport voice vlan to separate voice and data traffic. Trunk ports carry multiple VLANs and are set with switchport mode trunk; allowed VLANs can be restricted with switchport trunk allowed vlan.

98
MCQmedium

A junior network engineer is configuring a new Windows 10 workstation to connect to the corporate network. The network uses a /24 subnet mask and has a default gateway of 192.168.1.1. The workstation obtains its IP address automatically from a DHCP server, but the engineer needs to manually set a static IPv4 address of 192.168.1.50 and ensure the workstation can reach the internet. Which configuration step must the engineer take to satisfy these requirements?

A.Set the subnet mask to 255.255.0.0 and the default gateway to 192.168.1.1
B.Set the subnet mask to 255.255.255.0 and the default gateway to 192.168.1.1
C.Set the subnet mask to 255.255.255.0 and leave the default gateway blank
D.Set the subnet mask to 255.255.255.0 and the default gateway to 192.168.1.50
AnswerB

This is the correct configuration. The subnet mask 255.255.255.0 corresponds to a /24 prefix, which matches the network. The default gateway 192.168.1.1 is the router's IP on the same subnet, allowing the workstation to reach the internet.

Why this answer

A /24 subnet mask (255.255.255.0) matches the network prefix of the default gateway 192.168.1.1, ensuring the workstation can route traffic to the internet via that gateway. Option A fails because a /16 mask (255.255.0.0) does not match the corporate /24 network, causing incorrect network identification and potential routing issues. Option C fails because leaving the default gateway blank means the host cannot reach any network beyond its local subnet, so internet access is impossible.

Option D fails because using the host's own IP (192.168.1.50) as the default gateway would cause the host to attempt to route traffic to itself, never reaching the actual gateway.

Exam trap

Cisco often tests the requirement that the default gateway must be on the same subnet as the host's IP address, and a common trap is to confuse the gateway address with the host's own IP or to use an incorrect subnet mask that still allows local communication but breaks routing.

Why the other options are wrong

A

Using a /16 subnet mask (255.255.0.0) does not match the corporate /24 network, leading to incorrect network identification and potential routing issues.

C

Leaving the default gateway blank prevents the host from reaching any network beyond its own subnet, so internet access is impossible.

D

Setting the default gateway to the host's own IP address (192.168.1.50) would cause traffic to be sent to itself, never reaching the actual gateway.

Why candidates pick the wrong answer

A

A student might confuse subnet masks and think that a larger subnet mask (like /16) is more permissive or 'better' for connectivity, not realizing that it actually disrupts proper routing by misidentifying which addresses are local.

C

A student might think that a default gateway is optional or only needed for certain types of traffic, not realizing that it is essential for reaching any off-subnet destination, including internet access.

D

A student might mistakenly think that the default gateway should be the same as the workstation's IP address, confusing it with the concept of a loopback address or simply not understanding that the gateway must be a separate device on the same subnet.

99
Matchingmedium

Match each routing concept to its most accurate meaning.

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

Concepts
Matches

Value used to compare trust between route sources

Value used to compare candidate paths within a route source or protocol

Indicator of route specificity

Fallback route used when no better match exists

Why these pairings

Administrative Distance measures route source trustworthiness; Metric determines best path within a protocol; Convergence is the time to reach consistent routing; Route Summarization reduces routing table size; Floating Static Route acts as a backup; ECMP enables load balancing.

Exam trap

The exam often tests your ability to distinguish between Administrative Distance and metric. Remember: AD compares routes from different sources (inter-protocol), while metrics compare routes from the same source (intra-protocol). Also, AD is not a measure of time or hop count.

When would these options actually be correct?

B

If the question asked: 'What is the term for the value used by a routing protocol to compare routes within that same protocol to determine the best path?' then 'metric' would be correct, and this option could be rephrased as 'Metric is the value used by a routing protocol to determine the best path within that protocol.'

C

If the question were 'Match each routing concept to its most accurate meaning' and the options included 'Convergence time is the time it takes for a routing protocol to converge after a network change,' then option C would be correct.

D

In a question asking 'Which metric does RIP use to determine the best path?', option D would be correct because RIP uses hop count as its metric to select the best route.

Why candidates pick the wrong answer

B

Candidates often confuse Administrative Distance with routing metrics because both are numerical values used in route selection, leading them to think AD is a type of metric rather than a trustworthiness indicator.

C

Candidates may confuse the concept of administrative distance with routing protocol characteristics like convergence time, especially if they have studied OSPF or EIGRP convergence metrics and mistakenly associate 'distance' with time.

D

Candidates may confuse administrative distance with routing metrics like hop count, especially since both are numerical values used in routing decisions, leading to the mistaken belief that AD is a hop count.

100
PBQhard

You are connected to SW1. Configure an LACP EtherChannel between SW1 and SW2 using interfaces GigabitEthernet0/1 and GigabitEthernet0/2. The port-channel interface must be configured as a trunk allowing VLANs 10, 20, and 30. Currently, the channel is not forming due to a mismatch in speed/duplex and VLAN configuration on SW2. Troubleshoot and resolve the issue so that the EtherChannel comes up as a Layer 2 trunk.

Network Topology
Gi0/1Gi0/1LACP EtherChannelSW1SW2

Hints

  • Check the speed and duplex settings on SW2's physical interfaces.
  • Compare the allowed VLAN list on SW2's physical interfaces to the port-channel trunk.
  • Use 'show etherchannel summary' to see if ports are bundled or down.
A.On SW2, configure interfaces GigabitEthernet0/1 and 0/2 with speed 1000, duplex full, and on the port-channel interface, set allowed VLANs to 10,20,30.
B.On SW2, configure interfaces GigabitEthernet0/1 and 0/2 with speed 100, duplex half, and on the port-channel interface, set allowed VLANs to 10,20,30.
C.On SW2, configure interfaces GigabitEthernet0/1 and 0/2 with speed 1000, duplex full, and on the port-channel interface, set allowed VLANs to 10,20.
D.On SW2, configure interfaces GigabitEthernet0/1 and 0/2 with speed 1000, duplex full, and on the port-channel interface, set allowed VLANs to 1-4094.
AnswerA
solution
! SW2
interface gigabitEthernet0/1
speed 1000
duplex full
switchport trunk allowed vlan 10,20,30
interface gigabitEthernet0/2
speed 1000
duplex full
switchport trunk allowed vlan 10,20,30

Why this answer

The EtherChannel is not forming because SW2's interfaces have speed 100 and duplex half, while SW1's interfaces have speed 1000 and duplex full. Additionally, the allowed VLANs on SW2's trunk must include VLAN 30, and this should be configured on the port-channel interface, not the physical interfaces. To fix, on SW2, set the speed to 1000 and duplex to full on Gi0/1 and Gi0/2, then on the port-channel interface, configure allowed VLANs 10,20,30.

After these changes, the channel will come up as a Layer 2 trunk.

Exam trap

The exam trap is that candidates may focus solely on the speed/duplex mismatch and forget to verify the VLAN allowed list on the trunk. Also, they might incorrectly try to match by lowering SW1's settings instead of raising SW2's.

Why the other options are wrong

B

The specific factual error is that LACP requires all member interfaces to have identical speed and duplex settings; changing SW2 to 100/half does not match SW1's 1000/full.

C

The specific factual error is that the trunk must allow all required VLANs; omitting VLAN 30 violates the requirement.

D

The specific factual error is that the configuration does not match the requirement to allow only VLANs 10, 20, and 30; it allows all VLANs instead.

Why candidates pick the wrong answer

B

Candidates might think they need to make both sides consistent by lowering SW1's settings, but the correct approach is to match the higher-capability side.

C

Candidates might focus only on the speed/duplex issue and forget to update the VLAN allowed list, especially if they assume the existing list is correct.

D

Candidates might think 'allowed vlan all' is a quick fix that covers the required VLANs, but it is overly permissive and not what the question asks for.

101
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure IPv4 and IPv6 static routes, a default route, and a floating static route with higher administrative distance, then verify the routing tables.

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

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

Why this order

The correct order is to first configure specific IPv4 and IPv6 static routes, then configure the default route and the floating static route with higher administrative distance (the order between these two can be interchanged but typically default is configured before the floating static), and finally verify the routing tables with show ip route and show ipv6 route. Option A correctly follows this sequence. Options B, C, and D are incorrect because they either place verification before configuration, configure the default route before specific routes, or configure the floating static route first.

Exam trap

Do not confuse the order of configuration with the order of preference. Specific routes should be configured first, then the default route and floating static route can be configured in any order (though typically default is configured before floating static). Verification is always the last step.

Why candidates pick the wrong answer

B

Candidates might think the default route is more important and should be configured first.

C

Candidates might confuse the order of configuration with the order of preference.

D

Candidates might think checking the current state is necessary before making changes.

102
MCQmedium

A network engineer wants a static route to be used only when the OSPF-learned route disappears. Which configuration approach meets that goal?

A.Use a static route with administrative distance 1
B.Use a static route with administrative distance higher than 110
C.Use a static route with metric 0
D.Redistribute the static route into OSPF
AnswerB

Administrative distance (AD) directly controls which route source is preferred, regardless of metric, and OSPF's default AD is 110. If you configure a static route with an AD higher than 110, for example 120, the router will install the OSPF route in the routing table as long as it exists. When the OSPF route is removed or fails, the router then installs the static route as a fallback, because it is the only remaining candidate. This creates a floating static route: active only when the primary dynamic route is unavailable.

Why this answer

That is a floating static route. You configure the static route with an administrative distance higher than the OSPF route so it stays in reserve until the dynamic path is lost.

Exam trap

A frequent exam trap is selecting a static route with a default or lower administrative distance than OSPF, such as AD 1, which causes the static route to be preferred immediately, overriding the OSPF route. Another common mistake is thinking that adjusting the metric of the static route or redistributing it into OSPF will create a backup route. Metrics influence path selection within routing protocols but do not affect route preference between static and OSPF routes.

Redistribution simply advertises the static route dynamically and does not provide failover control. These misunderstandings lead to incorrect configurations that do not meet the requirement of using the static route only when the OSPF route disappears.

Why the other options are wrong

A

Using a static route with administrative distance 1 makes it the most preferred route immediately, overriding the OSPF-learned route. This does not meet the requirement of using the static route only when the OSPF route disappears.

C

Setting a static route with metric 0 does not influence route preference between static and OSPF routes because metrics affect path selection within routing protocols, not across different route sources.

D

Redistributing the static route into OSPF advertises it dynamically but does not create a backup route that activates only when the OSPF route disappears. Redistribution is unnecessary for this backup behavior.

When would these options actually be correct?

A

In a scenario where a question asks for the configuration of a static route that should always take precedence over any dynamic routing protocols, setting the administrative distance to 1 would be correct. For example, if the question specifies that the static route must be the primary route under all circumstances, this option would apply.

C

In a scenario where the question asks for the configuration of a static route that should always be preferred over any OSPF routes, a static route with a metric of 0 would be correct, as it would ensure that the static route is always used.

D

In a scenario where the question asks how to ensure static routes are advertised within an OSPF domain for redundancy, redistributing the static route into OSPF would be correct. This would allow the static route to be used alongside OSPF routes, providing an alternative path when needed.

Why candidates pick the wrong answer

A

Students may think a lower AD always means better reliability, but in this scenario, a backup route must have a higher AD to be less preferred.

C

Students might confuse metric with administrative distance, thinking a metric of 0 would make the route less preferred, but metric is irrelevant for inter-protocol route selection.

D

Students may think redistribution is necessary to make the static route known to OSPF, but the goal is a backup route, not integration into OSPF.

103
Drag & Dropmedium

Drag and drop the following steps into the correct order to capture and analyze traffic on IOS-XE using the embedded packet capture feature, and in Wireshark to isolate a Layer 2 or Layer 3 fault.

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

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

Why this order

The correct order for embedded packet capture on IOS-XE is: configure the capture point first (to define the traffic filter), then define the capture buffer, start the capture, stop the capture, and finally export the capture. Starting the capture after configuring both the point and buffer ensures that traffic is captured correctly. Exporting before stopping may result in incomplete data.

Only option A follows this correct sequence.

Exam trap

Do not confuse the order of configuring the capture point and defining the buffer. The capture point must be configured first because it defines the traffic filter, and the buffer is associated with that capture point. Also, always stop the capture before exporting to avoid incomplete data.

Why candidates pick the wrong answer

B

Candidates might think that defining the buffer first is logical because it allocates memory, but the capture point configuration is required to associate the buffer with the traffic filter.

C

Candidates might assume that starting the capture immediately after configuring the capture point is correct, but they overlook the need to define the buffer first.

D

Candidates might think that defining the buffer first is correct, but they forget that the capture point must be configured to specify the traffic of interest.

104
MCQhard

A subnet uses network address 192.168.200.96/28. Which range contains the usable host addresses?

A.192.168.200.97 to 192.168.200.110
B.192.168.200.96 to 192.168.200.111
C.192.168.200.98 to 192.168.200.111
D.192.168.200.81 to 192.168.200.94
AnswerA

The /28 prefix length translates to subnet mask 255.255.255.240, giving a 16-address block. Since 192.168.200.96 is the network address (last octet 0110 0000), the broadcast address is .111 (0110 1111). Consequently, the only addresses available to hosts are .97 through .110 inclusive, yielding 14 usable addresses while excluding both reserved endpoints.

Why this answer

A /28 block contains 16 addresses. In practical terms, the block starting at 192.168.200.96 runs through 192.168.200.111. The first address is the network address and the last address is the broadcast address. That means the usable host range is 192.168.200.97 through 192.168.200.110.

This question checks whether you can calculate the correct block and then exclude the two reserved boundary addresses.

Exam trap

Remember to exclude the network and broadcast addresses when determining usable host ranges.

Why the other options are wrong

B

This range includes the network address (.96) and the broadcast address (.111), which cannot be assigned to hosts. Usable host addresses must exclude these two addresses.

C

This range starts at .98, which excludes the valid host .97, and ends at .111, which includes the broadcast address. The correct usable range is .97 to .110.

D

This range (192.168.200.81 to .94) belongs to a different subnet. For a /28 subnet starting at .96, the valid host range is .97 to .110. This range is from a previous subnet (e.g., 192.168.200.80/28).

When would these options actually be correct?

B

If the question asked for the entire range of addresses in the subnet, including the network and broadcast addresses, then this option would be correct. For example, a question could specify 'list all addresses in the subnet' rather than just usable host addresses.

C

If the question asked for the range of usable host addresses for a subnet with a different CIDR notation, such as 192.168.200.96/27, then the range 192.168.200.98 to 192.168.200.111 would be correct, as it would include valid host addresses in that larger subnet.

D

This option would be correct if the subnet were defined as 192.168.200.80/28, where the usable host addresses would indeed range from 192.168.200.81 to 192.168.200.94, making option D valid in that context.

Why candidates pick the wrong answer

B

Students often mistakenly include the network and broadcast addresses in the usable range because they forget that these addresses are reserved and not assignable to hosts.

C

A student might think the first usable address is .98 because they incorrectly calculate the next address after the network address, or they might include the broadcast address due to confusion.

D

A student might miscalculate the subnet boundaries or confuse the network address with a different subnet, leading them to select a range from an adjacent subnet.

105
MCQhard

A switch has DHCP snooping enabled, but users still experience IP-to-MAC spoofing attacks. Which additional feature should be considered to help address that specific problem?

A.PortFast
B.Dynamic ARP Inspection
C.EtherChannel
D.NetFlow
AnswerB

Dynamic ARP Inspection (DAI) is a security feature on switches that intercepts all ARP requests and replies on untrusted ports and validates them against the DHCP snooping binding table. If the IP-to-MAC mapping in an ARP packet does not match the binding table, DAI drops the packet, thereby preventing ARP poisoning attacks. Additionally, DAI can rate-limit ARP packets to mitigate ARP-based denial-of-service attacks, making it the precise solution for the user's IP-to-MAC issue.

Why this answer

Dynamic ARP Inspection (DAI) validates ARP packets against trusted binding information learned through DHCP snooping, directly preventing IP-to-MAC spoofing. PortFast is used to speed up STP convergence and does not provide ARP security. EtherChannel aggregates multiple links for bandwidth and redundancy but does not inspect ARP traffic.

NetFlow is a traffic accounting and monitoring tool, not a security control for ARP spoofing. Therefore, DAI is the correct additional feature to address IP-to-MAC spoofing.

Exam trap

Don't confuse general security features with those specifically designed to prevent ARP spoofing.

Why the other options are wrong

A

PortFast is a Spanning Tree Protocol feature that immediately transitions a port to forwarding state, bypassing listening and learning states. It does not perform any validation of ARP packets or prevent IP-to-MAC spoofing attacks.

C

EtherChannel is a link aggregation technology that combines multiple physical links into a single logical link to increase bandwidth and provide redundancy. It does not inspect or validate ARP packets, so it cannot prevent IP-to-MAC spoofing.

D

NetFlow is a network monitoring protocol that collects IP traffic statistics for analysis and troubleshooting. It provides visibility into traffic patterns but does not actively block or validate ARP packets, so it cannot prevent spoofing attacks.

When would these options actually be correct?

A

In a scenario where the question asks about optimizing switch port configurations for faster connectivity in a network with no concerns about security, PortFast would be the correct answer. For example, if the question specifies a need to reduce the time it takes for end devices to connect without mentioning security threats, PortFast would be appropriate.

C

In a scenario where a question asks about optimizing bandwidth and redundancy for a network segment while ensuring link aggregation, EtherChannel would be the correct answer. For example, if the question focuses on improving throughput between switches without addressing security concerns, EtherChannel would be appropriate.

D

In a scenario where the exam question asks about monitoring and analyzing traffic patterns to identify unusual behavior or potential security threats, NetFlow would be the correct answer. For example, a question might focus on tools for traffic analysis in a network security context.

Why candidates pick the wrong answer

A

Students might confuse PortFast with a security feature because it is often used on access ports to speed up connectivity, but it has no role in ARP inspection.

C

Students might think EtherChannel provides security through redundancy or load balancing, but it is purely a Layer 2 aggregation feature with no security functions.

D

Students may confuse NetFlow's traffic analysis capabilities with security features, thinking that monitoring can detect and prevent attacks, but NetFlow is passive and does not enforce security policies.

106
MCQhard

A switch trunk must carry VLANs 10, 20, and 30, but traffic for VLAN 20 is failing. The trunk allowed list on one side is `10,30`. What is the most likely cause?

A.VLAN 20 is missing from the allowed VLAN list on one side of the trunk.
B.The trunk must be converted to an access port for VLAN 20 to work.
C.VLAN 20 must always be the native VLAN.
D.The switches must both use ISL instead of 802.1Q.
AnswerA

The allowed VLAN list is a per-trunk filter that determines which VLANs are permitted to traverse the link. If VLAN 20 is omitted from the 'switchport trunk allowed vlan' command on either side, frames tagged for VLAN 20 will be discarded at that interface, even though the trunk itself is up. The fix is to explicitly add VLAN 20 to the allowed list on the affected side. Since this is a static configuration error, no other trunk parameter or encapsulation change is needed.

Why this answer

The most likely cause is that VLAN 20 is not in the allowed VLAN list on one side of the trunk. Option B is incorrect because converting the trunk to an access port would block all other VLANs, not just fix VLAN 20. Option C is incorrect because there is no requirement that VLAN 20 must be the native VLAN; native VLAN is unrelated to allowed list filtration.

Option D is incorrect because ISL vs 802.1Q does not affect per-VLAN filtering; the allowed list is a separate configuration independent of the encapsulation type.

Exam trap

Focus on the allowed list configuration, not on VLAN existence or trunk mode. Misconfigurations in allowed lists are a common trap.

Why the other options are wrong

B

Converting the trunk to an access port would remove all other VLANs, not solve the selective failure for VLAN 20.

C

There is no requirement that VLAN 20 must be the native VLAN; the native VLAN is used for untagged traffic and is unrelated to the allowed VLAN list.

D

The encapsulation type (ISL vs 802.1Q) does not affect per-VLAN allowed lists; the issue is purely about the allowed list configuration.

When would these options actually be correct?

B

In a different scenario where the question states that VLAN 20 is not functioning due to a configuration error, and the configuration requires VLANs to be on access ports for specific devices, then converting the trunk to an access port for VLAN 20 would be the correct solution.

C

In a different scenario where the question specifies that VLAN 20 must be the native VLAN for compatibility with legacy devices, this option would be correct if the trunk configuration did not set VLAN 20 as the native VLAN.

D

In a different scenario, if a question stated that VLAN 20 was configured on both switches but traffic was still failing due to compatibility issues between ISL and 802.1Q, then stating that both switches must use ISL could be correct. This would imply that the trunking method is incompatible with the VLAN configuration.

Why candidates pick the wrong answer

B

Students may confuse the concept of a trunk carrying multiple VLANs with an access port being simpler, and might think that changing to an access port would fix the issue for VLAN 20, not realizing it would break the other VLANs.

C

Some students might incorrectly associate the native VLAN with special behavior or assume that a VLAN must be native to pass over a trunk, especially if they have encountered scenarios where native VLAN mismatch causes issues.

D

Students may recall that ISL and 802.1Q are different trunking protocols and might think that switching to ISL could resolve VLAN issues, but the allowed list is independent of the encapsulation type.

107
MCQhard

A switch port is configured with port security using these commands: switchport port-security switchport port-security maximum 1 switchport port-security violation restrict switchport port-security mac-address sticky A user unplugs a company laptop and connects a different unauthorized device. The interface stays up/up, but the new device has no connectivity. Which statement best explains what happened?

A.The port shut down because restrict mode always causes err-disable
B.Traffic from the unauthorized MAC address is being dropped while the interface remains up
C.The switch learned the new MAC address automatically and replaced the old sticky entry
D.Port security affects only management traffic, not user traffic
AnswerB

In port-security restrict mode, the switch forwards legitimate traffic from authorized MAC addresses while silently discarding frames from any unauthorized source MAC, and it increments the security-violation counter. Crucially, the interface remains in the up/up state because restrict mode does not error-disable the port, which exactly matches the symptom of a live interface that cannot pass traffic for the replacement device. This behavior differs from shutdown mode, which would place the port in err-disabled state, and from protect mode, which also drops but does not increment the violation counter.

Why this answer

With a maximum of 1 secure MAC address, the switch learns only the company laptop's MAC via sticky learning. When the unauthorized device is plugged in, it attempts to send traffic with a new source MAC address. Since the maximum is already reached, this triggers a port security violation.

In restrict mode, the switch drops frames from the violating source but leaves the interface operational, matching the observed behavior: the interface stays up/up while the unauthorized device cannot pass traffic.

Exam trap

A common exam trap is assuming that any port security violation immediately disables the port. Candidates often confuse 'restrict' mode with 'shutdown' mode. In 'shutdown' mode, the port goes into an error-disabled state and the interface status changes to down, but in 'restrict' mode, the port remains up and only blocks unauthorized traffic.

This subtle difference can mislead test takers into selecting answers that describe the port shutting down, which contradicts the scenario where the interface stays up/up. Recognizing the behavior of each violation mode is crucial to avoid this mistake.

Why the other options are wrong

A

Option A incorrectly states that restrict mode always causes the port to shut down. In reality, restrict mode blocks unauthorized traffic but keeps the interface up. Shutdown mode is the one that disables the port and causes an error-disabled state, which contradicts the scenario where the port remains up/up.

C

Option C is incorrect because sticky MAC addresses are not automatically replaced when a new device connects. Instead, the switch enforces the violation action when an unauthorized MAC address appears, rather than overwriting the existing sticky entries.

D

Option D is false because port security controls all user data traffic on access ports by filtering frames based on source MAC addresses. It is not limited to management traffic, so this option misrepresents the scope of port security.

When would these options actually be correct?

A

In a different scenario where the port security mode is set to 'shutdown' instead of 'restrict', a candidate might be asked about the behavior of the port when an unauthorized device is connected. In that case, the port would indeed go into err-disable mode, making this option correct.

C

In a different scenario where the switch is configured with 'switchport port-security mac-address <new_mac>' without sticky learning, the new MAC address could replace the old one if the maximum number of secure MAC addresses has not been reached, making this option correct.

D

In a scenario where a question specifies that port security is configured only for management traffic and does not impact user traffic, this option could be correct. For example, if the exam question states that a specific switch model has a unique configuration that isolates management from user traffic, then this option would apply.

Why candidates pick the wrong answer

A

Students often confuse restrict mode with shutdown mode, assuming any violation leads to an err-disable state. The term 'restrict' might be misinterpreted as a more severe action than it actually is.

C

Students may think sticky MAC dynamically adapts to any connected device, similar to dynamic MAC learning without security. They might overlook that sticky MAC enforces a fixed set of allowed addresses once learned.

D

The term 'management traffic' might be confused with control plane traffic, leading students to think port security only affects protocols like SNMP or SSH. In reality, it operates at the data plane level.

108
MCQmedium

A host can reach remote websites by IP address but fails when using their hostnames. Which missing configuration item is the strongest suspect?

A.A DNS server address
B.A new MAC address
C.A trunk native VLAN
D.An OSPF router ID
AnswerA

The DNS server address is the resource the host uses to send name-resolution queries; without a valid address, the resolver cannot translate hostnames like www.example.com into IP addresses. Since the host can already reach remote websites by literal IP address, the only missing piece is the ability to map names to addresses. Verify that DHCP delivers a correct DNS server or manually configure one, and confirm the DNS server itself is reachable and responsive.

Why this answer

When a host can reach remote websites by IP address but not by hostname, the issue is that the host cannot resolve the hostname to an IP address. DNS (Domain Name System) is responsible for this resolution, and if the DNS server address is missing or misconfigured on the host, name resolution fails. This is the strongest suspect because all other network connectivity (routing, switching) is functional, as proven by successful IP-based access.

Exam trap

Cisco often tests the distinction between Layer 3 connectivity (IP reachability) and application-layer services (DNS), so the trap here is that candidates might suspect a routing or switching issue (like a missing default gateway or VLAN mismatch) when the symptom clearly isolates the problem to name resolution.

Why the other options are wrong

B

A MAC address is a hardware identifier used for local network communication at Layer 2, and it has no role in hostname resolution. Changing the MAC address would not affect the ability to resolve hostnames to IP addresses.

C

A trunk native VLAN is a configuration for switch ports that carry multiple VLANs, and it is unrelated to hostname resolution. The symptom described is a DNS issue, not a VLAN or trunking problem.

D

OSPF router IDs are used by routers in OSPF routing protocol operations, not by end hosts. End hosts do not participate in OSPF and do not require a router ID for any function, including name resolution.

When would these options actually be correct?

B

In a question about a network security scenario where a device's MAC address has changed due to a network policy update, and the question asks about connectivity issues related to access control lists (ACLs) or MAC filtering, a new MAC address could be the correct answer if it is preventing access to certain resources.

C

In a scenario where a question asks about VLAN configuration affecting inter-VLAN communication or switch port settings, a candidate might need to identify the correct native VLAN for trunk ports to ensure proper traffic flow between VLANs, making this option correct.

D

If the question were about troubleshooting OSPF routing issues, such as a failure to establish neighbor relationships or route advertisement problems, then identifying the correct OSPF router ID would be crucial for proper network communication.

Why candidates pick the wrong answer

B

Students might confuse MAC addresses with IP addresses or think that network connectivity issues at Layer 2 could impact name resolution, but DNS operates at Layer 3 and above.

C

Test-takers might associate VLANs with network segmentation and think that misconfigurations could prevent hostname resolution, but DNS is a separate service that does not depend on VLAN settings.

D

Students might confuse OSPF with DNS or think that routing protocols are involved in name resolution, but DNS is an application-layer service independent of routing protocols.

109
Drag & Dropmedium

Drag and drop the following steps into the correct order to diagnose and resolve a duplex/speed mismatch causing interface errors 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

Why this order

The correct diagnostic process begins by collecting interface statistics with 'show interfaces' to detect anomalies (step 1). If CRC errors, runts, and late collisions are present, these indicate a duplex mismatch (step 2). Next, check the current duplex and speed configuration for that interface using 'show interfaces <int>' (step 3).

Compare this setting with the expected configuration or with the remote device's interface (step 4) to confirm the mismatch. Based on the findings, apply the correct duplex and speed commands to align both ends (step 5). Finally, verify that the error counters stop incrementing after the fix (step 6).

110
MCQhard

What is the main purpose of this configuration? ipv6 route 2001:db8:100::/64 GigabitEthernet0/0

A.It creates a specific IPv6 static route to 2001:db8:100::/64 out GigabitEthernet0/0.
B.It enables OSPFv3 on GigabitEthernet0/0.
C.It creates an IPv6 default route.
D.It converts the interface into a tunnel.
AnswerA

This is the correct interpretation because the `ipv6 route` command followed by the exact destination prefix `2001:db8:100::/64` and the exit interface `GigabitEthernet0/0` installs a static route in the IPv6 routing table. The route specifies that any packets destined to addresses within the 2001:db8:100::/64 subnet should be forwarded out that specific interface, without relying on dynamic routing or a separate next-hop IP address.

Why this answer

This configuration creates an IPv6 static route to a specific destination prefix through the named outgoing interface. In practical terms, the router is being told exactly how to reach that remote IPv6 network. This is not a default route and not a dynamic-routing statement. It is a manually defined path to one destination prefix.

The key concept is recognizing the difference between a specific static route and a default route.

Exam trap

A frequent exam trap is mistaking the static route command for enabling a routing protocol such as OSPFv3 or assuming it creates a default route. Candidates may also confuse static routes with tunnel interfaces. The command shown explicitly configures a static route to a specific IPv6 prefix via an interface, not a dynamic routing process or a default (::/0) route.

Misreading the prefix or interface can lead to selecting incorrect answers. Recognizing that static routes are manual, precise entries that do not activate protocols or tunnels is essential to avoid this trap.

Why the other options are wrong

B

This option is incorrect because the command shown is a static route configuration, not a command to enable OSPFv3 on an interface. OSPFv3 requires separate routing protocol configuration commands.

C

This option is incorrect because the prefix specified is a specific network (2001:db8:100::/64), not the default IPv6 route (::/0). Therefore, it does not create a default route.

D

This option is incorrect because static route commands do not convert interfaces into tunnels. Tunnel interfaces require explicit tunnel configuration commands, which are not present here.

When would these options actually be correct?

B

If the question asked about the purpose of a configuration that includes commands like 'ipv6 ospf <process-id> area <area-id>' on GigabitEthernet0/0, then option B would be correct as it would indicate enabling OSPFv3 on that interface.

C

In a different question setup where the configuration explicitly indicates that it is meant to route all IPv6 traffic to an unspecified destination, such as 'set ipv6 route ::/0', this option would correctly describe the creation of an IPv6 default route.

D

This option would be correct in a question that asks about a configuration that explicitly sets up a tunnel interface for IPv6 traffic, such as a GRE tunnel or an IPsec tunnel, where the configuration commands include 'tunnel' and specify tunnel endpoints.

Why candidates pick the wrong answer

B

Students may confuse IPv6 static routing with OSPFv3 because both involve IPv6 routing. Additionally, the interface GigabitEthernet0/0 appears in the command, leading some to think it is enabling a routing protocol on that interface.

C

Students might think any static route to an IPv6 network is a default route, especially if they are not careful about the prefix length. The presence of a next-hop interface can also be associated with default routes in some contexts.

D

The command includes an interface (GigabitEthernet0/0), and students might confuse this with tunnel interfaces that also specify an outgoing interface. However, static routes and tunnel interfaces serve entirely different purposes.

111
MCQhard

A client PC is receiving an APIPA address (169.254.x.x) instead of a valid IP from the DHCP server. The DHCP server is on the same subnet as the client. The technician runs the command 'show ip dhcp binding' and confirms that the correct scope is configured. The command 'show ip dhcp pool' shows that there are plenty of addresses remaining in the pool. The client's NIC status shows 'connected'. What should the technician do next?

A.Check the DHCP snooping configuration on the access switch.
B.Verify that no firewall is blocking UDP ports 67 and 68 on the local network.
C.Run the ipconfig /release and /renew commands on the client.
D.Check for a rogue DHCP server on the network.
AnswerD

Given that the legitimate DHCP server is reachable, has a correct scope, and addresses are available, the most probable reason for persistent APIPA assignment is interference from an unauthorized DHCP server. A rogue server could be responding to DHCP Discover messages, preventing the client from obtaining a proper lease. The technician should use tools like packet captures or DHCP logs to detect any other DHCP Offer messages.

Why this answer

The client is receiving an APIPA address (169.254.x.x) despite the DHCP server having available addresses and being on the same subnet. This indicates that the client's DHCP discover broadcast is not reaching the legitimate DHCP server, or the server's offer is not reaching the client. Since the DHCP server is local and the scope is correctly configured, the most likely cause is a rogue DHCP server responding faster than the legitimate server, or a device (like a home router) acting as a DHCP server and handing out APIPA-like addresses or conflicting leases.

Option D directly addresses this by suggesting to check for a rogue DHCP server, which can interfere with the DHCP process and cause the client to fail to obtain a valid IP.

Exam trap

Cisco often tests the concept that APIPA addresses are self-assigned and indicate a failure to receive a DHCP offer, and the trap here is that candidates assume the problem is with the legitimate DHCP server's configuration or connectivity, rather than considering a rogue DHCP server that is interfering with the process.

Why the other options are wrong

A

Candidates often jump to switch security features when they see DHCP issues, but without evidence of a switch misconfiguration, it is not the most direct next action.

B

Test-takers often consider firewalls as universal blockers, forgetting that in a flat Layer 2 domain, broadcast traffic such as DHCP Discover is not filtered by a firewall.

C

Candidates prefer simple client-side fixes, but CCNA troubleshooting emphasises identifying root causes before applying band-aid solutions.

112
MCQmedium

A network administrator receives a call from a user who cannot access any external websites from their wired workstation. The user can ping the default gateway successfully, but fails to ping 8.8.8.8. The administrator runs ipconfig /all on the workstation and sees an IP address of 192.168.1.50, subnet mask 255.255.255.0, and default gateway 192.168.1.1. What is the most likely cause of this issue?

A.The workstation has an incorrect default gateway configured.
B.The workstation has a duplicate IP address on the network.
C.The workstation is connected to the wrong VLAN.
D.The workstation has a DNS misconfiguration.
AnswerA

The user can ping the default gateway (192.168.1.1) but cannot ping 8.8.8.8, indicating local connectivity works but external routing fails. If the actual network gateway is different (e.g., 192.168.1.254), the workstation's configured gateway would be incorrect, preventing traffic from being forwarded to external networks.

Why this answer

The user can successfully ping 192.168.1.1, proving local IP connectivity to that device. However, the device at 192.168.1.1 may not be the correct default gateway for reaching external networks; the actual gateway router might be at a different IP (e.g., 192.168.1.254). This misconfiguration explains why pings to 8.8.8.8 fail even though the local gateway responds, as the workstation sends external traffic to the wrong next-hop address.

Exam trap

This question tests the ability to differentiate between local connectivity issues and routing issues. A common trap is to assume DNS is the problem when users cannot access websites, but the failure to ping an external IP indicates a routing problem, not a name resolution problem. Also, successful ping to the gateway eliminates many Layer 2 or IP configuration issues.

Why the other options are wrong

B

A duplicate IP would cause intermittent or lost connectivity and likely prevent a consistent reply from the gateway.

C

Being on the wrong VLAN would typically prevent the workstation from receiving an IP in the 192.168.1.0/24 subnet and reaching the gateway at 192.168.1.1.

D

DNS is only used for name resolution; pinging an IP address directly does not involve DNS, so a DNS misconfiguration cannot cause the ping failure to 8.8.8.8.

Why candidates pick the wrong answer

B

Candidates may think duplicate IP causes general connectivity issues, but local connectivity would also be affected.

C

Candidates may confuse VLAN misconfiguration with routing issues, but local connectivity to the gateway indicates correct VLAN membership.

D

Candidates often associate web access issues with DNS, but the problem here is with IP connectivity, not name resolution.

113
MCQhard

Two switches are bundled with LACP, but only one physical link is forwarding traffic in the port-channel. What is the most likely reason?

A.One member interface has a trunk configuration mismatch
B.LACP requires exactly one active and one passive side only
C.STP blocks all but one interface inside every EtherChannel
D.EtherChannel cannot be used on trunk ports
AnswerA

When LACP negotiates a channel, all selected member interfaces must share identical Layer 2 properties, including encapsulation, native VLAN, and the allowed VLAN list. If one physical link's trunk parameters differ—for example, it permits a different VLAN set or uses a different native VLAN—that port is placed in a suspended or individual state and omitted from the port-channel. The mismatch is detectable with 'show etherchannel summary', where the offending link appears as 'S' or 'I' rather than bundled.

Why this answer

For an EtherChannel to form correctly, the member interfaces must match on key settings such as speed, duplex, trunking, and allowed VLAN list. A mismatch keeps one link from bundling even if LACP is enabled on both sides.

Exam trap

Be careful not to confuse individual link issues with overall port-channel configuration problems. Ensure all settings match across member interfaces.

Why the other options are wrong

B

LACP supports active-active mode where both sides are configured as active, which is a common and valid configuration. The statement that LACP requires exactly one active and one passive side is incorrect; active-passive is just one possible combination.

C

STP treats the entire EtherChannel as a single logical interface, so it does not block individual member links. STP will only block the port-channel itself if there is a loop, but it does not block all but one interface inside the channel.

D

EtherChannel is commonly used on trunk ports to increase bandwidth and provide redundancy between switches. There is no restriction that prevents EtherChannel from being used on trunk ports; in fact, it is a best practice for inter-switch links.

When would these options actually be correct?

B

This would be correct if the question stated that LACP is configured with both sides set to passive, causing the bundle to fail to form because neither side initiates negotiation. In that scenario, no links would be active, not just one.

C

In a scenario where multiple physical links are bundled without EtherChannel (e.g., using STP for redundancy), STP would block all but one interface to prevent loops.

D

A question might ask: 'Which of the following is a limitation of EtherChannel?' and list options including 'EtherChannel cannot be used on trunk ports' as a distractor. In that context, it would be incorrect, but if the question were 'Which of the following is NOT a valid EtherChannel configuration?' and the correct answer was 'EtherChannel on trunk ports', then this option would be wrong. However, for it to be correct, the question would need to explicitly state that trunk ports are not supported, which is false in real-world scenarios.

Why candidates pick the wrong answer

B

Students often confuse LACP with PAgP, which does require one side to be desirable (active) and the other to be auto (passive) in certain modes, or they may think that LACP requires a negotiation handshake with one side initiating.

C

Students might think that STP operates on each physical link independently within an EtherChannel, not realizing that the channel is a logical bundle. They may also confuse STP behavior with load-balancing algorithms that might not use all links equally.

D

Students might think that trunk ports have special VLAN tagging that could interfere with EtherChannel hashing or load balancing, or they may confuse EtherChannel with access port configurations.

114
Multi-Selectmedium

Which TWO of the following statements about Spanning Tree Protocol (STP) and Rapid PVST+ are true?

Select 2 answers
A.The root bridge in STP is elected based on the lowest bridge ID.
B.The root bridge in STP is elected based on the highest bridge ID.
C.PortFast automatically enables BPDU Guard on an interface.
D.BPDU Guard places a PortFast-enabled port into an error-disabled state if a BPDU is received.
E.Rapid PVST+ uses a different root bridge election process than traditional STP.
AnswersA, D

Spanning Tree elects the root bridge through BPDU exchange, and the switch with the lowest bridge ID becomes root. The bridge ID is an 8-byte value combining the configurable priority field and the switch's MAC address; when priorities tie, the lowest MAC address breaks the tie. This deterministic election logic is identical across traditional STP and Rapid PVST+.

Why this answer

The root bridge in STP is elected based on the numerically smallest bridge ID (priority + MAC address). Option D is correct because BPDU Guard, when enabled on a PortFast-enabled port, immediately error-disables the port if a BPDU is received, protecting against accidental loops. Option B is incorrect because the root bridge is chosen by the lowest bridge ID, not the highest.

Option C is incorrect because PortFast and BPDU Guard are independent features; PortFast does not automatically enable BPDU Guard. Option E is incorrect because both traditional STP (802.1D) and Rapid PVST+ (RSTP-based) use the same root bridge election process—lowest bridge ID.

Exam trap

Cisco often tests the misconception that PortFast and BPDU Guard are automatically linked, when in fact they are separate features that must be configured independently, and the trap is that candidates assume enabling PortFast also enables BPDU Guard.

Why the other options are wrong

B

The root bridge is elected based on the lowest bridge ID, not the highest.

C

PortFast does not automatically enable BPDU Guard; they must be configured separately.

E

Rapid PVST+ uses the same root bridge election process (lowest bridge ID) as traditional STP.

Why candidates pick the wrong answer

B

Students may confuse the root bridge election with other protocols that use highest values (e.g., OSPF DR election) or mistakenly think higher priority is better.

C

Since PortFast is often used with BPDU Guard in best practices, some may assume PortFast automatically enables BPDU Guard, but they are separate configurations.

E

The name 'Rapid PVST+' might imply a different election process, but the root election remains identical; only the state machine and convergence mechanisms differ.

115
Multi-Selectmedium

A switch port was configured for sticky MAC learning. Which two statements accurately describe how the feature behaves?

Select 2 answers
A.The switch can dynamically learn MAC addresses and add them to the running configuration as secure MAC addresses.
B.Sticky learning removes the need to enable port security on the interface.
C.Saved sticky addresses can become part of the startup configuration if the running configuration is saved.
D.Sticky learning automatically converts the interface into a trunk port.
E.Sticky learning prevents the maximum secure MAC limit from being enforced.
AnswersA, C

This is correct because sticky MAC learning lets the switch observe source MAC addresses arriving on the port and then record them as secure MAC entries. That gives the convenience of dynamic discovery with the control of port security.

Why this answer

Sticky MAC learning is Cisco’s way of letting a port learn device MAC addresses automatically, while still treating them as secure addresses under port security. In everyday language, it saves the administrator from typing each allowed MAC address by hand. As devices connect, the switch can learn their MAC addresses and place them into the running configuration as sticky secure MACs.

If the administrator later saves the configuration, those learned entries can also be written into startup-config and survive a reboot. The feature does not replace port security; it works as part of port security. It also does not change the port into a trunk or disable the maximum address count.

So the two correct ideas are dynamic secure learning and the ability to preserve those learned MACs by saving the configuration.

Exam trap

Remember, sticky MAC learning is a feature of port security, not a replacement or a mode change.

Why the other options are wrong

B

Sticky MAC learning is a feature of port security and cannot function without port security being enabled on the interface. The command 'switchport port-security' must be configured first, and then 'switchport port-security mac-address sticky' enables sticky learning.

D

Sticky MAC learning is a port security feature that operates on access ports and does not affect the interface's operational mode. Trunk ports are configured separately using 'switchport mode trunk' and are used for carrying multiple VLANs, which is unrelated to MAC address learning behavior.

E

Sticky MAC learning does not override the maximum secure MAC address limit configured with 'switchport port-security maximum'. If the number of learned sticky addresses reaches the limit, additional MAC addresses will trigger a security violation, just like with dynamically learned addresses.

When would these options actually be correct?

B

In a different question that asks about the benefits of sticky MAC learning in a network environment where port security is already enabled, option B could be correct if it specifies that sticky learning simplifies MAC address management without needing additional configurations, assuming the context allows for a broader interpretation of 'removes the need'.

D

If the question were about a feature that automatically configures a port as a trunk based on certain conditions, such as the presence of multiple VLANs or specific commands, then this option could be correct in that context.

E

In a different scenario where the question focuses on a switch feature that allows for unlimited MAC address learning without restrictions, such as a hypothetical switch mode that ignores security limits, option E could be correct. For instance, a question could ask about a specific configuration that allows dynamic MAC learning without enforcing limits.

Why candidates pick the wrong answer

B

Students may think that sticky learning automatically secures the port without needing to enable port security, confusing it with other features like dynamic MAC address learning on a switch. However, sticky learning is a subset of port security and requires port security to be active.

D

Some students might associate 'sticky' with automatically adapting to the network, leading them to think it could change the port to trunk mode. However, sticky MAC only pertains to how MAC addresses are learned and stored, not to VLAN tagging or trunking.

E

Students might think that because sticky addresses are saved and persistent, the switch would allow more addresses than the limit. However, the maximum limit is still enforced to prevent unauthorized devices from being learned, regardless of whether the learning is sticky or dynamic.

116
Matchingmedium

Match each REST API method to the action it most closely represents in a typical network automation workflow.

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

Concepts
Matches

Retrieve a resource

Create a new resource

Update or replace a resource

Remove a resource

Why these pairings

GET retrieves data, POST creates new resources, PUT updates/replaces, PATCH partially updates, DELETE removes, and OPTIONS queries available methods. These correspond to common network automation workflows.

Exam trap

Be careful not to confuse PUT and PATCH: PUT replaces the entire resource, while PATCH applies a partial update. Also, remember that POST is for creating new resources, not for updating. These are common traps in CCNA automation questions.

When would these options actually be correct?

B

If the exam question defined PUT as 'modify resource fields' (partial update) and PATCH as 'replace entire resource' (full update), then option B would match that non-standard mapping.

C

In a question that asks which methods are idempotent, PUT is idempotent (full update/replace) and POST is not, but if the question focused on partial updates, PATCH would be correct. However, for a matching question where PUT is defined as 'update/replace' and POST as 'create', this option would be wrong.

D

If the exam question defined PUT as 'partially updates' and PATCH as 'updates/replaces' (e.g., in a non-standard or legacy API design), then option D would be correct. For example, a question about a custom API where PUT is used for partial updates and PATCH for full replacements.

Why candidates pick the wrong answer

B

Candidates often confuse PUT and PATCH because both are used for updates, and they may think 'partial' is a subset of 'update' without remembering the standard HTTP semantics.

C

Candidates may confuse PUT and POST because both can be used to create resources in some APIs, and they might think PUT is for updates only, not replacements.

D

Candidates often confuse PUT and PATCH because both are used for updates, and the terms 'partial' and 'replace' can be misremembered. The similarity in their purposes makes it easy to swap their definitions under exam pressure.

117
Multi-Selectmedium

Which TWO interface error counters indicate a Layer 1 issue?

Select 2 answers
A.CRC errors
B.Output queue drops
C.Runts
D.Input errors
E.Ignored packets
AnswersA, C

CRC errors occur when the receiving interface computes the frame check sequence and finds it does not match the value sent by the sender, proving that bits were corrupted during transmission. This is a classic Layer 1 symptom, typically caused by bad cabling, loose connectors, electromagnetic interference, or a failing transceiver. Because the corruption happens on the physical medium, CRC errors directly identify a Layer 1 problem.

Why this answer

CRC errors occur when the cyclic redundancy check computed at the receiver does not match the value appended by the sender, indicating that the frame was corrupted during transmission. This corruption is typically caused by physical-layer problems such as faulty cabling, bad connectors, or excessive electrical noise. Runts are frames that are smaller than the minimum Ethernet frame size of 64 bytes (excluding preamble), and they often result from collisions or transceiver issues that are Layer 1 phenomena.

Both counters directly point to physical-layer impairments rather than logical or congestion-related issues.

Exam trap

Cisco often tests the distinction between Layer 1 errors (CRC, runts, giants, frame errors) and Layer 2/3 congestion indicators (output drops, input drops, ignored counts), so the trap is that candidates mistakenly associate any 'drop' or 'error' counter with the physical layer without understanding the underlying cause.

Why the other options are wrong

B

Output queue drops occur when the transmit queue is full due to congestion, typically at Layer 3 (IP) or Layer 2 (switching). They are not caused by physical layer issues but by traffic overload or insufficient buffer space.

D

Input errors is a catch-all counter that includes CRC, runts, giants, and framing errors. While it can indicate Layer 1 issues, it is not specific to Layer 1 because it also includes errors from higher layers (e.g., alignment errors). The question asks for counters that indicate a Layer 1 issue, and input errors is too broad.

E

Ignored packets are dropped due to buffer overflow, often from high traffic or hardware limitations, not specifically a Layer 1 error. They are typically caused by congestion at Layer 2 or Layer 3, not physical layer faults.

Why candidates pick the wrong answer

B

Students might confuse output drops with input errors, thinking any 'drop' could be physical, but output drops are purely a queuing mechanism issue.

D

Since input errors often include CRC and runts, students may think it directly indicates Layer 1, but it is a summary counter that can also include non-Layer1 errors.

E

The term 'ignored' might suggest the interface is ignoring bad frames, but it actually refers to packets dropped because the receive buffer is full, which is a resource issue, not a physical layer error.

118
MCQhard

A network administrator has configured HSRP between RouterA and RouterB for VLAN 10. End hosts using the virtual IP 192.168.1.1 as their default gateway experience intermittent connectivity losses, and pings to 192.168.1.1 often fail. The output of 'show standby brief' on both routers shows the state as Active. What is the most likely cause?

A.The virtual IP address is configured on only one router.
B.The routers are configured with mismatched HSRP authentication methods.
C.The HSRP group number on one router is set to 0.
D.The priority on both routers is configured to the same value.
AnswerB

Mismatched authentication (e.g., MD5 vs. text) causes each router to disregard the other's HSRP hellos. Each then assumes no peers exist and becomes Active, leading to both routers claiming the virtual IP and MAC, which results in ARP table flapping and intermittent connectivity.

Why this answer

When both routers show the HSRP state as Active, a 'dual-active' scenario exists, which causes intermittent connectivity because both routers forward traffic for the virtual IP. Mismatched HSRP authentication methods (e.g., one router using plain-text authentication and the other using MD5) prevent the routers from exchanging proper Hello messages, so they fail to negotiate a single Active router. This is the most likely cause because authentication mismatches break the HSRP adjacency, leading to both routers assuming the Active role.

Exam trap

Cisco often tests the concept that HSRP authentication mismatches cause a dual-active failure, while candidates may incorrectly assume that equal priorities or group number 0 are the root cause.

Why the other options are wrong

A

A missing virtual IP on one router does not cause both to be Active; the router without the virtual IP cannot claim the Active role for that address.

C

A group number mismatch does not cause both routers to appear as Active for the same virtual IP; they would be in separate groups.

D

Equal priority does not lead to multiple Active routers; HSRP uses the interface IP address as a tiebreaker to elect a single Active router.

119
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure AAA with a RADIUS server and enable 802.1X port authentication on an IOS-XE switch.

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

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

Why this order

First enter global config, then define RADIUS server, then configure AAA authentication, then enable 802.1X globally, then apply per-interface 802.1X settings.

Exam trap

The exam trap is that candidates often confuse the dependency order: AAA authentication must reference an already-defined RADIUS server, and 802.1X globally requires AAA to be configured first. Always think about what each step depends on.

Why candidates pick the wrong answer

B

Candidates might think enabling 802.1X globally is the first step after entering config mode, but AAA must be set up first.

C

Candidates might think AAA authentication is configured before the server details, but the server must be defined first.

D

Candidates might think 802.1X can be enabled globally as soon as the RADIUS server is defined, but AAA authentication must be configured first.

120
Matchingmedium

Match each REST or API concept to its most accurate description.

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

Concepts
Matches

HTTP method commonly used to retrieve data

HTTP method commonly used to submit or create data

Credential-like value used to help control API access

Structured data format often used in API payloads

Why these pairings

The correct matches are: REST (Architectural style using stateless operations and standard HTTP methods), API endpoint (Specific URL where an API can be accessed), HTTP method (GET, POST, PUT, DELETE to perform CRUD operations), and JSON (Lightweight data format commonly used in API requests and responses). Each description uniquely identifies the corresponding concept. REST is not a protocol or data format; it is an architectural style.

An API endpoint is the URL path. HTTP methods are the verbs. JSON is the data interchange format.

These are fundamental concepts in RESTful APIs.

Exam trap

The exam may test your understanding of REST as an architectural style, not as a protocol or data format. Be careful not to confuse REST with its common implementations like HTTPS or JSON.

121
Matchingeasy

Match each common automation term to its most accurate meaning.

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

Concepts
Matches

Centralized management or policy platform

Defined software interface for communication

Lightweight structured data format

Secure transport commonly used for API access

Why these pairings

Infrastructure as Code (IaC) refers to managing and provisioning infrastructure through machine-readable definition files, enabling automation and version control. Idempotence means that performing the same operation multiple times results in the same state, ensuring consistency. The declarative model allows the user to define the desired end state, and the system automatically determines how to achieve it.

In contrast, the imperative model requires the user to specify step-by-step instructions to reach the desired state. These four terms are fundamental to understanding network automation approaches.

Exam trap

Candidates often confuse the languages and architectures of automation tools. Remember: Ansible = YAML + agentless; Chef = Ruby DSL; Puppet = declarative manifests (custom DSL); SaltStack = master-minion with agents.

122
MCQhard

An administrator wants to allow HTTPS traffic from a source subnet to a server but deny all Telnet traffic from that same subnet to the same server. Which ACL capability is required to express that policy accurately?

A.An extended ACL that can match protocol and destination port information
B.A standard ACL because source matching is enough
C.A wildcard mask with all zeros only
D.A wireless SSID ACL
AnswerA

An extended ACL is the correct tool because it evaluates both protocol type (TCP) and the destination port (443) in its permit or deny statements, giving the router the granularity needed to allow only HTTPS while blocking other TCP-based services. Unlike standard ACLs, extended ACLs can be placed closest to the source and still enforce policy based on layer-4 information. The specific requirement to allow HTTPS from the source subnet and deny all other traffic, including Telnet, cannot be met without this port-level matching.

Why this answer

The policy requires extended ACL capability because it must distinguish traffic by protocol and destination port, not just by source address. In practical terms, the rule needs to treat TCP port 443 differently from TCP port 23 even though the source and destination networks are the same. A standard ACL is too limited for that.

This question is about matching precision. When the policy depends on protocol and port, extended ACLs are the right tool.

Exam trap

A frequent exam trap is selecting a standard ACL to enforce policies that require filtering by protocol or port number. Standard ACLs only filter by source IP address and cannot distinguish between different types of traffic like HTTPS and Telnet. This leads to incorrect assumptions that standard ACLs can block Telnet while allowing HTTPS from the same subnet.

The trap lies in overlooking the need for protocol and port-level filtering, which only extended ACLs provide. Candidates must remember that without extended ACLs, the router cannot differentiate traffic based on application-layer details, causing the policy to fail.

Why the other options are wrong

B

Incorrect because standard ACLs filter only by source IP address and cannot distinguish between different protocols or ports, making them insufficient for the requirement to allow HTTPS but deny Telnet.

C

Incorrect because a wildcard mask controls which bits of an IP address are matched but does not provide any capability to filter traffic based on protocol or port information, which is essential here.

D

Incorrect because wireless SSID ACLs relate to WLAN access control and do not filter IP traffic based on protocol or port, making them irrelevant to the question about IP traffic filtering.

When would these options actually be correct?

B

If the question asked for a policy that only required blocking or allowing traffic based solely on source IP addresses without regard to specific protocols or ports, then a standard ACL would be appropriate. For example, if the requirement was to allow all traffic from a specific subnet to a server without specifying protocols.

C

In a question where the requirement is to apply an ACL to a single device and the focus is solely on that device's IP address, a wildcard mask with all zeros could be correct for specifying that exact host without needing to consider any other traffic types or protocols.

D

If the question asked about managing access controls specifically for wireless clients connecting to a network, where the focus was on restricting or allowing traffic based on SSID settings, then a wireless SSID ACL would be the correct answer.

Why candidates pick the wrong answer

B

Students might think that because the source subnet is the same for both allowed and denied traffic, matching only the source is sufficient. However, they overlook the need to differentiate between the two services based on destination port.

C

Students may confuse wildcard masks with ACL functionality, thinking that specifying a wildcard mask is the key to creating an ACL. However, the mask only defines which bits of the IP address to match, not the protocol or port.

D

Students might mistakenly think that 'ACL' in a wireless context can apply to any type of filtering, but SSID ACLs are specific to wireless LANs and do not operate at the IP or transport layer.

123
MCQhard

A trunk link between two switches is up, but voice phones connected through one access switch no longer receive the correct voice VLAN treatment. Data users still pass traffic. Which area should be checked first?

A.Whether the voice VLAN is being carried and handled correctly across the switching path.
B.Whether OSPFv3 neighbors are fully adjacent on the phone switch ports.
C.Whether the wireless controller has the correct guest SSID.
D.Whether BGP uses a lower metric than the static route.
AnswerA

The correct focus is verifying that the voice VLAN is configured and permitted consistently across the entire switching path: the access ports connected to phones must carry the auxiliary voice VLAN, and the trunk between the switches must include that VLAN in its allowed list without stripping or re-tagging it incorrectly. Because the trunk is up but phones fail selectively, the fault almost certainly lies in voice VLAN propagation or 802.1Q tagging, not in physical connectivity or routing. Checking the voice VLAN's allowed status and native VLAN behavior on the trunk will reveal the misconfiguration.

Why this answer

The first area to check is the end-to-end handling of the voice VLAN across the switching path. In practical terms, the data VLAN can still work while the voice VLAN experiences a forwarding, configuration, or policy problem. Because the phones depend on the correct voice VLAN behavior, that VLAN path should be examined first rather than assuming the whole trunk is broken.

This is a selective-services troubleshooting question. One class of traffic can fail even when ordinary user data still works.

Exam trap

Be cautious not to assume that a general network issue is the cause when only specific traffic types are affected. Focus on the specific VLAN configuration first.

Why the other options are wrong

B

OSPFv3 is an IPv6 routing protocol and has no role in Layer 2 voice VLAN handling on access ports. The issue is about VLAN assignment and trunking, not routing protocol adjacency.

C

The scenario involves wired switches and IP phones, not wireless LAN. Guest SSID configuration on a wireless controller is unrelated to voice VLAN treatment on a wired trunk link.

D

BGP is an exterior routing protocol used for interdomain routing, not for Layer 2 VLAN handling. The symptom is about voice VLAN treatment on a trunk, which is unrelated to BGP metrics or static routes.

When would these options actually be correct?

B

In a question focused on OSPFv3 configurations, where the scenario involves troubleshooting routing issues on a network with voice and data traffic, checking OSPFv3 neighbor adjacency would be relevant to ensure proper routing of packets, including those for voice traffic.

C

In a question focused on troubleshooting wireless network issues, where the problem involves guest access and voice traffic being improperly handled due to incorrect SSID settings on a wireless controller, this option would be correct.

D

In a question about routing protocols where BGP is used to manage traffic between multiple networks, and the exam asks about ensuring optimal path selection for voice traffic, this option would be correct if the context involves verifying that BGP metrics influence the routing decisions for voice packets.

Why candidates pick the wrong answer

B

Students might confuse OSPFv3 with OSPFv2 or think that any routing protocol issue could affect connectivity, but the problem is specifically about voice VLAN treatment, which is a Layer 2 function.

C

Test-takers might associate 'voice' with wireless voice (VoWiFi) or think that a wireless controller could influence wired VLAN assignment, but the question clearly describes a wired access switch and trunk.

D

Students might think that any routing protocol could affect traffic flow, but the issue is at Layer 2, and BGP metrics do not influence VLAN assignment or trunk behavior.

124
MCQhard

A host is configured with 172.16.10.62/27. Which address is the broadcast address for that subnet?

A.172.16.10.31
B.172.16.10.32
C.172.16.10.63
D.172.16.10.64
AnswerC

This is correct because the host is in the 32–63 /27 block, whose broadcast is .63.

Why this answer

A /27 uses blocks of 32 addresses. In plain language, the last-octet ranges are 0–31, 32–63, 64–95, and so on. Since the host address ends in 62, it belongs to the 32–63 block. The last address in that block is the broadcast address, so the broadcast is 172.16.10.63.

This is a classic subnetting question because it requires you to place the host inside the correct block and then identify the last address in that block rather than guessing based on the host value alone.

Exam trap

Be careful not to confuse the broadcast address with the network address or the start of the next subnet.

Why the other options are wrong

A

The address 172.16.10.31 is the broadcast address for the /27 subnet 172.16.10.0–31, not for the subnet containing host 172.16.10.62. Since the host's IP is in the 32–63 range, the broadcast is .63, not .31.

B

172.16.10.32 is the network address (subnet ID) of the /27 subnet that includes hosts 32–63. It is not the broadcast address; the broadcast is the last address in the subnet, which is .63.

D

172.16.10.64 is the network address of the next /27 subnet (64–95), not the broadcast address for the subnet containing .62. The broadcast for the subnet containing .62 is .63.

When would these options actually be correct?

A

If the question were to ask for the broadcast address of the subnet 172.16.10.0/27 instead, then option A (172.16.10.31) would be correct, as it would represent the broadcast address for that specific subnet range.

B

If the question were to ask for the first usable IP address in the subnet 172.16.10.32/27, then option B would be the correct answer. In this scenario, candidates would need to identify the first address available for assignment to hosts.

D

If the question were to ask for the first usable address of the subnet 172.16.10.64/27, then option D (172.16.10.64) would be correct, as it represents the start of that subnet range.

Why candidates pick the wrong answer

A

Students often mistakenly calculate the broadcast address by looking at the last octet in binary and forgetting to consider the subnet boundaries. They might incorrectly assume that .31 is the broadcast because it is the last address before the next subnet, but they misidentify the subnet.

B

Some test-takers confuse the network address with the broadcast address, especially when they see that .32 is a multiple of 32 (the block size for /27). They might think that the broadcast is the same as the network address or that it is the first address in the subnet.

D

Students sometimes think that the broadcast address is the first address of the next subnet, confusing it with the concept that the broadcast is one less than the next network address. However, they might incorrectly pick the next network address itself instead of subtracting one.

125
MCQhard

Refer to the exhibit. A network administrator is reviewing the NAT translations on router R1 and notices that the internal host 192.168.1.10 appears in both a static NAT entry (for ports 80 and 443) using global address 203.0.113.10, and a dynamic PAT entry (port 49152) using global address 203.0.113.1. The administrator is concerned this might indicate a misconfiguration. Based on the output, which statement is correct?

A.The translations are functioning correctly; the static entries allow inbound web traffic to the host, while the dynamic PAT entry supports an outbound client connection.
B.The static NAT rule is being overridden by the dynamic PAT rule, causing inbound web traffic to the server to fail.
C.The dynamic PAT entry indicates a duplicate session that will cause asymmetric routing and packet drops.
D.The router is incorrectly performing both static and dynamic NAT for the same inside address, which violates the configured NAT order.
AnswerA

The static mappings for ports 80 and 443 (global 203.0.113.10 → 192.168.1.10) are not overridden because the dynamic PAT entry uses a different global address (203.0.113.1) and a different source port (49152). This separation enables both inbound server traffic and outbound client traffic for the same inside host, which is a valid design.

Why this answer

Static NAT and dynamic PAT can coexist for the same inside host because they serve different purposes. The static NAT entries for ports 80 and 443 allow inbound web traffic from the internet to reach the internal server at 192.168.1.10 using global address 203.0.113.10. The dynamic PAT entry (port 49152) using global address 203.0.113.1 is a separate translation for an outbound connection initiated by the same host, which is normal behavior as the router maintains distinct translation entries based on direction and port.

Exam trap

Cisco often tests the misconception that a single inside host cannot have both static NAT and dynamic PAT entries simultaneously, when in fact they can coexist as long as they use different global addresses or ports and serve different traffic flows.

Why the other options are wrong

B

A common misconception is that any dynamic NAT entry for the same inside local address takes precedence or conflicts with static entries. In reality, the more specific static mapping takes priority for matching traffic, and the dynamic entry handles unrelated flows.

C

Candidates may misinterpret the presence of the same inside local IP in two entries as a duplicate session. Asymmetric routing would require inconsistent state in both directions, but here the NAT table correctly tracks distinct flows.

D

Some candidates believe that a single inside address can only participate in one type of NAT at a time. In fact, multiple NAT rules can coexist, and the router will use the most specific match (static port mapping) before falling back to dynamic PAT for unmapped ports.

126
MCQhard

A host uses the subnet mask 255.255.255.192. How many usable host addresses exist in each subnet?

A.30
B.62
C.126
D.254
AnswerB

This is the correct answer because the subnet mask 255.255.255.192 translates to a /26 prefix, leaving 32 - 26 = 6 bits for host addressing. With 6 host bits, the total number of addresses in each subnet is 2^6 = 64, and from that total the network address (all host bits zero) and the broadcast address (all host bits one) must be subtracted. This yields 64 - 2 = 62 usable host addresses, which matches the requirement for a /26 subnet.

Why this answer

The mask 255.255.255.192 corresponds to /26. That leaves 6 host bits, which means each subnet contains 64 total addresses. After excluding the network and broadcast addresses, 62 usable host addresses remain.

This is a standard host-capacity question. The safest approach is to convert the mask to the prefix, determine the total addresses from the number of host bits, and then subtract the two reserved addresses.

Exam trap

Be careful not to confuse total addresses with usable addresses; always subtract the network and broadcast addresses.

Why the other options are wrong

A

The subnet mask 255.255.255.192 is /26, which provides 64 total addresses per subnet. Subtracting the network and broadcast addresses leaves 62 usable hosts, not 30. 30 usable hosts corresponds to a /27 subnet mask (255.255.255.224).

C

126 usable hosts would require a /25 subnet mask (255.255.255.128), which provides 128 total addresses. The given mask /26 provides only 64 total addresses, so 126 is incorrect.

D

254 usable hosts corresponds to a /24 subnet mask (255.255.255.0), which provides 256 total addresses. The mask 255.255.255.192 is /26, which is two bits longer, resulting in only 64 total addresses.

When would these options actually be correct?

A

If the question specified a subnet mask of 255.255.255.224 instead, which allows for 30 usable host addresses, then option A would be the correct answer. This would change the total number of addresses available in the subnet.

C

If the question asked about a subnet mask of 255.255.255.0, which allows for 256 total addresses, then option C would be correct, as it would provide 254 usable addresses (256 total minus 2).

D

If the question were modified to ask about a subnet mask of 255.255.255.0, which allows for 256 total addresses and 254 usable addresses after accounting for the network and broadcast addresses, then option D would be correct.

Why candidates pick the wrong answer

A

Students often confuse the number of bits borrowed; a /27 mask (255.255.255.224) yields 30 usable hosts, and they might mistakenly apply that to a /26 mask.

C

Students may misremember the host counts for /25 and /26, or incorrectly calculate the number of hosts by forgetting to subtract the network and broadcast addresses.

D

A common mistake is to assume that any subnet mask with 255 in the first three octets yields 254 hosts, but the fourth octet's value determines the actual host count.

127
MCQhard

R1 and R2 are directly connected. Their interfaces are up/up and belong to the same subnet. R1's OSPF configuration places the interface in area 0, while R2's interface is in area 1. R1 does not show R2 as an OSPF neighbor. What is the most likely cause?

A.The area IDs do not match
B.R1 must use a loopback as the router ID
C.The subnet mask is too small for OSPF to work
D.R2 should be configured as the DR manually
AnswerA

Each OSPF interface must be assigned to the same area on both ends of a link. The Hello packet carries the originating router's area ID, and a receiving router checks this value against its own; a mismatch causes the Hello to be silently discarded, leaving the neighbor list empty. Even with correct IP addressing and timers, a mismatch in area IDs prevents the OSPF adjacency from ever reaching the two-way state.

Why this answer

OSPF neighbors on the same link must agree on the area ID. Here, one side is in area 0 and the other is in area 1, so adjacency never forms even though the interfaces are up and in the same subnet.

Exam trap

A common trap is focusing on router ID or subnet mask instead of recognizing that mismatched area IDs prevent OSPF adjacency.

Why the other options are wrong

B

Incorrect. While using a loopback interface as the router ID is recommended for stability, it is not required for OSPF neighbor adjacency to form.

C

Incorrect. A /30 subnet mask is valid for point-to-point OSPF links and does not prevent neighbor relationships from forming.

D

Incorrect. The Designated Router (DR) election occurs after adjacency formation and does not prevent neighbors from forming if area IDs mismatch.

When would these options actually be correct?

B

In a different scenario where the question specifies that OSPF requires a router ID to be explicitly set and that the router ID must be a loopback address, this option would be correct. For example, if the question stated that R1 must use a loopback interface for OSPF to establish neighbor relationships, then this option would apply.

C

In a different scenario, if a question specified that R1 and R2 are on the same subnet but have mismatched subnet masks that prevent them from being in the same broadcast domain, then a small subnet mask could indeed be the reason for OSPF not establishing a neighbor relationship.

D

In a different scenario where the question specifies a multi-access network with multiple OSPF routers, and the exam asks about ensuring a specific router is elected as the DR, this option would be correct if the manual configuration of DR is required to meet specific network design criteria.

Why candidates pick the wrong answer

B

Students often hear that loopback interfaces are best practice for OSPF router IDs and may mistakenly believe they are required. This confusion arises because many study materials emphasize using loopbacks for stability, leading to the incorrect assumption that OSPF will not work without one.

C

Some students think OSPF requires a larger subnet (e.g., /24) because they confuse OSPF's network type requirements with other protocols or assume that a small subnet might cause issues. However, OSPF operates fine on point-to-point links with /30 masks.

D

Students may recall that OSPF uses DR/BDR on multiaccess networks (like Ethernet) and incorrectly assume that DR election is always required. They might think that without a DR, OSPF cannot form neighbors, but this only applies to broadcast or NBMA networks, not point-to-point links.

128
MCQhard

A subnet uses the mask 255.255.255.252. How many usable host addresses are available in each subnet?

A.2
B.4
C.6
D.14
AnswerA

Correct. A /30 subnet (255.255.255.252) has 2 host bits because 32-30=2. The total number of addresses is 2^2 = 4, which includes one network address and one broadcast address. Subtracting these two reserved addresses leaves exactly 4-2 = 2 usable host addresses. This is the standard point-to-point link subnet size.

Why this answer

The mask 255.255.255.252 corresponds to /30. In practical terms, that gives 4 total addresses per subnet. After subtracting the network and broadcast addresses, 2 usable host addresses remain.

This is a classic small-subnet calculation that often appears in point-to-point addressing scenarios.

Exam trap

Remember to exclude network and broadcast addresses when calculating usable host addresses.

Why the other options are wrong

B

The /30 subnet provides a total of 4 addresses, but one is the network address and one is the broadcast address, leaving only 2 usable host addresses. Saying 4 is incorrect because it counts the network and broadcast addresses as usable.

C

A /30 subnet has only 2 bits for host addresses, yielding 2^2 = 4 total addresses, of which 2 are usable. 6 usable hosts would require at least 3 host bits (2^3 - 2 = 6), which corresponds to a /29 subnet.

D

14 usable hosts correspond to a /28 subnet (255.255.255.240), which has 4 host bits (2^4 - 2 = 14). A /30 subnet has only 2 host bits, so it cannot provide 14 usable hosts.

When would these options actually be correct?

B

If the question asked for the total number of addresses in a subnet instead of usable addresses, then the answer would be 4, as it accounts for all IP addresses in the subnet, including the network and broadcast addresses.

C

If the question specified a subnet mask of 255.255.255.248 instead, which allows for 6 usable host addresses, then option C would be correct. This mask provides 8 total addresses, with 2 reserved for network and broadcast.

D

If the question were to ask about a subnet mask of 255.255.255.240, which allows for 16 total addresses, the usable host addresses would be 14. In this case, option D would be the correct answer.

Why candidates pick the wrong answer

B

Students often confuse the total number of addresses in a subnet with the number of usable host addresses. Since 2^2 = 4, they may mistakenly think all 4 are available for hosts.

C

Some test-takers might incorrectly apply the formula 2^n - 2 and think n=3 gives 6, but they forget that /30 has only 2 host bits, not 3.

D

Students may confuse the subnet mask 255.255.255.252 with 255.255.255.240, as both are common masks, and mistakenly apply the host count of a /28 to a /30.

129
MCQhard

A switch port configured with PortFast and BPDU Guard receives a BPDU and transitions to an error-disabled state. Which statement best explains why this is considered useful protection?

A.It prevents a port expected to be an edge port from accidentally becoming part of the switching topology and causing loops.
B.It increases the port's bandwidth by combining multiple links.
C.It automatically enables VLAN trunking on the port.
D.It forces the port to use Rapid Spanning Tree Protocol for faster convergence.
AnswerA

PortFast is designed for edge ports that connect directly to end hosts, so it places the port into forwarding state immediately. When a BPDU is received on such a port, it means an unexpected switch connection exists, so BPDU Guard—often enabled alongside PortFast—disables the port. This prevents the port from participating in STP calculations and creating a bridging loop, while preserving the intended fast-convergence behavior for genuine edge ports.

Why this answer

PortFast is used on edge ports to bypass STP listening/learning, but if a BPDU is received, the assumption that the port is an edge port is violated. BPDU Guard then error-disables the port to prevent potential loops or topology disruptions. This protects the network when an edge port unexpectedly connects to another switch, which could cause a bridging loop.

The other options describe unrelated features or incorrect mechanisms.

Exam trap

Remember that BPDU Guard disables the port, not just logs or adjusts its role. It's a protective measure, not a monitoring tool.

Why the other options are wrong

B

Increasing port bandwidth by combining links is done via EtherChannel, not related to BPDU Guard or loop prevention.

C

VLAN trunking is automatically negotiated via DTP or manually configured, not triggered by BPDU Guard or PortFast.

D

Forcing Rapid Spanning Tree Protocol is not a function of PortFast or BPDU Guard; they are separate STP optimizations.

When would these options actually be correct?

B

In a different question, if the context were about enhancing wireless network performance through specific configurations on access points, option B could be correct if it stated that a certain configuration increases wireless coverage for clients connected to that access point.

C

In a different exam question asking about the benefits of VLAN routing configurations, if the question specified a scenario where multiple VLANs are being routed and asked how to optimize routing efficiency, option C could be correct as it relates to summarizing routes to reduce routing table size.

D

In a different question asking about security measures for managing remote access to network devices, option D could be correct if the question specifies that traffic on a certain port must be secured, thus enforcing SSH over Telnet for secure communications.

Why candidates pick the wrong answer

B

Students might confuse 'PortFast' with 'fast' connectivity improvements, incorrectly assuming it could enhance wireless performance. However, PortFast only affects STP convergence for wired ports.

C

The term 'summarizes' might be misinterpreted as 'summarizes' in the context of STP (e.g., summarizing BPDU information), but STP does not summarize VLAN routes. This distractor exploits confusion between Layer 2 and Layer 3 concepts.

D

Students might associate 'protection' with security features like SSH, but BPDU guard protects against STP topology issues, not management access. The word 'guard' can be misleadingly linked to security protocols.

130
Drag & Dropmedium

Drag and drop the following steps into the correct order to plan, configure, and apply an extended ACL that permits only HTTP traffic from the 192.168.1.0/24 network to the server 10.0.0.10, applied inbound on interface GigabitEthernet0/1.

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

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

Why this order

After entering config mode, create the ACL to allow HTTP from the specified network to the server. Apply it inbound on the correct interface. Then exit and verify.

Exam trap

A common trap is applying the ACL to an interface before creating it, or verifying before applying. Remember: create first, then apply, then verify. Also, ensure the ACL is applied in the correct direction (inbound) on the correct interface.

Why candidates pick the wrong answer

B

Candidates might think they can apply the ACL first and then define it, but the router will reject the application if the ACL does not exist.

C

Candidates might think they can enter interface config mode early and apply the ACL later, but the application command requires the ACL to already exist.

D

Candidates might think they need to verify the ACL syntax before applying it, but the correct workflow is to apply first, then verify both the ACL and its interface binding.

131
Multi-Selectmedium

Which four of the following are best practices for securing network services and devices? (Choose four.)

Select 4 answers
.Disable unused ports and services on routers and switches.
.Use Telnet for remote management because it is simpler to configure than SSH.
.Implement role-based access control (RBAC) to limit user privileges.
.Place all network devices on the same VLAN to simplify security policy enforcement.
.Enable logging and monitor logs for suspicious activity.
.Keep device firmware and operating systems up to date with security patches.

Why this answer

Disabling unused ports, implementing role-based access control (RBAC), enabling logging, and keeping firmware updated are all critical security best practices: they reduce the attack surface, limit user permissions, detect threats, and patch known vulnerabilities. Using Telnet is insecure because it transmits data in cleartext, unlike SSH. Placing all devices on the same VLAN undermines network segmentation and allows lateral movement by attackers.

Exam trap

Cisco often tests the misconception that Telnet is acceptable for management in a secure environment because it is easier to configure, but the exam expects you to recognize that SSH is the mandatory secure alternative.

132
Matchingmedium

Drag and drop the cable/transceiver types on the left to the correct descriptions on the right.

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

Concepts
Matches

Supports 1000BASE-T up to 100 meters with auto-negotiation for speed/duplex

Supports up to 5 km (or more with longer optics) using 1310 nm laser

Supports up to 300 meters over OM3 fiber at 10 Gbps

Single-mode transceiver for 10 Gbps links up to 10 km

1000BASE-T copper SFP transceiver for up to 100 meters on CAT5e/CAT6

Why these pairings

Cat5e supports up to 1 Gbps at 100 MHz, standard for 1000BASE-T over 100 meters. Cat6 supports up to 10 Gbps at 250 MHz but is limited to 55 meters for 10GBASE-T. Cat6a supports 10 Gbps at 500 MHz over full 100 meters.

Single-mode fiber uses laser light for long distances, typically beyond 1 km.

Exam trap

A common mistake is confusing Cat6 and Cat6a: Cat6 only supports 10 Gbps up to 55 meters, while Cat6a supports it over the full 100 meters. Also, single-mode fiber is often misidentified as using LED light (it uses laser), and multimode uses LED or VCSEL.

133
MCQhard

A subnet must support at least 126 usable IPv4 host addresses. Which prefix is the longest that meets the requirement?

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

This is correct because /25 provides 126 usable host addresses.

Why this answer

A /25 is the smallest valid answer. In practical terms, a /25 provides 128 total addresses. After subtracting the network and broadcast addresses, 126 usable hosts remain. A /26 would be too small because it supports only 62 usable hosts.

This is a typical minimum-prefix question. The goal is to choose the smallest subnet that satisfies the host requirement without wasting more address space than necessary.

Exam trap

Be careful not to confuse total addresses with usable addresses. Always subtract the network and broadcast addresses when calculating usable hosts.

Why the other options are wrong

A

A /26 prefix provides 2^(32-26) - 2 = 64 - 2 = 62 usable host addresses, which is insufficient for the requirement of at least 126 usable hosts.

C

A /24 prefix provides 2^(32-24) - 2 = 256 - 2 = 254 usable host addresses, which is more than required. While it works, it is not the smallest prefix that meets the requirement, wasting IP address space.

D

A /27 prefix provides 2^(32-27) - 2 = 32 - 2 = 30 usable host addresses, far below the required 126. This is insufficient for the subnet.

When would these options actually be correct?

A

In a different question, if the requirement was for a subnet that supports at least 62 usable addresses, then /26 would be the correct answer, as it meets that specific need.

C

If the question specified a need for at least 254 usable addresses, then /24 would be the correct answer, as it provides the required number of usable addresses while being the smallest prefix that meets that specific need.

D

If the question specified a requirement for a smaller network, such as needing to support 30 usable addresses for a small office, then /27 would be the correct answer, as it would meet that specific need.

Why candidates pick the wrong answer

A

Students often confuse the number of usable hosts with total addresses, forgetting to subtract the network and broadcast addresses, or they may misremember the host formula.

C

Students may default to /24 as a common subnet size without calculating the exact requirement, or they may think larger is always better without considering efficiency.

D

Students might mistakenly think /27 provides more hosts than it does, or they may confuse the prefix length with the number of hosts, e.g., thinking /27 gives 27 usable addresses.

134
Multi-Selectmedium

Which TWO statements about HSRP active/standby election, priority, and preempt are true?

Select 2 answers
A.The router with the highest priority becomes the active router.
B.If priorities are equal, the router with the highest MAC address becomes active.
C.Preemption is enabled by default on all HSRP routers.
D.The 'show standby' command can be used to verify the active and standby routers, priority, and preemption status.
E.The router with the lowest priority becomes the standby router.
AnswersA, D

HSRP uses a priority value from 0 to 255, with a default of 100, to determine the active router. The router with the highest priority wins the election and becomes the active virtual router, forwarding traffic for the standby group. For example, a router with priority 150 will be chosen over a router with priority 100, regardless of which router came up first, assuming preemption is enabled.

Why this answer

In HSRP, the router with the highest priority (default 100, range 0-255) becomes the active router (A). If priorities are equal, the router with the highest IP address on the subnet wins, not the highest MAC address (B). Preemption is disabled by default; 'standby preempt' must be configured for a higher-priority router to take over (C).

The 'show standby' command displays active/standby router roles, priority values, and preemption status, verifying D. The standby router is the one with the second-highest priority, not the lowest (E).

Exam trap

Cisco often tests the misconception that HSRP uses MAC address as a tiebreaker (it uses IP address) and that preemption is enabled by default (it is not).

Why the other options are wrong

B

HSRP tie-breaking uses the highest IP address on the HSRP interface, not the MAC address. The MAC address is used for virtual MAC assignment but does not influence election.

C

Preemption is disabled by default in HSRP; it must be explicitly configured with the 'standby preempt' command. Without preemption, a higher priority router will not take over active role from a lower priority router that is already active.

E

The standby router is the router with the second-highest priority, not the lowest. The lowest priority router would only become standby if all other routers fail, as it is the least preferred.

Why candidates pick the wrong answer

B

Students may confuse HSRP with other protocols like VRRP or GLBP, or mistakenly think that MAC address is used for election since it is a unique identifier.

C

Many students assume preemption is enabled by default because it is a common feature in other redundancy protocols or because they think the highest priority router should always be active.

E

Students may incorrectly think that the standby router is the one with the lowest priority because they associate 'standby' with a backup role that is less important, but HSRP elects the standby as the next best candidate.

135
MCQhard

A JSON response from a controller contains a list of interfaces, each with its own name and status fields. Which JSON structure is most likely used to represent that list?

A.An array of objects
B.A single scalar string only
C.A wildcard mask
D.A route metric table
AnswerA

An array of objects is the correct JSON structure for a list of interfaces. In JSON, an array (delimited by square brackets) holds an ordered collection of values, and each interface is best modeled as an object with key-value pairs for attributes like name, IP, and status. This allows the controller to return multiple interfaces in a single response, where each object is independently parseable and extensible.

Why this answer

The most likely structure is an array containing objects. In practical terms, an array is the natural way to represent a list of similar items, and each item can then be an object with named fields such as name and status. This is a very common pattern in API payloads.

The question is testing structure recognition, not programming syntax mastery.

Exam trap

A frequent exam trap is mistaking the JSON structure for unrelated networking concepts such as wildcard masks or route metric tables. Candidates might incorrectly select these options because they recognize the terms from routing or ACL topics, but these are not JSON data structures. Another trap is assuming a single scalar string can represent multiple interfaces, which ignores the need for multiple fields per interface.

Recognizing that an array of objects is the natural and standard way to represent a list of interfaces with multiple attributes helps avoid these pitfalls.

Why the other options are wrong

B

Incorrect because a single scalar string cannot represent multiple interfaces with distinct attributes, making it unsuitable for detailed interface lists.

C

Incorrect because wildcard masks are related to ACL configurations and do not represent JSON data structures for interface lists.

D

Incorrect because a route metric table is a routing concept and not a JSON data structure used to represent interface information.

When would these options actually be correct?

B

If the exam question asked for a JSON representation of a single interface's status, where only the name of the interface is needed as a string, then a single scalar string would be the correct answer.

C

If the question asked about configuring access control lists (ACLs) in a networking context, where a wildcard mask is needed to define which IP addresses are permitted or denied access, then this option would be correct.

D

If the exam question asked about the representation of routing information in a network configuration context, where a route metric table is used to display metrics for various routes, this option would be correct.

Why candidates pick the wrong answer

B

Students might think a simple string could represent a list if they are unfamiliar with JSON data types, or they might confuse it with a single interface response where only one interface is returned.

C

Students might associate 'wildcard' with flexibility or pattern matching, and incorrectly think it could represent a list of varying interfaces. The term 'mask' might also be confused with data representation.

D

Students might think 'table' implies a structured list, and 'route metric' sounds technical, leading them to believe it could be a valid JSON representation for interface data.

136
Drag & Dropmedium

Drag and drop the following steps into the correct order to select and implement a network automation solution using the appropriate tool based on the use cases and differences between Puppet, Chef, Ansible, and Python.

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

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

Why this order

The correct order follows a systematic approach: First, define the specific network automation goal to understand the scope and constraints. Next, evaluate whether a persistent, agent-based configuration enforcement approach (Puppet/Chef) or an agentless, orchestration-driven approach (Ansible) is required. Then consider the flexibility of a scripting language like Python for custom or one-off tasks.

After selecting the tool, write the automation logic (playbook, manifest, or script). Test it in a controlled environment to avoid production issues, and finally deploy and verify the automation to ensure it meets the intended outcome.

137
MCQhard

Why is an extended ACL usually placed close to the source of the traffic being filtered?

A.Because standard ACLs cannot be applied near the destination
B.To stop unwanted traffic earlier and conserve bandwidth
C.To make NAT translation easier on inside interfaces
D.Because extended ACLs only work inbound on access interfaces
AnswerB

Extended ACLs filter based on source, destination, protocol, and port, so placing them close to the source prevents unwanted packets from traversing the network. This conserves bandwidth on intermediate links and reduces CPU load on downstream routers. Filtering earlier is the core reason for this design guidance, as traffic is dropped before it costs resources.

Why this answer

Extended ACLs can filter by source, destination, and protocol. Placing them near the source drops unwanted traffic before it crosses more of the network.

Exam trap

Remember that ACLs are processed by network devices, not end devices, and their placement affects traffic flow, not the ACL's complexity or dynamic capabilities.

Why the other options are wrong

A

Standard ACLs can be applied near the destination or source, but the placement guidance for extended ACLs is based on their ability to filter on source and destination IP addresses and ports, not on limitations of standard ACLs. The reason for placing extended ACLs near the source is to filter traffic early, not because standard ACLs cannot be applied near the destination.

C

NAT translation is typically performed on routers or firewalls at network boundaries, and ACL placement for filtering is independent of NAT configuration. Placing an extended ACL near the source does not directly affect NAT translation; NAT uses its own rules and is not a factor in ACL placement decisions.

D

Extended ACLs can be applied inbound or outbound on any interface, not just inbound on access interfaces. The statement is factually incorrect; extended ACLs are versatile and can be placed in various locations depending on the filtering requirements.

When would these options actually be correct?

A

In a different question asking about the limitations of standard ACLs, one might state that they cannot be applied effectively near the destination for complex filtering scenarios, thus making this option correct. For example, a question could ask why standard ACLs are not suitable for certain destination-based filtering tasks.

C

In a scenario where the exam question asks about optimizing NAT configurations in a network, a candidate might be asked why certain ACLs should be placed on NAT devices. In this context, the option could be correct if the question implies that specific ACL placements can facilitate NAT operations.

D

In a question asking about the limitations of extended ACLs, such as 'What is a restriction of extended ACLs on access interfaces?', option D would be correct, as it highlights that extended ACLs are indeed applied inbound on access interfaces.

Why candidates pick the wrong answer

A

Students may confuse the placement rules for standard and extended ACLs, thinking that extended ACLs are placed near the source because standard ACLs are limited to destination-based filtering. However, standard ACLs are typically placed near the destination, but that is not the reason for extended ACL placement.

C

Students might associate ACLs with NAT because both are often configured on border devices, leading to the misconception that ACL placement is related to NAT. However, the primary reason for placing extended ACLs near the source is to filter traffic early, not to assist NAT.

D

Students may think that extended ACLs are only effective when applied inbound because they filter traffic before it enters the router, but this is a misunderstanding. Extended ACLs can filter traffic in both directions, and placement near the source is a design choice, not a technical limitation.

138
MCQhard

R1 is an IPv6-only branch router. The administrator wants all unknown IPv6 destinations to be sent to the upstream router at 2001:db8:ff::1. Which command best achieves that goal?

A.ipv6 route ::/0 2001:db8:ff::1
B.ip route 0.0.0.0 0.0.0.0 2001:db8:ff::1
C.ipv6 route 2001:db8:ff::/64 ::1
D.ipv6 default-gateway 2001:db8:ff::1
AnswerA

This is the correct IPv6 default static route syntax: 'ipv6 route ::/0' matches every IPv6 prefix, and the next hop is the upstream router's global unicast address. The router installs this as a candidate default route, permitting traffic for any destination to be forwarded toward the ISP router when no more specific route matches.

Why this answer

The correct configuration is an IPv6 default static route pointing to the upstream next hop. In practical terms, this is the IPv6 version of a route of last resort. The router does not need specific entries for every remote IPv6 network if all unknown traffic should go to the upstream device.

The key distinction is that IPv6 static routing uses IPv6 syntax and the double-colon default prefix representation. This is a foundational branch-routing concept for IPv6 deployments.

Exam trap

A common exam trap is confusing IPv4 and IPv6 routing commands by attempting to use the ip route command with an IPv6 next-hop address. This is invalid because ip route is strictly for IPv4 static routes. Another trap is using ipv6 default-gateway, which is not a valid static routing command and does not install a route in the routing table.

These mistakes cause the router to drop unknown IPv6 traffic since no default route is installed. Candidates must recognize that IPv6 static routes require the ipv6 route command with the ::/0 prefix for default routing.

Why the other options are wrong

B

This option is incorrect because it uses the IPv4 static route syntax (ip route) with an IPv6 next-hop address, which is invalid and will not configure a proper IPv6 route.

C

This command creates a specific static route to the 2001:db8:ff::/64 prefix with a next hop of ::1, which is not a default route and does not forward all unknown IPv6 traffic.

D

The ipv6 default-gateway command is not used for static routing configuration and does not install a default route in the routing table, making it ineffective for forwarding unknown IPv6 destinations.

When would these options actually be correct?

B

In a scenario where the question specifies an IPv4 router needing to route all unknown IPv4 destinations to a specific IPv6 address, this command could be correct if the router supports dual-stack configurations and can handle IPv4 routes to IPv6 addresses.

C

If the question specified that the goal was to route traffic specifically for the subnet 2001:db8:ff::/64 to a local interface or a different router configured at ::1, then option C would be correct as it would direct traffic for that specific subnet appropriately.

D

If the question were about configuring a default gateway for an IPv4 router that also supports IPv6, and the goal was to set a default gateway for IPv4 traffic, then 'ipv6 default-gateway 2001:db8:ff::1' could be correct if the router had dual-stack capabilities.

Why candidates pick the wrong answer

B

Students may confuse the IPv4 default route syntax with IPv6, or think that the 'ip route' command can accept an IPv6 next hop. The similarity in concept (default route) makes this option tempting.

C

A student might think that specifying a route to the upstream network is sufficient, or confuse the unspecified address ::1 with a valid next-hop address. The presence of 'ipv6 route' and an IPv6 address may seem plausible.

D

The term 'default-gateway' is commonly used in host networking, and students may mistakenly apply it to routers. The IPv6 prefix and next-hop address look correct, making it tempting for those unfamiliar with router configuration.

139
Multi-Selectmedium

Which two statements accurately describe why structured telemetry and APIs improve operational tooling?

Select 2 answers
A.They make it easier for software to process known fields consistently.
B.They support scalable automation, dashboards, and assurance workflows.
C.They eliminate the need for secure transport or access control.
D.They force all devices to stop supporting CLI access.
E.They are used only on wireless LAN controllers.
AnswersA, B

Structured telemetry adheres to predefined data models, such as YANG, which specify the exact type, range, and semantic meaning of every field. Software can therefore parse the payload using standard libraries, validate it against the schema, and reliably access specific metrics without guessing or using brittle text parsing. This consistency allows programs to treat network state data as a known contract, dramatically reducing integration bugs and enabling deterministic automation logic.

Why this answer

Structured telemetry and APIs improve tooling because they reduce ambiguity and make automation more reliable. In practical terms, software can collect and compare known fields, counters, and states without brittle text parsing. That supports dashboards, reporting, and automated checks much better than relying only on human-oriented command output.

This is a broad operations-and-automation value question rather than a protocol memorization item.

Exam trap

A frequent exam trap is believing that structured telemetry and APIs remove the need for secure transport or access control. Candidates might think that because data is structured and machine-readable, security is inherently handled, which is incorrect. Another trap is assuming that these technologies force the removal of CLI access, but Cisco devices maintain CLI alongside APIs to support diverse operational needs.

Misunderstanding these points can lead to incorrect answers about the scope and impact of automation technologies in Cisco environments.

Why the other options are wrong

C

This option is incorrect because structured telemetry and APIs do not eliminate the need for secure transport or access control; security remains a fundamental requirement in network operations.

D

This option is incorrect since structured telemetry and APIs do not force devices to stop supporting CLI access; Cisco devices commonly support both CLI and programmable interfaces simultaneously.

E

This option is incorrect because structured telemetry and APIs are broadly applicable across many Cisco network devices and are not limited to wireless LAN controllers.

When would these options actually be correct?

C

In a question focused on a theoretical scenario where structured telemetry is implemented in a completely isolated network environment, one might argue that secure transport or access control is unnecessary due to the lack of external threats, making this option plausible.

D

In a different question asking about the benefits of a specific network architecture that mandates a secure environment, one might argue that all devices must transition to a model that does not support CLI access, thus making this option correct in that context.

E

If the exam question specifically asked about the use of structured telemetry and APIs in the context of wireless LAN controllers, emphasizing their exclusive application in that environment, then this option would be correct.

Why candidates pick the wrong answer

C

A test-taker might think that structured data inherently prevents tampering or that APIs automatically enforce security, but this is false. Security must be explicitly configured, and structured telemetry does not replace it.

D

Students may believe that automation and APIs are meant to completely replace CLI, but in practice, CLI is often retained for flexibility. The statement overstates the impact of structured telemetry on existing access methods.

E

Students might associate structured telemetry with Cisco's wireless solutions (e.g., DNA Center for wireless) or confuse it with vendor-specific APIs that were initially prominent in wireless. However, these technologies are universal and not exclusive to any platform.

140
PBQhard

You are connected to R1 via console. R1 must forward traffic to the 203.0.113.0/24 and 2001:db8:1::/48 networks through R2 (10.0.0.2/30, 2001:db8:ff::2/64). The primary path must use a next-hop of 10.0.0.2 for IPv4 and 2001:db8:ff::2 for IPv6. Additionally, configure a floating static default route for IPv4 that uses R3 (192.0.2.2/30) as a backup only when the primary path fails. The current configuration has errors: the IPv4 static route points to a wrong next-hop (10.0.0.5) and the primary default route is missing, causing the floating route (AD 100) to become active instead of serving as a backup. Fix these issues so that both primary and backup routes work correctly.

Network Topology
G0/010.0.0.1/30G0/010.0.0.2/30linkG0/1192.0.2.1/30G0/0192.0.2.2/30linkR1R2R3

Hints

  • Check the directly connected subnet on G0/0 — what IPs are valid?
  • A floating static route must have a higher AD than the primary route.
  • The primary default route is missing — add it with a lower AD.
A.Change the next-hop of the static route to 203.0.113.0/24 from 10.0.0.5 to 10.0.0.2, and add a default route 0.0.0.0/0 via 10.0.0.2 with AD 1. Keep the floating default route 0.0.0.0/0 via 192.0.2.2 with AD 100.
B.Change the next-hop of the static route to 203.0.113.0/24 from 10.0.0.5 to 10.0.0.2, and change the administrative distance of the floating default route from 100 to 1 so it becomes the primary default route.
C.Change the next-hop of the static route to 203.0.113.0/24 from 10.0.0.5 to 10.0.0.2, and change the administrative distance of the floating default route from 100 to 255 so it is never used.
D.Change the next-hop of the static route to 203.0.113.0/24 from 10.0.0.5 to 10.0.0.2, and remove the floating default route because it is unnecessary.
AnswerA
solution
! R1
no ip route 203.0.113.0 255.255.255.0 10.0.0.5
ip route 203.0.113.0 255.255.255.0 10.0.0.2
ip route 0.0.0.0 0.0.0.0 10.0.0.2

Why this answer

The IPv4 static route to 203.0.113.0/24 used a next-hop of 10.0.0.5, which is not a directly connected interface (R1's G0/0 is 10.0.0.1/30, so only .2 is valid). This caused a recursive lookup failure. The floating static default route had AD 100, but a floating route must have an AD higher than the primary route's AD (typically 1) so it is only used when the primary fails; setting AD 100 is correct for backup, but the primary default route was missing.

The fix: change the next-hop for 203.0.113.0/24 to 10.0.0.2, and add a primary default route with AD 1 via 10.0.0.2. The floating route's AD of 100 is fine as backup. IPv6 route was correct.

Exam trap

Watch out for two common traps: (1) Static routes must use a directly connected next-hop; using an IP not on a directly connected subnet causes recursive lookup failure. (2) Floating static routes require a higher AD than the primary route; if the primary route is missing or has a higher AD, the floating route may become active prematurely or not at all.

Why the other options are wrong

B

The floating route must have a higher AD than the primary route to act as a backup; setting it to 1 would make it preferred over the primary default route, violating the requirement.

C

AD 255 is reserved for routes that are not to be installed; a floating route needs an AD higher than the primary but less than 255 to be usable as backup.

D

The floating route is required by the scenario; removing it would eliminate the backup path, which is not the intended fix.

Why candidates pick the wrong answer

B

Candidates might think that lowering the AD makes the route more reliable, but they overlook that the floating route is meant to be a backup, so it must have a higher AD.

C

Candidates may confuse the concept of floating static routes with administrative distance values, thinking a very high AD ensures it is only used as a last resort, but AD 255 disables the route entirely.

D

Candidates might think that since the primary route is fixed, no backup is needed, but the question clearly requires a backup floating route.

141
MCQhard

What prefix length corresponds to the subnet mask 255.255.255.248?

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

This is correct because 255.255.255.248 equals 29 network bits.

Why this answer

The mask 255.255.255.248 corresponds to /29. In practical terms, the first three octets provide 24 network bits, and the value 248 in the last octet is 11111000 in binary, which contributes 5 more network bits. That gives a total prefix length of 29.

This is a standard dotted-decimal to prefix conversion question. It matters because subnetting often requires you to move comfortably between both forms.

Exam trap

Be careful not to confuse the binary values of subnet masks. Ensure you understand how to convert between dotted-decimal and CIDR notation.

Why the other options are wrong

A

The subnet mask 255.255.255.240 corresponds to a /28 prefix length, not /29. This mask has 28 network bits, leaving 4 host bits, which yields 14 usable hosts per subnet.

C

The subnet mask 255.255.255.252 corresponds to a /30 prefix length, not /29. A /30 mask has 30 network bits and only 2 host bits, providing 2 usable addresses, typically used for point-to-point links.

D

The subnet mask 255.255.255.224 corresponds to a /27 prefix length, not /29. A /27 mask has 27 network bits and 5 host bits, providing 30 usable hosts per subnet.

When would these options actually be correct?

A

In a different question, if asked what prefix length corresponds to a subnet mask of 255.255.255.240, option A would be correct, as that subnet mask corresponds to a /28 prefix length, allowing for 16 IP addresses.

C

In a different question, if asked for the prefix length of a subnet mask of 255.255.255.252, which corresponds to /30, option C would be correct, as it would accurately reflect the number of usable addresses in that subnet.

D

In a different question asking for the prefix length of a subnet mask of 255.255.255.224, option D would be correct, as that subnet mask corresponds to a /27 prefix length, allowing for 30 usable IP addresses.

Why candidates pick the wrong answer

A

Students often confuse the prefix lengths for common subnet masks. Since /28 is close to /29, they might mistakenly think that 255.255.255.248 is /28 without calculating the binary representation.

C

Both /29 and /30 are used for small subnets, and students may confuse the number of host bits. Since /30 is a common mask for WAN links, they might incorrectly assume 255.255.255.248 is /30.

D

Students may misremember the binary pattern for /27 and /29. Since both masks have the last octet as a non-standard value, they might incorrectly associate 248 with /27 without proper calculation.

142
MCQmedium

What is a key difference between SNMPv3 and earlier SNMP versions?

A.SNMPv3 supports IPv4 only
B.SNMPv3 adds authentication and encryption features
C.SNMPv3 cannot be used for monitoring interface counters
D.SNMPv3 replaces syslog completely
AnswerB

SNMPv3's defining improvement over SNMPv1/v2c is its User-based Security Model (USM), providing message authentication via HMAC-MD5 or HMAC-SHA and encryption using DES or AES. Whereas earlier versions pass community strings in cleartext and offer no true authentication, SNMPv3 validates each message's integrity and origin and protects the payload from eavesdropping. This strong security is precisely why SNMPv3 is considered the primary differentiator for secure network management.

Why this answer

SNMPv3 improves security by adding authentication, message integrity, and privacy features. Earlier versions, especially SNMPv1 and v2c, rely on community strings and provide much weaker protection.

Exam trap

A common exam trap is to mistakenly believe that SNMPv3 restricts network monitoring capabilities or IP protocol support. Some candidates incorrectly think SNMPv3 supports only IPv4 or that it replaces syslog entirely. These misconceptions arise because the question emphasizes SNMPv3’s differences without clarifying what remains unchanged.

The trap is to focus on unrelated protocol features rather than the core improvement: security. Selecting options that mention monitoring limitations or protocol replacement leads to incorrect answers. Understanding that SNMPv3’s main advancement is adding authentication and encryption prevents falling into this trap.

Why the other options are wrong

A

Option A is incorrect because SNMPv3 supports both IPv4 and IPv6 networks. It is not limited to IPv4 only, so this option misrepresents SNMPv3’s capabilities.

C

Option C is incorrect since SNMPv3 continues to support monitoring functions such as interface counters. It does not remove or restrict these capabilities.

D

Option D is incorrect because SNMPv3 does not replace syslog. Both protocols coexist and serve different roles in network management and logging.

When would these options actually be correct?

A

In a different question asking about the compatibility of SNMP versions with network protocols, if it specified that SNMPv3 is limited to IPv4 in a hypothetical scenario, then this option could be considered correct.

C

If the exam question asked which SNMP version is specifically designed for a different purpose, such as 'Which version is not intended for monitoring network devices?' then option C could be correct. In that context, it would imply that SNMPv3 is not used for monitoring interface counters, which would be misleading but technically correct in a different framing.

D

If the exam question stated that SNMPv3 completely replaces all logging and monitoring functions provided by syslog, then option D would be correct. This would imply a scenario where the context is about replacing logging mechanisms with SNMPv3.

Why candidates pick the wrong answer

A

Students might think that because earlier SNMP versions were primarily used with IPv4, SNMPv3 might still be IPv4-only. However, SNMPv3 was developed after IPv6 was introduced and fully supports it.

C

A student might confuse the enhanced security features of SNMPv3 with a limitation on functionality, assuming that security might restrict monitoring. However, SNMPv3 adds security without sacrificing existing management capabilities.

D

Both SNMP and syslog are used for network management and can send notifications, which might lead a student to think they are interchangeable. However, they serve distinct roles and are not replacements.

143
MCQhard

A network engineer notices that the system clock on a Cisco IOS-XE router is incorrect, causing syslog timestamps to be unreliable. The router is configured as an NTP client to synchronize with a remote NTP server at 192.168.1.10. However, the show ntp status command indicates the clock is unsynchronized. What is the most likely cause of this issue?

A.The NTP server is using TCP instead of UDP for NTP communication.
B.The router cannot reach the NTP server due to a missing route or firewall blocking UDP port 123.
C.The NTP server has a higher stratum level than the router's local clock, so the router ignores it.
D.NTP authentication is misconfigured on the router.
AnswerB

The reach value of 0 in the 'show ntp status' output indicates that the router has not received any successful NTP responses from the configured server across the last eight polling attempts. This is typically caused by a Layer 3 routing problem preventing the router from sending packets to the server's IP address, or by a firewall/ACL dropping either the outbound request or the inbound reply because NTP uses UDP port 123. Without reachability, the router can never achieve synchronization, even if the server is running correctly and all other NTP settings match.

Why this answer

NTP operates over UDP port 123. If the router cannot reach the NTP server at 192.168.1.10 due to a missing route or a firewall blocking UDP 123, the NTP client will remain unsynchronized, as indicated by the 'show ntp status' command showing the clock as unsynchronized. This is the most common cause of NTP synchronization failure in a network.

Exam trap

Cisco often tests the misconception that NTP uses TCP or that authentication is the primary cause of synchronization failure, when in fact the most common issue is simple network reachability or firewall blocking of UDP port 123.

Why the other options are wrong

C

The NTP server having a higher stratum level than the local clock does not prevent synchronization outright; the router will still attempt to sync if the server is reachable and authenticates, so this is not the most likely cause.

Why candidates pick the wrong answer

A

Students may confuse NTP with other protocols that use TCP, such as SNMP or FTP, or may recall that some NTP implementations can use TCP for control messages, but standard NTP synchronization uses UDP.

C

A student might think that because Telnet is used for remote management, it might be needed to initiate NTP synchronization, or they may confuse NTP with other protocols that require a session.

D

Students may know that NTP authentication can cause synchronization issues if misconfigured, and might assume that any NTP problem is due to authentication, especially if they have studied NTP authentication scenarios.

144
PBQhard

You are connected to R1. Configure HSRP on R1 and R2 so that R1 is the active gateway for VLAN 100 with a virtual IP of 192.0.2.254. R1 should preempt and track its G0/1 interface to decrement priority by 20 if it goes down. Currently, both routers show active for the group, and the virtual IP is incorrectly set. Troubleshoot and fix the configuration on R1 only.

Hints

  • Check the virtual IP address in the standby configuration.
  • Ensure R1's priority is higher than R2's to become active.
  • Preempt must be configured to re-elect after a priority change.
A.Change the virtual IP to 192.0.2.254 and set priority to 110.
B.Change the virtual IP to 192.0.2.254 and remove the track command.
C.Change the virtual IP to 192.0.2.254 and configure preempt on R2.
D.Change the virtual IP to 192.0.2.254 and set priority to 100.
AnswerA
solution
! R1
interface GigabitEthernet0/0.100
standby 1 ip 192.168.100.254
standby 1 priority 110
standby 1 preempt

Why this answer

The issue is that both routers are active because the virtual IP on R1 was 192.168.100.254, which is not in the same subnet as the interface IP (192.0.2.1/24), so HSRP couldn't form a common group. Changing the virtual IP to 192.0.2.254 fixes the subnet mismatch. Additionally, setting R1's priority to 110 ensures it becomes the active router because it has preempt configured, and the higher priority overrides R2's default 100.

The track command remains correct as it reduces priority if G0/1 fails.

Exam trap

Trap: Candidates may focus on the track command or preempt, but the primary issue is the virtual IP mismatch and default priority. Always verify the virtual IP belongs to the same subnet as the interface and adjust priority to ensure the desired active router.

Why the other options are wrong

B

Removing the track command would prevent R1 from decrementing priority when G0/1 fails, violating the requirement to track the interface.

C

Configuring preempt on R2 might allow it to take over, but the task only asks to fix R1; the primary issue is the virtual IP mismatch on R1.

D

Setting priority to 100 (the default) without preempt? Actually, R1 already has preempt, but with equal priority, the highest IP wins, which might be R2, so R1 might not become active. Increasing priority to 110 is required.

Why candidates pick the wrong answer

B

Candidates might think the track command is causing both routers to be active, but the real issue is the virtual IP mismatch and priority.

C

Candidates might think both routers need preempt to avoid both being active, but the problem is that R1's virtual IP is wrong and its priority is too low.

D

Candidates might assume that fixing the virtual IP alone is sufficient, but priority must be increased to force R1 to be active.

145
MCQhard

A network engineer is configuring an EtherChannel between two switches. After applying the configuration, the port-channel fails to form. What is the most likely reason?

A.The member links use different switchport modes, so the channel cannot form correctly.
B.LACP requires both interfaces to use different channel-group numbers.
C.The interfaces must both be configured for PPP.
D.The bundle fails because BGP is not enabled on the switch.
AnswerA

For an EtherChannel to form, all member interfaces must share an identical configuration, including speed, duplex, VLAN membership, and critically the switchport mode. If one interface is configured as an access port while another is set to trunk, the channel negotiation sees a mismatch in the allowed VLAN set and tagging behavior, preventing the bundle from coming up. This is a common cause of an EtherChannel failing to form even when LACP is enabled on both sides, because the compatibility checks are strict.

Why this answer

The port-channel is not forming because the two member interfaces are not configured consistently. In practical terms, EtherChannel requires important characteristics to align across candidate member links. Here, one interface is a trunk and the other is configured as an access port, so the channel cannot be built cleanly.

This is a classic EtherChannel consistency problem. The protocol alone is not enough if the member-link settings disagree.

Exam trap

Always verify interface configurations for consistency when troubleshooting EtherChannel issues.

Why the other options are wrong

B

LACP requires that all member interfaces in the same port-channel use the same channel-group number. Using different numbers would place them in separate bundles, preventing the intended aggregation.

C

PPP is a Layer 2 encapsulation used on serial links, not on Ethernet switch ports. EtherChannel on Cisco switches uses Ethernet frames, and PPP is irrelevant to the configuration of port-channels.

D

BGP is a routing protocol that operates at Layer 3 and is not required for EtherChannel formation. EtherChannel is a Layer 2 technology that bundles physical links into a single logical link, independent of any routing protocol.

When would these options actually be correct?

B

In a different scenario, if a question asked about a misconfiguration where two interfaces were incorrectly assigned to different channel-group numbers while trying to form a port-channel, this option would be correct. The question would need to specify that the interfaces are intended to be aggregated but are configured incorrectly.

C

In a different scenario where the question specifies that the interfaces are intended to connect over a WAN link using PPP and are part of a port-channel, then this option could be correct. For instance, if the question states that both interfaces must support PPP for proper encapsulation, this would validate the claim.

D

In a different question setup, if the context involved a scenario where BGP was explicitly required for establishing a specific type of connection or routing policy between switches, then this option could be correct. For example, if the question asked about the prerequisites for a BGP session over a port-channel, this option might apply.

Why candidates pick the wrong answer

B

Students may confuse the requirement for consistent channel-group numbers with the idea that different numbers are needed for load balancing or protocol operation, but in reality, all members of a single EtherChannel must share the same channel-group number.

C

A student might associate PPP with link aggregation protocols like Multilink PPP (MLPPP) used on WAN interfaces, and incorrectly assume it applies to Ethernet EtherChannel.

D

Students may think that because BGP is used in complex network designs, it might be a prerequisite for advanced features like EtherChannel, but BGP has no role in the link aggregation process.

146
MCQhard

A network administrator notices that the NTP server on Router R1 is not synchronizing with the upstream NTP server at 192.0.2.1. The router is configured as an NTP client, but show ntp status indicates the clock is unsynchronized and the stratum is 16. There is no firewall between R1 and 192.0.2.1. What is the most likely cause of this issue?

A.The NTP server at 192.0.2.1 is not configured as a peer on R1.
B.Router R1 does not have a route to reach 192.0.2.1.
C.The NTP server at 192.0.2.1 is not using NTP version 4.
D.The NTP server at 192.0.2.1 has a firewall blocking NTP traffic.
AnswerB

For NTP to function, R1 must have a valid IP route to 192.0.2.1 in its routing table. Without that route, outgoing NTP packets are discarded with a 'no route to host' condition, and no replies ever arrive, leaving the server at stratum 16 with a reachability of 0. The `show ntp status` command would report the clock unsynchronized, and `show ntp associations` would show the peer as configured but unreachable.

Why this answer

The most likely cause is that Router R1 lacks a route to the upstream NTP server at 192.0.2.1. Without a valid IP route, NTP packets cannot reach the server, so the client remains unsynchronized with stratum 16. The other options are incorrect: A is not required for client operation, C is irrelevant because NTP version negotiation works across versions, and D is ruled out by the absence of a firewall.

Exam trap

Cisco often tests the misconception that NTP configuration alone ensures synchronization, but the trap here is that candidates overlook the prerequisite of IP reachability, assuming the ntp server command handles routing automatically.

Why the other options are wrong

A

Configuring the server as a peer is unnecessary for an NTP client; the client uses the ntp server command.

C

NTP version incompatibility does not prevent synchronization because devices negotiate versions automatically.

D

The problem states there is no firewall, so this cannot be the cause.

Why candidates pick the wrong answer

A

Students may confuse the terms 'peer' and 'server' in NTP configuration. They might think that a peer relationship is required for synchronization, but in this scenario, the router is configured as an NTP client, and the server is correctly specified.

C

Students may recall that NTP version mismatches can cause synchronization failures. However, in this scenario, the reach value of 0 points to a connectivity issue rather than a version mismatch.

D

Firewalls are common culprits for blocking NTP traffic in enterprise networks. However, the stratum 16 on the server indicates it is not synchronized to a reliable time source, which is a different issue from firewall blocking.

147
MCQmedium

In AAA, what does the second A stand for?

A.Application
B.Accounting
C.Authorization
D.Auditing
AnswerC

In the AAA security model, the second 'A' stands for Authorization, which is the process of determining what actions or resources an authenticated user is permitted to access. After a user proves their identity via authentication, authorization enforces policies such as permit/deny rules, often based on roles or attributes, and is a distinct step from authentication and accounting. For example, in Cisco ISE, authorization may assign a VLAN or ACL after authentication succeeds.

Why this answer

AAA stands for Authentication, Authorization, and Accounting. Authorization determines what an authenticated user is allowed to do.

Exam trap

A frequent exam trap is mistaking the second A in AAA for Accounting or Auditing. Many candidates confuse Authorization with Accounting because both start with 'A' and relate to user management. However, Authorization specifically controls what an authenticated user is allowed to do, while Accounting tracks user activities for logging and auditing purposes.

Selecting Accounting as the second A overlooks the sequential process where permissions are granted immediately after authentication, before any activity is logged. This confusion can lead to incorrect answers and misunderstanding of Cisco AAA implementation.

Why the other options are wrong

A

Application is not part of the AAA acronym and does not relate to the core security functions of Authentication, Authorization, or Accounting, making it an incorrect choice.

B

Accounting is the third A in AAA and focuses on logging user activities, not the second A which controls user permissions after authentication.

D

Auditing, while related to security, is not part of the AAA acronym and does not represent the second A in the AAA framework.

When would these options actually be correct?

A

If the exam question were to ask about the components of a software architecture model or a specific application framework, where the focus is on the roles of different components, 'Application' could be a correct answer in that context.

B

If the exam question asked about the components of a billing or usage tracking system in network management, where 'Accounting' refers to the process of recording user activities and resource usage, then option B would be the correct answer.

D

If the question were framed as 'Which of the following is a component of security monitoring that involves reviewing user activities and access logs?', then 'Auditing' would be the correct answer, as it directly pertains to the process of examining and verifying user actions.

Why candidates pick the wrong answer

A

The word 'Application' might be tempting because it starts with 'A' and is a common term in networking (e.g., application layer). However, it has no place in the AAA model.

B

Students often memorize the three A's but may forget the order. Since Accounting is a well-known term in AAA, it is easy to mistakenly place it as the second A instead of the third.

D

Students might confuse 'Auditing' with 'Accounting' because both involve logging and monitoring user activities. The similarity in sound and function can lead to the mistaken belief that Auditing is the second A.

148
MCQhard

A host is configured with IP address 172.16.100.222/27. Which address is the broadcast address for its subnet?

A.172.16.100.191
B.172.16.100.223
C.172.16.100.224
D.172.16.100.255
AnswerB

The /27 subnet mask indicates 27 network bits, leaving 5 host bits. This creates subnet blocks of 32 addresses. For the host 172.16.100.222, its subnet begins at 172.16.100.192. The broadcast address is the final address in this subnet range, immediately preceding the next network address (172.16.100.224). Therefore, 172.16.100.223 correctly serves as the broadcast address for the subnet defined by the host's /27 configuration.

Why this answer

A /27 uses address blocks of 32. In practical terms, the fourth-octet ranges are 0–31, 32–63, 64–95, 96–127, 128–159, 160–191, 192–223, and 224–255. Since 222 falls inside the 192–223 block, the broadcast address is the last address in that block, which is 172.16.100.223.

This is a classic subnet-boundary question because it tests whether you can place a host in the correct block and then identify the final address in that block as the broadcast.

Exam trap

Avoid assuming the broadcast address is always .255 or miscalculating subnet ranges.

Why the other options are wrong

A

172.16.100.191 is the broadcast address of the previous /27 subnet (172.16.100.160/27), not the subnet containing .222. The host .222 is in the 172.16.100.192/27 subnet, so its broadcast is .223.

C

172.16.100.224 is the network address of the next /27 subnet (172.16.100.224/27), not a broadcast address. Broadcast addresses are always the last address in a subnet, not the first.

D

172.16.100.255 is the broadcast address of the entire /24 subnet (172.16.100.0/24), not the /27 subnet containing .222. The /27 subnet has a smaller range, so its broadcast is .223.

When would these options actually be correct?

A

In a different question setup where the subnet mask was /26, the subnet would be 172.16.100.128/26, and the broadcast address would be 172.16.100.191. This would make option A the correct answer in that context.

C

In a different question setup where the subnet mask is /28 (255.255.255.240) and the host IP is 172.16.100.224, the broadcast address would be 172.16.100.239. In this case, option C would be the correct answer.

D

If the question specified a subnet mask of /24 instead of /27, then 172.16.100.255 would be the broadcast address for the subnet 172.16.100.0/24, making this option correct in that context.

Why candidates pick the wrong answer

A

Students often miscalculate subnet boundaries or confuse the broadcast of a different subnet. They might think .191 is the broadcast because it is a common broadcast address in a /27 starting at .160.

C

A student might mistakenly think that .224 is the broadcast because it is the next multiple of 32, but they forget that the broadcast is one less than the next network address.

D

Students often default to the classful broadcast address (ending in .255) without considering the subnet mask. They may assume a /27 still uses the classful broadcast.

149
PBQhard

You are connected to R1. Configure PAT (NAT overload) so that hosts on the 192.168.1.0/24 inside network can reach the Internet through the outside interface GigabitEthernet0/1 using the IP address 203.0.113.1. Additionally, configure static NAT to map internal server 192.168.1.10 to public IP 203.0.113.5. The current configuration has several errors. Identify and correct them.

Hints

  • Check the NAT direction on the interfaces.
  • Is the overload keyword present?
  • Does the ACL match the correct inside subnet?
A.Correct the NAT interface directions: G0/0 as inside, G0/1 as outside. Add 'overload' to the PAT command. Change ACL 100 to permit 192.168.1.0 0.0.0.255.
B.Change the NAT interface directions: G0/0 as outside, G0/1 as inside. Add 'overload' to the PAT command. Change ACL 100 to permit 192.168.1.0 0.0.0.255.
C.Correct the NAT interface directions: G0/0 as inside, G0/1 as outside. Add 'overload' to the PAT command. Keep ACL 100 as is because it already permits the correct subnet.
D.Change the NAT interface directions: G0/0 as outside, G0/1 as inside. Add 'overload' to the PAT command. Change ACL 100 to permit 192.168.1.0 0.0.0.255.
AnswerA
solution
! R1
configure terminal
interface GigabitEthernet0/0
ip nat inside
exit
interface GigabitEthernet0/1
ip nat outside
exit
ip nat inside source list 100 interface GigabitEthernet0/1 overload
no access-list 100
access-list 100 permit ip 192.168.1.0 0.0.0.255 any
end
write memory

Why this answer

The configuration had three issues: (1) Inside and outside interfaces were swapped — G0/0 (inside) was marked 'ip nat outside' and G0/1 (outside) was 'ip nat inside'. (2) The PAT command was missing the 'overload' keyword. (3) ACL 100 matched the wrong subnet (192.168.2.0 instead of 192.168.1.0). To fix: correct interface NAT directions, add 'overload', and update ACL to permit 192.168.1.0/24.

Exam trap

Watch for three common NAT configuration errors: interface direction misassignment, missing 'overload' keyword for PAT, and incorrect ACL subnet matching. Always verify each component separately.

Why the other options are wrong

B

The specific factual error is that the inside and outside interfaces are swapped; G0/0 is the internal interface and must be 'ip nat inside'.

C

The specific factual error is that the ACL permits the wrong subnet (192.168.2.0 instead of 192.168.1.0).

D

The specific factual error is that both the interface directions are swapped and the ACL is changed, but the interface directions must be correct for NAT to work.

Why candidates pick the wrong answer

B

Candidates might confuse which interface is inside/outside, especially if they misread the topology or think the external interface should be marked inside.

C

Candidates may overlook the ACL error if they assume the existing ACL is correct, or they may misread the subnet in the question.

D

Candidates might think that changing the ACL is the only fix and ignore the interface direction issue, or they may incorrectly assume that the outside interface should be marked inside.

150
PBQhard

You are connected to R1, a router that serves as the DNS resolver for the local network 192.168.10.0/24. Users report that they cannot resolve the hostname 'webserver.internal' to its IP address (192.168.10.50), and reverse DNS lookups for that IP return a different name. Additionally, some queries to an external domain 'example.com' time out. Diagnose and fix the DNS configuration on R1 using nslookup and dig commands where applicable, ensuring proper forward and reverse resolution for internal hosts and reachability to external DNS servers.

Hints

  • Check which DNS servers are reachable with 'ping' or 'show ip dns'.
  • The missing A record can be added as a static host entry on R1.
  • The PTR record can be overridden with an 'ip host' command for the reverse lookup zone.
A.Remove the unreachable DNS server 192.0.2.53, add an A record for webserver.internal (192.168.10.50), and correct the PTR record for 192.168.10.50 to point to webserver.internal.
B.Add an A record for webserver.internal (192.168.10.50) and correct the PTR record for 192.168.10.50 to point to webserver.internal, but leave the unreachable DNS server 192.0.2.53 in the configuration.
C.Remove the unreachable DNS server 192.0.2.53 and add an A record for webserver.internal (192.168.10.50), but do not correct the PTR record for 192.168.10.50.
D.Replace the unreachable DNS server 192.0.2.53 with a reachable one, and correct the PTR record for 192.168.10.50 to point to webserver.internal, but do not add an A record for webserver.internal.
AnswerA
solution
! R1
no ip name-server 192.0.2.53
ip name-server 8.8.8.8
ip host webserver.internal 192.168.10.50
ip host 50.10.168.192.in-addr.arpa webserver.internal

Why this answer

The DNS server 192.0.2.53 is unreachable, causing timeouts for external queries. The primary DNS server 203.0.113.53 returns NXDOMAIN for 'webserver.internal' because no A record exists for that hostname in the internal zone. Additionally, the PTR record for 192.168.10.50 incorrectly points to 'mail.internal' instead of 'webserver.internal'.

To fix, first remove the unreachable DNS server with 'no ip name-server 192.0.2.53' or replace it with a reachable one. Then, on the DNS server (or via static host entries on R1), add an A record for webserver.internal (192.168.10.50) and correct the PTR record to point to webserver.internal. Optionally, configure 'ip host webserver.internal 192.168.10.50' on R1 for local resolution.

Exam trap

Watch out for questions that present multiple DNS issues simultaneously. Candidates often focus on one problem (e.g., missing A record) and forget to check reverse DNS or external server reachability. Always verify all symptoms before concluding the fix.

Why the other options are wrong

B

The specific factual error is that an unreachable DNS server must be removed or replaced to resolve external queries; simply fixing internal records does not address the timeout issue.

C

The specific factual error is that reverse DNS must match the forward record for consistency; an incorrect PTR record is a problem even if forward resolution works.

D

The specific factual error is that forward and reverse DNS are independent; adding a PTR record does not create an A record. The A record must exist for forward queries to succeed.

Why candidates pick the wrong answer

B

Candidates might think that fixing the internal records is sufficient and overlook the external server issue, or they may assume the router will automatically skip the unreachable server.

C

Candidates might think reverse DNS is less important or that the PTR record is automatically updated when an A record is added, which is not true.

D

Candidates might assume that fixing the PTR record also creates the A record, or that reverse DNS is sufficient for name resolution, which is a common misconception.

Page 1

Page 2 of 19

Page 3