Courseiva

CCNA Network Services Security Questions

64 of 364 questions · Page 5/5 · Network Services Security topic · Answers revealed

301
MCQmedium

Exhibit: A branch router receives time from an NTP server, but the show output marks the server with a tilde instead of an asterisk. What does that mean?

A.That server is the current system clock source
B.The server is reachable but not the one currently selected for synchronization
C.NTP authentication has disabled the server permanently
D.The router is acting as an NTP master for that server
AnswerB

In Cisco IOS, 'show ntp associations' displays remote servers with symbols like '.' (rejected), 'o' (selected), '*' (system peer). If a server is reachable but not selected, it will appear without the asterisk, meaning the router can communicate with it and receive NTP packets, but it has not been chosen as the synchronization source due to stratum, offset, or reachability comparisons among multiple sources. This is a normal condition when the router has multiple NTP servers configured.

Why this answer

In Cisco NTP output, the asterisk (*) indicates the current synchronization source. The tilde (~) specifically means the server is statically configured and reachable but has not been selected for synchronization. This differs from the plus sign (+), which denotes a candidate for synchronization.

Therefore, the router is not using that server as its active time source.

Exam trap

Be careful not to confuse the tilde (~) with the asterisk (*) or other symbols that indicate different statuses in NTP output.

Why the other options are wrong

A

In NTP, an asterisk (*) indicates the selected time source, while a tilde (~) means the server is reachable but not selected. Option A describes the asterisk, not the tilde.

C

A tilde (~) indicates the server is reachable but not synchronized; a permanently disabled server due to authentication would show a period (.) or not appear at all.

D

In the context of NTP, a tilde (~) indicates the server is reachable but not selected as the synchronization source. The router acting as an NTP master would be indicated by the 'master' command or stratum level, not by the tilde symbol.

302
MCQhard

A network administrator has configured 802.1X port-based authentication on a Cisco IOS-XE switch port connected to a single PC. The port is in the 'authorized' state, but the PC cannot reach any network resources beyond its directly connected switch. The switch is configured to use RADIUS for authentication. What is the most likely cause of this issue?

A.The switchport is in access mode and not trunking, so the PC cannot reach other VLANs.
B.The RADIUS server is not returning a VLAN assignment, so the port remains in the default VLAN, but the PC needs to be in a different VLAN to reach resources.
C.The switch is not configured with 'aaa new-model' and therefore AAA is not enabled.
D.The PC is not configured for 802.1X supplicant, so it cannot authenticate properly.
AnswerB

The 'show authentication sessions' output does not show a VLAN assigned, meaning the RADIUS server did not include the VLAN attribute. The switch uses the configured access VLAN (10) by default. If the PC needs to be in a different VLAN to reach resources, this is the root cause.

Why this answer

The RADIUS server can return a VLAN assignment as part of the Access-Accept message (via RADIUS attribute 64 or 81). If the server does not send a VLAN, the port remains in the configured access VLAN (often VLAN 1). If the PC needs to be in a different VLAN to reach network resources, it will be isolated even though 802.1X authentication succeeded and the port is authorized.

Exam trap

Cisco often tests the distinction between authentication success and post-authentication authorization, tricking candidates into thinking that a successful 802.1X authentication automatically grants full network access, when in fact the RADIUS server must also return the correct VLAN assignment.

Why the other options are wrong

A

Access mode is correct for a single PC; trunking is not needed for basic connectivity.

C

AAA is functioning, as evidenced by successful authentication.

D

The port status is 'Authorized', indicating successful authentication.

303
MCQeasy

Why is Telnet generally discouraged for network device administration?

A.It cannot cross routed networks
B.It sends credentials and commands in clear text
C.It supports only local usernames
D.It works only from the console port
AnswerB

Telnet transmits all data, including login credentials and command traffic, without encryption over TCP port 23. An attacker with packet capture or on-path visibility can read usernames, passwords, and configuration commands in plaintext, enabling credential theft and device compromise. This lack of confidentiality is the primary security weakness that discourages its use on production or untrusted networks.

Why this answer

Telnet sends all data, including credentials and commands, in clear text, making it vulnerable to eavesdropping. Option A is wrong because Telnet can traverse routed networks using TCP port 23. Option C is incorrect because Telnet can use local usernames as well as external AAA servers.

Option D is false because Telnet works over network interfaces, not exclusively from the console port.

Exam trap

Don't confuse protocol support or bandwidth usage with security features. Focus on encryption and data protection.

Why the other options are wrong

A

Telnet can cross routed networks because it operates at the application layer over TCP/IP.

C

Telnet supports both local usernames and external authentication via AAA servers like RADIUS or TACACS+.

D

Telnet connects via a virtual terminal line (VTY) over the network, not solely from the console port.

304
PBQhard

You are connected to R1 via the console. R1's GigabitEthernet0/0 (192.168.1.1/24) connects to the management network, and GigabitEthernet0/1 (10.0.0.1/30) connects to the core. You need to restrict SSH access to R1 from only the management subnet 192.168.1.0/24. Additionally, SSH should be configured with a domain name 'example.com' and a modulus of 2048 bits. The username 'admin' with password 'Cisco123' should be created for SSH login.

Hints

  • Generate RSA keys after setting domain name.
  • Use an access-class on the VTY lines to restrict source IP.
  • Disable telnet by specifying only ssh transport.
A.ip access-list standard MGMT permit 192.168.1.0 0.0.0.255 line vty 0 4 access-class MGMT in transport input ssh login local username admin secret Cisco123 ip domain-name example.com crypto key generate rsa modulus 2048
B.ip access-list standard MGMT permit 192.168.1.0 0.0.0.255 line vty 0 4 access-class MGMT out transport input ssh login local username admin secret Cisco123 ip domain-name example.com crypto key generate rsa modulus 2048
C.ip access-list standard MGMT permit 192.168.1.0 0.0.0.255 line vty 0 4 access-class MGMT in transport input telnet ssh login local username admin secret Cisco123 ip domain-name example.com crypto key generate rsa modulus 2048
D.ip access-list standard MGMT permit 192.168.1.0 0.0.0.255 line vty 0 4 access-class MGMT in transport input ssh login local username admin password Cisco123 ip domain-name example.com crypto key generate rsa modulus 2048
AnswerA
solution
! R1
crypto key generate rsa modulus 2048
access-list 10 permit 192.168.1.0 0.0.0.255
line vty 0 4
access-class 10 in
transport input ssh

Why this answer

SSH requires RSA keys for encryption. The access-class applies an ACL to incoming VTY connections, allowing only the management subnet. Setting 'transport input ssh' disables less secure protocols like Telnet.

Exam trap

Pay attention to the direction of access-class (in vs out), the transport input setting (ssh only vs telnet ssh), and the use of 'secret' vs 'password' for the username command. These are common traps in CCNA exams.

Why the other options are wrong

B

The access-class must be applied 'in' to restrict incoming SSH sessions; 'out' controls traffic initiated from the router.

C

The transport input command should be 'ssh' only to disable Telnet.

D

The 'secret' keyword should be used for secure password storage; 'password' is less secure.

305
PBQhard

You are troubleshooting DNS resolution issues from R1. Using nslookup and dig commands, diagnose why the router cannot resolve the hostname 'fileserver.courseiva.com' to an IP address, and why reverse lookup for IP address 198.51.100.10 fails. Determine the appropriate fix to ensure successful forward and reverse DNS resolution.

Network Topology
G0/010.0.0.1/30203.0.113.1linkR1DNS Server

Hints

  • The DNS server returns NXDOMAIN for both queries, indicating missing records on the server.
  • Use 'nslookup' to test forward lookup and 'nslookup <ip>' for reverse lookup.
  • The router's DNS configuration is correct; the fault lies in the DNS server's zone data.
A.Add an A record for 'fileserver.courseiva.com' pointing to 198.51.100.10 and a PTR record for 198.51.100.10 pointing to 'fileserver.courseiva.com' on the DNS server.
B.Configure the 'ip host' command on R1 to statically map 'fileserver.courseiva.com' to 198.51.100.10.
C.Enable 'ip domain-lookup' and configure the correct DNS server IP on R1 using 'ip name-server 203.0.113.1'.
D.Add only an A record for 'fileserver.courseiva.com' on the DNS server.
AnswerA
solution
! R1
! No configuration changes are needed on R1; the DNS server must be updated.
! Add A record: fileserver.courseiva.com -> 198.51.100.10
! Add PTR record: 198.51.100.10 -> fileserver.courseiva.com

Why this answer

The DNS resolution failures are due to two issues: the A record for 'fileserver.courseiva.com' does not exist on the DNS server (NXDOMAIN response), and the PTR record for reverse lookup of 198.51.100.10 is missing. To resolve the forward lookup, you must add an A record mapping the hostname to an IP address on the DNS server (e.g., 198.51.100.10). For the reverse lookup, you need to add a PTR record mapping the IP address 198.51.100.10 to the hostname.

On R1, the DNS configuration is correct (ip domain-lookup enabled, name-server 203.0.113.1), but the DNS server lacks the necessary records. The solution involves configuring the DNS server (not R1) to add the missing records. On R1, ensure that the DNS server is reachable and that the domain lookup is enabled; no additional CLI changes are required on the router.

Exam trap

Cisco exams often test the distinction between DNS client configuration on the router and DNS server records. Do not assume that DNS issues are always due to router misconfiguration; verify the DNS server's records first.

Why the other options are wrong

B

The 'ip host' command creates a static host table entry on the router, bypassing DNS. It does not fix reverse lookup and is not the intended solution for missing DNS records.

C

The problem is not with R1's DNS client configuration but with missing records on the DNS server. Repeating correct configuration does not resolve the missing records.

D

Reverse lookup requires a PTR record. Without it, the reverse query for 198.51.100.10 will still fail.

306
MCQhard

A branch office uses PAT for user Internet access. The administrator notices that inside users can browse out, but an internal server still cannot be reached consistently from outside. Which change is most appropriate?

A.Add a static NAT mapping for the server while leaving PAT in place for user traffic.
B.Replace PAT with DHCP relay.
C.Disable NAT entirely because PAT is preventing inbound routing.
D.Put the server in the native VLAN.
AnswerA

A static NAT mapping binds the server's private IPv4 address to a specific public IPv4 address, creating a permanent inside-global entry that lets Internet clients initiate connections to the server. At the same time, PAT overload remains in place for user traffic, translating many internal addresses to one public IP and tracking flows by source port. This hybrid design preserves outbound Internet access while giving the server a stable, globally reachable identity without disabling translation.

Why this answer

The most appropriate change is to add a static NAT mapping for the internal server while keeping PAT for ordinary user traffic. In practical terms, PAT solves the many-users-outbound problem by allowing shared use of a public address. But an inbound-published server needs a stable, predictable public identity. That requirement is different from the requirement for user browsing.

This is a common NAT design distinction. PAT and static NAT can coexist because they solve different problems. The best answer is the one that preserves PAT for users while giving the server a fixed public translation.

Exam trap

A frequent exam trap is to confuse the role of PAT and static NAT, leading to the incorrect assumption that disabling NAT or changing VLANs will fix inbound server reachability. Disabling NAT entirely stops all address translation, breaking Internet access for all internal hosts. Changing VLANs, such as moving a server to the native VLAN, does not affect NAT or public accessibility.

Another trap is to replace PAT with unrelated features like DHCP relay, which does not influence NAT or inbound connections. Understanding that static NAT is required for stable inbound access while PAT supports outbound user traffic avoids these mistakes.

Why the other options are wrong

B

Incorrect because DHCP relay is unrelated to NAT or inbound server reachability; it only forwards DHCP messages across subnets and does not solve NAT issues.

C

Incorrect because disabling NAT removes all address translation, preventing private IP addresses from reaching the Internet and breaking outbound connectivity for users.

D

Incorrect because placing the server in the native VLAN affects Layer 2 segmentation but does not provide a public IP address or influence NAT behavior for inbound access.

307
MCQhard

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

A.Because it removes unused active connection points and reduces attack surface.
B.Because it converts all other ports into trunks.
C.Because it replaces VLAN segmentation.
D.Because it forces devices to use SSH.
AnswerA

This is correct because unused enabled ports are avoidable exposure points.

Why this answer

Shutting down unused switch ports reduces attack surface by removing unnecessary active connection points. This is a simple but effective control because it eliminates the risk of unauthorized physical access. Option B is incorrect because disabling a port does not change its mode to trunk; trunking is a separate configuration.

Option C is incorrect because shutting down ports does not replace VLAN segmentation; VLANs provide logical separation, while port shutdown is a physical access control. Option D is incorrect because shutting down ports does not force devices to use SSH; SSH is an application-layer protocol for secure remote management, unrelated to port shutdown.

Exam trap

Don't confuse port security measures with performance improvements or unrelated security features like VLAN isolation.

Why the other options are wrong

B

Disabling a port does not convert it into a trunk; trunking is a separate configuration for carrying multiple VLANs.

C

Shutting down ports does not replace VLAN segmentation; VLANs provide logical separation, while port shutdown is a physical access control.

D

Shutting down ports does not force devices to use SSH; SSH is a management protocol unrelated to port state.

308
Multi-Selectmedium

Select the options that correctly pair the security principle or control with its meaning.

Select 2 answers
A.Confidentiality ensures that data is accessible only to authorized users.
B.Integrity ensures that data is always available when needed.
C.Non-repudiation ensures that a user cannot deny having performed an action.
D.Authorization verifies the identity of a user or device.
AnswersA, C

Confidentiality is the CIA triad component that protects data from unauthorized access and disclosure. It is enforced through mechanisms such as encryption, access control lists, and the principle of least privilege, ensuring that only users with explicit permission can read or view sensitive information. This directly prevents data breaches and information leaks.

Why this answer

Confidentiality ensures data is accessible only to authorized users; integrity ensures data accuracy and trustworthiness (not availability); non-repudiation ensures accountability by preventing denial of actions; authorization grants permissions (not identity verification, which is authentication). Option B is wrong because integrity is about data correctness, not availability. Option D is wrong because authorization determines permissions, while authentication verifies identity.

Exam trap

Be careful not to confuse integrity with availability, and authorization with authentication. Remember: integrity = data accuracy, availability = data accessible; authentication = who you are, authorization = what you can do.

Why the other options are wrong

B

Integrity ensures data accuracy and protection from unauthorized modification, not availability. Availability is the principle that ensures data is accessible when needed.

D

Authorization does not verify identity; that is authentication. Authorization determines what an authenticated user is allowed to do.

309
Drag & Dropmedium

Which of the following is the correct order to plan, configure, and apply an extended ACL that blocks Telnet traffic from the 192.168.1.0/24 network to the 10.0.0.0/24 network, applied inbound on the router's G0/0 interface?

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

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

Why this order

The correct order to plan, configure, and apply an extended ACL that blocks Telnet traffic from 192.168.1.0/24 to 10.0.0.0/24, applied inbound on G0/0, is: first enter global configuration mode, create the ACL with a deny statement for the specific source and destination, then add a permit ip any any statement, then enter interface G0/0, and apply the ACL inbound with ip access-group <acl-number> in. Option B is incorrect because the ACL must be created before entering the interface. Option C is incorrect because the order of ACEs within the ACL must have the specific deny before the broad permit.

Option D is incorrect because ip access-group must be applied on an interface, not globally.

Exam trap

Be careful with the order of operations: ACLs must be created before they can be applied, and the order of entries within the ACL matters. Also, remember that 'ip access-group' is an interface command, not global.

310
Multi-Selectmedium

Which three of the following are security best practices for implementing AAA on a Cisco router? (Choose three.)

Select 3 answers
.Use a local username database as a fallback method if the AAA server is unreachable.
.Enable AAA new-model before configuring any AAA methods.
.Configure TACACS+ for detailed command authorization and accounting.
.Set the authentication login method to 'none' for console access.
.Use RADIUS for command-level authorization.
.Disable the enable secret password when using AAA servers.

Why this answer

Using a local username database as a fallback method ensures that if the AAA server becomes unreachable, administrators can still authenticate via the router's local accounts. This is a standard best practice to prevent lockout. Enabling 'aaa new-model' is mandatory before any AAA configuration, as it activates the AAA subsystem on the router.

TACACS+ is the preferred protocol for command authorization and accounting because it encrypts the entire packet and supports per-command authorization, unlike RADIUS which only encrypts the password.

Exam trap

Cisco often tests the misconception that RADIUS can be used for command authorization, but the trap is that RADIUS only supports authentication and accounting for network access, not the granular command-level control that TACACS+ provides.

311
Multi-Selectmedium

Which two statements accurately describe good management-plane security practice on network devices?

Select 2 answers
A.Use secure management protocols such as SSH instead of less secure remote-access methods.
B.Restrict management access to trusted source networks where possible.
C.Prefer shared generic admin accounts for convenience.
D.Disable all logging to reduce device workload.
E.Rely only on SSID names to protect router management.
AnswersA, B

Secure management protocols like SSH provide encrypted transport and strong authentication for administrative sessions, preventing credential theft and session hijacking over the network. In contrast, protocols such as Telnet or HTTP transmit passwords and configuration data in plaintext, which attackers can easily intercept. Protecting the management plane with encryption is a foundational best practice for network device security.

Why this answer

Good management-plane security combines multiple layers of control. In practical terms, using secure protocols such as SSH is important, but so is restricting which sources may connect, controlling who is authorized, and maintaining visibility into administrative activity. Strong management security is not usually one setting by itself.

This is a layered-control question rather than a single-technology question.

Exam trap

A common exam trap is selecting only one security measure, such as using SSH, and ignoring the importance of restricting management access sources. Candidates might assume that encrypted protocols alone provide complete security, but without source filtering, attackers can still attempt unauthorized connections. Another trap is choosing options that suggest disabling logging or using shared admin accounts, which weaken security by reducing accountability and visibility.

The exam tests understanding that management-plane security is multi-layered, requiring both secure protocols and access restrictions to effectively protect network devices.

Why the other options are wrong

C

Incorrect because shared generic admin accounts reduce traceability and accountability, making it difficult to audit who made changes or accessed the device, which weakens security.

D

Incorrect because disabling logging removes visibility into management activities, hindering the ability to detect unauthorized access or troubleshoot issues, which is counterproductive to security.

E

Incorrect because SSID names pertain to wireless network identification and do not provide any protection for router management-plane access or protocols.

312
PBQhard

You are connected to R1 via the console. R1 is the DHCP server for the 192.168.50.0/24 LAN. Configure DHCP on R1 to assign addresses from 192.168.50.10 to 192.168.50.200, with default gateway 192.168.50.1 and DNS server 8.8.8.8. Also, configure R1 to act as a DHCP relay agent for the 10.0.0.0/30 link to reach a remote DHCP server at 203.0.113.10. Then, troubleshoot and fix a misconfiguration that causes clients on VLAN 50 to not receive IP addresses.

Network Topology
G0/0:192.168.50.1/24G0/1:10.0.0.1/30linkR1VLAN 50 clientsRemote DHCP server at

Hints

  • Check the excluded-address range — it may be too large.
  • A helper-address on the same subnet as the DHCP server is not needed.
  • The relay agent must be configured on the interface that receives the client broadcasts.
A.[CORRECT] The DHCP pool is misconfigured: the excluded-address range covers most of the pool (192.168.50.1 through 192.168.50.200), but leaves 192.168.50.201-254 assignable, violating the requirement. The correct configuration should exclude 192.168.50.1-9 (gateway) and 192.168.50.201-254 (upper end). The 'ip helper-address' on GigabitEthernet0/0 is unnecessary because R1 itself is the DHCP server for that subnet; it should be removed. The relay agent configuration is missing on the interface facing the remote DHCP server—'ip helper-address 203.0.113.10' should be added to GigabitEthernet0/1.
B.The DHCP pool is misconfigured: the excluded-address range should be 192.168.50.1 192.168.50.9, but the helper-address on GigabitEthernet0/0 is correct because it forwards DHCP requests to the remote server. The relay agent configuration is missing on GigabitEthernet0/1.
C.The DHCP pool is correctly configured with excluded-address 192.168.50.1 192.168.50.9. The issue is that the 'ip helper-address' on GigabitEthernet0/1 is missing; it should be added to forward requests to the remote server. Additionally, the 'ip helper-address' on GigabitEthernet0/0 is correct because it forwards requests from VLAN 50 to the remote server.
D.The DHCP pool is misconfigured: the excluded-address range should be 192.168.50.1 192.168.50.9. The 'ip helper-address' on GigabitEthernet0/0 should be removed. The relay agent configuration is correct because 'ip helper-address 203.0.113.10' is already configured on GigabitEthernet0/1.
AnswerA
solution
! R1
no ip dhcp excluded-address 192.168.50.1 192.168.50.200
ip dhcp excluded-address 192.168.50.1 192.168.50.9
interface GigabitEthernet0/0
no ip helper-address 203.0.113.10
exit
interface GigabitEthernet0/1
ip helper-address 203.0.113.10
exit

Why this answer

The DHCP pool is misconfigured: the excluded-address range of 192.168.50.1 through 192.168.50.200 covers most of the pool, but leaves addresses 192.168.50.201 to 192.168.50.254 assignable, which violates the requirement to assign addresses only from 192.168.50.10 to 192.168.50.200. To meet the requirement, you must exclude both the lower range (192.168.50.1 to 192.168.50.9, reserving the gateway) and the upper range (192.168.50.201 to 192.168.50.254). Additionally, the 'ip helper-address' on GigabitEthernet0/0 is unnecessary because R1 itself is the DHCP server for that subnet; it should be removed.

The relay agent configuration is missing on the interface facing the remote DHCP server—'ip helper-address 203.0.113.10' should be added to GigabitEthernet0/1 so that broadcasts from the 10.0.0.0/30 subnet are forwarded.

Exam trap

A single 'ip dhcp excluded-address' range does not limit the DHCP pool to only the desired contiguous range; you must explicitly exclude all addresses you do not want assigned, even those at the upper end. Ensure you create multiple excluded-address ranges when the pool is not contiguous.

Why the other options are wrong

B

The specific factual error is that a helper-address should not be configured on an interface where the router itself is the DHCP server for that subnet.

C

The specific factual error is that the helper-address on the LAN interface is not needed and would cause issues, and the excluded-address range is actually correct in this option, but the question's misconfiguration is the excluded-address being too broad.

D

The specific factual error is that the helper-address on the interface facing the remote server is not configured, so DHCP broadcasts from the 10.0.0.0/30 subnet will not be forwarded.

313
MCQmedium

Users on VLAN 20 are not receiving IPv4 addresses from the centralized DHCP server at 10.50.0.10. Users in other VLANs are working normally. Based on the exhibit, which change should fix the issue for VLAN 20 clients?

A.Change the helper address on interface Vlan20 to 10.50.0.10.
B.Convert the VLAN 20 user ports to trunk mode.
C.Configure a default gateway on the user PCs manually.
D.Disable DHCP snooping on VLAN 20.
AnswerA

The DHCP server is not on VLAN 20, so the router interface Vlan20 must use the ip helper-address command to forward DHCP client broadcasts as unicasts to the actual DHCP server at 10.50.0.10. Without a correctly configured helper address, the DHCP messages never leave the local VLAN and clients remain unaddressed. This is the standard fix for a DHCP relay problem.

Why this answer

The SVI for VLAN 20 is forwarding DHCP requests to the wrong helper address. DHCP relay depends on the Layer 3 interface for that VLAN sending client broadcasts to the correct server. Trunks, access ports, and the DHCP pool name on the server are not the first issue shown here.

DHCP snooping can filter DHCP server replies on untrusted ports, but since other VLANs are working and no trust misconfiguration is indicated, the root cause is the incorrect ip helper-address on Vlan20.

Exam trap

A frequent exam trap is assuming that user ports must be trunks or that disabling DHCP snooping will fix DHCP address assignment issues. In reality, user ports should remain in access mode to maintain VLAN membership, and DHCP snooping is unrelated to this specific forwarding problem because the exhibit shows a misconfigured helper address while other VLANs function normally. Another common mistake is thinking that manually configuring a default gateway on clients solves DHCP problems, but DHCP discovery requires proper relay configuration on the Layer 3 interface.

Misconfiguring or omitting the ip helper-address on the VLAN interface causes DHCP requests to fail, which is the core issue here.

Why the other options are wrong

D

Disabling DHCP snooping is unnecessary because the other VLANs work, and the scenario does not indicate a trust misconfiguration; the real problem is the incorrect helper address on Vlan20.

314
MCQmedium

Two switches are configured to form an EtherChannel, but the bundle never comes up. Which explanation best describes this scenario?

A.The switches are using different native VLANs.
B.LACP active on one side is incompatible with mode on on the other side.
C.Both sides must use PAgP desirable mode.
D.The interfaces must be configured as routed ports first.
AnswerB

LACP active mode actively sends LACPDUs to negotiate the bundle, while 'mode on' forces the channel statically without sending any negotiation frames. Because the 'on' side never responds to LACP, the active side cannot establish a working partner and the EtherChannel fails to form. The mismatch is a fundamental protocol/config mode incompatibility, not a wiring or VLAN issue.

Why this answer

One side is using LACP active mode and the other side is forcing a static channel-group with mode on. Those modes are not compatible. LACP needs active or passive on both sides, while PAgP uses desirable or auto, and static mode on expects a manual bundle on the other side.

Exam trap

Ensure you match the correct protocol and mode on both sides of the link; mixing protocols or incompatible modes will prevent channel formation.

Why the other options are wrong

A

This option is wrong because different native VLANs do not prevent an EtherChannel from forming; they can still establish a link if other configurations are compatible. The primary issue in this scenario is related to LACP mode mismatches.

C

This option is incorrect because EtherChannel can use either PAgP or LACP for negotiation, and both protocols can operate independently of each other. The requirement for both sides to use PAgP in desirable mode is not a necessity for EtherChannel to function.

D

This option is wrong because EtherChannel can be configured on switch ports without needing to convert them to routed ports. Routed ports are not necessary for EtherChannel to function, as it operates at Layer 2.

315
MCQhard

A network team wants visibility into which flows are consuming the most bandwidth between internal subnets. Which technology is most directly associated with that goal?

A.NetFlow
C.DHCP relay
AnswerA

NetFlow is a network telemetry protocol that captures metadata about IP traffic flows, including source/destination IP addresses, ports, ToS, and byte/packet counts. By exporting these flow records to a collector, administrators can identify which applications, hosts, or conversations are consuming the most bandwidth. This makes NetFlow the appropriate technology for flow-level visibility and traffic consumption analysis.

Why this answer

NetFlow provides visibility into traffic flows, allowing administrators to identify which flows (e.g., between internal subnets) are consuming the most bandwidth by showing source/destination, protocols, and traffic volume. Syslog only records system logs and events, not flow-level data. DHCP relay forwards DHCP broadcasts across subnets but offers no traffic analysis.

PortFast is an STP optimization that speeds up port transition to forwarding; it does not monitor bandwidth usage.

Exam trap

A frequent exam trap is mistaking Syslog or DHCP relay as solutions for traffic flow visibility. Syslog only records system events and error messages, not detailed traffic usage. DHCP relay simply forwards DHCP requests and does not analyze bandwidth.

Another trap is confusing PortFast, which is an STP feature to speed up port activation, with traffic monitoring technologies. Candidates must recognize that only NetFlow provides granular flow data needed to identify bandwidth consumption between internal subnets, making it the correct choice.

Why the other options are wrong

B

Syslog is incorrect because it only records system events, error messages, and notifications. It does not provide detailed traffic flow or bandwidth usage information, so it cannot help identify which flows consume the most bandwidth.

C

DHCP relay is incorrect as its function is to forward DHCP broadcast requests from clients to DHCP servers across different subnets. It does not analyze or report on traffic flows or bandwidth consumption.

D

PortFast is incorrect because it is a Spanning Tree Protocol feature that allows edge ports to transition quickly to the forwarding state. It has no role in traffic flow analysis or bandwidth monitoring.

316
MCQhard

A network administrator is troubleshooting an issue where hosts in the 192.168.20.0/24 subnet cannot reach the Internet, while hosts in 192.168.10.0/24 can. The router is configured for PAT overload using a dynamic pool on the outside interface. The administrator collects the configuration shown in the exhibit. What is the most likely cause of the connectivity problem for the 192.168.20.0/24 subnet?

A.The wildcard mask in access list 20 is incorrect; it matches only the network address.
B.The NAT pool does not have enough IP addresses to support both subnets.
C.Interface GigabitEthernet0/2 is missing the ip nat inside command.
D.Access list 10 is incorrectly applied to the NAT pool, causing a conflict.
AnswerA

Access list 20 uses wildcard mask 0.0.0.0, which requires an exact match on all 32 bits; therefore it matches only the host address 192.168.20.0, not the entire subnet. For NAT to translate all hosts in the 192.168.20.0/24 network, the wildcard mask must be 0.0.0.255, causing the router to ignore the last octet and match addresses from .1 to .254. As written, only traffic sourced from 192.168.20.0 (which is practically never used as a source IP) would be translated, so all other hosts in that subnet fail to access the outside network.

Why this answer

The issue is that access list 20, used to define which internal addresses are eligible for NAT, has a wildcard mask of 0.0.0.0. This wildcard mask matches only the exact address 192.168.20.0, not the entire 192.168.20.0/24 subnet. For a /24 subnet, the correct wildcard mask should be 0.0.0.255, which would match all addresses from 192.168.20.1 to 192.168.20.254.

Because the ACL matches only the network address (192.168.20.0), no host traffic from that subnet is translated, breaking Internet connectivity.

Exam trap

Cisco often tests the distinction between matching the network address versus matching the host range in ACLs used for NAT, where candidates incorrectly assume that using the network address with a wildcard mask of 0.0.0.0 will match all hosts in the subnet.

Why the other options are wrong

B

NAT pool size is not a limiting factor with PAT overload; a single address can serve thousands of hosts.

C

The interface is correctly configured for NAT inside.

D

Applying multiple access lists to the same pool is allowed and does not create a conflict.

317
Multi-Selectmedium

Which two statements accurately describe the purpose of least privilege in administration and operations?

Select 2 answers
A.It limits users and administrators to the permissions they actually need.
B.It helps reduce unnecessary exposure and the impact of mistakes or misuse.
C.It means no administrator should ever have any configuration access.
D.It replaces the need for logging and accounting.
E.It exists only on wireless guest networks.
AnswersA, B

Least privilege is a security principle that grants each subject—whether a standard user or an administrator—only the minimum rights required to perform their assigned job function. By scoping privileges to explicit job requirements, the organization reduces the attack surface and prevents privilege escalation that results from standing high-level access. This principle is implemented through role-based access control, where permissions are assigned according to defined roles rather than individual preferences.

Why this answer

Least privilege is about limiting access to what is actually needed. In practical terms, it reduces unnecessary exposure and helps contain the impact of mistakes, misuse, or compromised accounts. It is not about refusing all access. It is about granting enough access to do the job, but not more than that.

This is a central principle in secure administration and role design.

Exam trap

Avoid confusing least privilege with either unrestricted access or complete denial of access.

Why the other options are wrong

C

This option is incorrect because the principle of least privilege does not imply that administrators should have no configuration access; rather, it means they should only have the access necessary to perform their job functions.

D

This option is incorrect because least privilege does not eliminate the need for logging and accounting; instead, it complements these practices by ensuring that access is limited while still requiring oversight and tracking of actions taken by users.

E

This option is incorrect because the principle of least privilege applies to all network environments, not just wireless guest networks. It is a fundamental security concept that should be implemented across all systems and user roles.

318
MCQmedium

An engineer applies this command on an access interface connected to a user PC: switchport port-security violation restrict. What happens if a second unauthorized MAC address appears on the port?

A.The port immediately goes err-disabled.
B.Frames from the unauthorized MAC are dropped and the violation is counted while the port stays up.
C.The switch forwards the traffic but logs a warning.
D.The port transitions to listening and learning states.
AnswerB

In port-security restrict mode, frames from an unauthorized MAC address are silently discarded at the ingress port, and the port's security violation counter is incremented to record the event. Crucially, the access port remains operationally up and continues to forward traffic from all authorized MACs, so normal connectivity is not interrupted. This behavior distinguishes restrict from shutdown (which err-disables the port) and protect (which drops but does not increment the counter).

Why this answer

With restrict mode, the switch drops frames from the violating MAC, increments the violation counter, and can generate notifications. Unlike shutdown mode, the interface stays up. Unlike protect mode, the switch records the violation.

Exam trap

A frequent exam trap is mistaking the restrict violation mode for shutdown mode. Many candidates incorrectly believe that a violation in restrict mode causes the port to go err-disabled immediately, but this behavior only occurs with the shutdown mode. Another common confusion is between restrict and protect modes; protect silently drops unauthorized frames without incrementing violation counters or generating alerts, whereas restrict does both.

Misunderstanding these differences can lead to incorrect answers about port behavior during security violations. Remember, restrict mode blocks unauthorized MAC addresses but keeps the port active and counts violations, which is a key distinction in Cisco port security.

Why the other options are wrong

A

Option A describes the shutdown violation mode behavior, where the port immediately goes err-disabled upon detecting a second unauthorized MAC address. Since the command specifies 'violation restrict', the port does not disable but stays up, so this option is incorrect.

C

Option C is incorrect because port security never forwards traffic from unauthorized MAC addresses. The switch drops such frames to enforce security policies, so forwarding violating traffic is not possible.

D

Option D is incorrect because listening and learning states refer to Spanning Tree Protocol (STP) port states, not port security violation responses. Port security violation modes do not cause STP state changes.

319
PBQmedium

You are connected to R1 via the console. R1's GigabitEthernet0/0 (10.0.0.1/30) connects to ISP router, and GigabitEthernet0/1 (192.168.1.1/24) connects to the internal LAN. The internal network uses 192.168.1.0/24 and needs to access the internet. Configure NAT overload on R1 so that internal hosts are translated to the IP address of GigabitEthernet0/0 when accessing the internet.

Network Topology
G0/010.0.0.1/30G0/1192.168.1.1/24InternetISPR1LANPCs

Hints

  • Define inside and outside interfaces separately.
  • Use the ACL to identify which traffic to translate.
  • The overload keyword enables PAT.
A.R1(config)# access-list 1 permit 192.168.1.0 0.0.0.255 R1(config)# ip nat inside source list 1 interface GigabitEthernet0/0 overload R1(config)# interface GigabitEthernet0/0 R1(config-if)# ip nat outside R1(config-if)# interface GigabitEthernet0/1 R1(config-if)# ip nat inside
B.R1(config)# access-list 1 permit 192.168.1.0 0.0.0.255 R1(config)# ip nat inside source list 1 interface GigabitEthernet0/1 overload R1(config)# interface GigabitEthernet0/0 R1(config-if)# ip nat outside R1(config-if)# interface GigabitEthernet0/1 R1(config-if)# ip nat inside
C.R1(config)# access-list 1 permit 192.168.1.0 0.0.0.255 R1(config)# ip nat inside source list 1 interface GigabitEthernet0/0 R1(config)# interface GigabitEthernet0/0 R1(config-if)# ip nat outside R1(config-if)# interface GigabitEthernet0/1 R1(config-if)# ip nat inside
D.R1(config)# access-list 1 permit any R1(config)# ip nat inside source list 1 interface GigabitEthernet0/0 overload R1(config)# interface GigabitEthernet0/0 R1(config-if)# ip nat outside R1(config-if)# interface GigabitEthernet0/1 R1(config-if)# ip nat inside
AnswerA
solution
! R1
ip nat inside source list 1 interface GigabitEthernet0/0 overload
interface GigabitEthernet0/0
ip nat outside
interface GigabitEthernet0/1
ip nat inside

Why this answer

NAT overload (PAT) allows multiple internal hosts to share a single public IP by using different source ports. The ACL identifies the internal network, and the interfaces are marked as inside/outside. The 'overload' keyword enables port address translation.

Option B fails because it translates to the wrong interface (GigabitEthernet0/1) instead of the public-facing interface (GigabitEthernet0/0). Option C is missing the required 'overload' keyword, so it performs dynamic NAT without PAT, which is insufficient for multiple hosts. Option D uses an overly broad ACL ('permit any') that does not match only the internal network (192.168.1.0/24) as required by the stem.

Exam trap

The most common traps are: (1) confusing inside and outside interfaces when specifying the NAT source, (2) forgetting the 'overload' keyword for PAT, and (3) using an overly permissive ACL like 'permit any' instead of restricting to the internal network. Always verify interface roles and the ACL scope.

Why the other options are wrong

B

The 'ip nat inside source list' command must specify the outside interface (the one with the public IP) for translation, not the inside interface.

C

NAT overload (PAT) requires the 'overload' keyword to enable port address translation. Without it, the router performs dynamic NAT, which is insufficient for sharing a single public IP among many hosts.

D

The ACL should match only the internal network that requires translation. Using 'permit any' would translate all traffic, including traffic that should not be translated, potentially breaking connectivity or causing security risks.

320
MCQhard

A network engineer notices that after removing a standard ACL that was applied inbound on the internet-facing interface, the router is now receiving IP packets from the internet with source IP addresses in the 10.0.0.0/8 range, which were previously blocked. What is the most likely cause?

A.The original standard ACL only had a permit statement, so after removal the permit still takes effect because the ACL remains in the running configuration.
B.The ip access-group command on the interface remains but is missing the referenced ACL, causing the router to default to denying all ingress traffic except the previously permitted 10.0.0.0/8.
C.Removing the ACL from the interface eliminates the implicit deny at the end and restores the default permit all behavior, allowing all incoming traffic.
D.The ACL was reapplied in the outbound direction instead of inbound, so it now blocks traffic leaving the interface but not entering it.
AnswerC

Before removal, the applied ACL permitted only 10.0.0.0/8 and denied everything else (implicit deny all), which correctly blocked spoofed RFC 1918 traffic. Once the ACL is de-applied, the interface has no access list, so all traffic is permitted, including the previously blocked spoofed packets.

Why this answer

When a standard ACL is removed from an interface using the 'no ip access-group' command, the implicit deny any at the end of the ACL is also removed. By default, Cisco routers permit all IP traffic on an interface unless an ACL is applied to filter it. Therefore, after removal, the router reverts to its default permit-all behavior, allowing previously blocked traffic like source IPs in the 10.0.0.0/8 range.

Exam trap

Cisco often tests the misconception that removing an ACL from an interface leaves some filtering in place, when in fact it restores the default permit-all behavior, and candidates may confuse the implicit deny of an ACL with the default interface behavior.

Why the other options are wrong

A

Candidates may think that the ACL itself, if still configured, continues to filter traffic even when not applied to an interface.

B

A common misunderstanding is that the access-group line can persist without a valid ACL and cause some default behavior; in fact the entire command is removed.

D

Some candidates may confuse direction changes with removal and assume the ACL is still filtering traffic in some way, but the symptom clearly indicates no filtering at all.

321
MCQhard

Exhibit: Hosts on the inside network can reach the internet, but inbound connections to a published web server fail. Static NAT is configured. What is the most likely missing piece?

A.A default route on the inside host
B.An ACL permit entry allowing TCP port 80 or 443 to the translated address
C.PAT overload on the outside interface
D.DHCP relay toward the web server
AnswerB

Static NAT creates the one-to-one mapping between the public IP and the web server's private IP, but packet filtering is applied independently of the translation. An inbound ACL on the outside interface must explicitly permit TCP ports 80/443 destined to the translated (public) address; without that permit, the router silently drops the HTTP/HTTPS packets even though the NAT entry exists. This permit entry is the missing piece that completes the inbound web access path.

Why this answer

Static NAT provides the address translation, but traffic still must be permitted by an inbound ACL or firewall policy on the outside interface. Option A is incorrect because a default route on the inside host affects outbound traffic, not inbound connections. Option C is wrong since PAT overload is for many-to-one translation and is not required here, and it would not block inbound traffic if static NAT is already configured.

Option D is incorrect because DHCP relay does not influence inbound access to a web server; it only forwards DHCP requests from clients to a remote DHCP server.

Exam trap

Many candidates assume that static NAT alone guarantees inbound access, forgetting that an inbound ACL on the outside interface must explicitly permit the traffic.

Why the other options are wrong

A

A default route on the inside host controls outbound traffic, not inbound connections from the internet.

C

PAT overload is used for many-to-one translation and would not block inbound traffic if static NAT is already configured.

D

DHCP relay forwards DHCP requests to a remote server and does not affect inbound HTTP/HTTPS access to a web server.

322
MCQhard

A company wants an internal web server to be reachable consistently from the Internet using one known public IPv4 address. Which NAT approach best fits that requirement?

A.Static NAT
B.PAT overload
C.No NAT, because private IPv4 addresses are publicly routable
D.DHCP relay
AnswerA

This is correct because static NAT gives the server a permanent public mapping.

Why this answer

Static NAT is the best fit because it creates a fixed one-to-one relationship between the inside server and the public address. In practical terms, outside clients need a stable public identity for the server. They cannot rely on a translated address that changes session by session. Static NAT gives that predictability.

This is different from PAT, which is designed for many inside users sharing fewer public addresses for outbound traffic. The question is about publishing a server, not conserving addresses for client browsing. That is why static NAT is the strongest answer.

Exam trap

A frequent exam trap is selecting PAT overload as the solution for making an internal server reachable from the Internet. PAT is primarily designed for outbound traffic from multiple internal hosts sharing a single public IP, not for inbound access to a specific server. Another trap is thinking private IPv4 addresses are publicly routable, which they are not, so no NAT would fail to provide Internet reachability.

Also, confusing DHCP relay with NAT functions can mislead candidates, as DHCP relay only forwards DHCP messages and does not affect public IP mappings or server accessibility from the Internet.

Why the other options are wrong

B

PAT overload is incorrect because it is designed for many internal hosts sharing a single public IP for outbound traffic, not for providing a fixed public IP for inbound server access.

C

No NAT is incorrect since private IPv4 addresses are not routable on the public Internet; without NAT, the internal server cannot be reached from outside the private network.

D

DHCP relay is unrelated to NAT or public reachability; it only forwards DHCP requests across subnets and does not provide any public IP mapping for internal servers.

323
Multi-Selectmedium

A network operations team wants centralized logging from routers and switches and also wants meaningful severity filtering. Which two statements about syslog are correct?

Select 2 answers
A.Devices can send log messages to a remote syslog server for central storage
B.Severity levels allow filtering based on how serious an event is
C.Syslog is used to assign IP addresses dynamically to endpoints
D.Syslog entries replace SNMP counters for interface statistics
AnswersA, B

Syslog uses UDP port 514 by default to stream event messages from network devices to a centralized server, enabling aggregation, correlation, and long-term retention across the entire infrastructure. Local logging buffers are volatile and size-limited, so remote storage is critical for troubleshooting, compliance, and forensic analysis after a failure or security incident.

Why this answer

Syslog provides centralized event reporting by allowing devices to send log messages to a remote server (option A is correct). Severity levels enable filtering based on event seriousness (option B is correct). Option C is incorrect because syslog does not assign IP addresses dynamically—that is the role of DHCP.

Option D is incorrect because syslog logs events and does not replace SNMP counters, which remain the primary method for collecting interface statistics.

Exam trap

Be careful not to confuse syslog's use of UDP with TCP, and remember that syslog can send to multiple servers.

Why the other options are wrong

C

Syslog is not used for IP address assignment; that function is performed by DHCP.

D

Syslog does not replace SNMP counters for interface statistics; SNMP remains the primary method for collecting such data.

324
MCQmedium

Which security concept is most closely associated with ensuring data has not been altered in an unauthorized way?

A.Integrity
B.Availability
C.Accounting
D.Confidentiality
AnswerA

Integrity is the security property that guarantees data has not been altered, destroyed, or tampered with by unauthorized entities during storage or transmission. Mechanisms such as hashing algorithms, message authentication codes, and digital signatures allow a system to detect any modification to the original content. Therefore, when ensuring that information remains unmodified, integrity is the relevant CIA attribute.

Why this answer

The concept is integrity. In plain language, integrity is about making sure data remains accurate and trustworthy and that unauthorized changes can be detected or prevented. If confidentiality is about stopping the wrong people from seeing data, integrity is about stopping the wrong people from changing it. Availability, meanwhile, focuses on access to systems and services when needed.

This distinction matters because CCNA questions often group security vocabulary together and rely on candidates to separate them cleanly. Integrity is not the same as authentication or accounting, and it is not simply about whether a service is online. It specifically focuses on the correctness and trustworthiness of data or system state. That is why integrity is the correct answer here.

Exam trap

A frequent exam trap is mistaking confidentiality for integrity because both relate to data security. Confidentiality prevents unauthorized users from viewing data, but it does not guarantee that the data has not been altered. Another trap is confusing availability with integrity; availability ensures systems and data are accessible when needed but does not protect against unauthorized changes.

Candidates might also select accounting, which tracks user activity but does not ensure data correctness. Understanding these distinctions is crucial to avoid selecting the wrong security concept under exam pressure.

Why the other options are wrong

B

Availability is incorrect because it focuses on ensuring that systems and data are accessible when needed, not on preventing unauthorized data modification.

C

Accounting is incorrect since it involves logging and tracking user activities and network events but does not guarantee that the data itself has not been altered.

D

Confidentiality is incorrect because it protects data from unauthorized disclosure but does not ensure that the data has not been changed or tampered with.

325
MCQmedium

A team wants to know which internal hosts are sending the most traffic to a specific data center subnet. Which technology is most directly associated with that visibility goal?

A.NetFlow
AnswerA

This is correct because NetFlow is designed to provide traffic-flow visibility.

Why this answer

NetFlow is the best fit because it provides visibility into traffic flows and conversations. In practical terms, it helps answer questions like who is talking to whom, over which protocols and ports, and how much traffic is being exchanged. That makes it useful for capacity, troubleshooting, and unusual-traffic analysis.

This is different from Syslog, which reports device events, and from general SNMP polling, which focuses more on device and interface counters.

Exam trap

A common exam trap is selecting Syslog or DHCP when asked about traffic visibility. Syslog focuses on logging system events and device messages, not on analyzing who is sending traffic or how much. DHCP is solely for IP address assignment and does not provide any traffic flow data.

Candidates might confuse these because they are familiar Cisco technologies, but neither provides the flow-level traffic insight that NetFlow offers. Misunderstanding the purpose of these protocols leads to incorrect answers, especially under time pressure.

Why the other options are wrong

B

Syslog is incorrect because it focuses on logging device events and messages rather than providing traffic flow or volume information necessary for identifying heavy traffic sources.

C

DHCP is incorrect since it only assigns IP addresses and network settings to hosts and does not offer any insight into traffic patterns or flow data.

D

PortFast is incorrect because it is a Spanning Tree Protocol feature that accelerates port forwarding state transitions and does not relate to traffic monitoring or analysis.

326
Matchingeasy

Match each HTTP method to its common REST API action.

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; PUT replaces; PATCH partially updates; DELETE removes; OPTIONS queries available methods.

Exam trap

Be careful not to confuse PUT (full replacement) with PATCH (partial update). Also, remember that GET is read-only and should not create or modify data.

327
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 a Cisco 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 the RADIUS server, then configure AAA authentication, then enable 802.1X globally, and finally apply per-interface 802.1X settings.

Exam trap

Do not confuse the order: the RADIUS server must be defined before AAA authentication, and AAA must be configured before enabling 802.1X globally. A common trap is to enable 802.1X too early.

328
MCQmedium

An engineer wants users to get fast link-up on access ports but also wants the switch to disable a port if another switch is connected and sends BPDUs. Which combination of features best meets that requirement?

C.Root Guard and VTP pruning
D.Port security and CDP
AnswerA

PortFast bypasses the spanning-tree listening and learning states, allowing a host-facing access port to transition directly to forwarding and deliver immediate link-up. BPDU Guard complements this by shutting the port in an error-disabled state if any BPDU is received, which blocks an accidental or rogue switch connection while preserving the fast-start behavior for legitimate hosts. Together they form the standard Cisco edge-port hardening pair.

Why this answer

PortFast and BPDU Guard are the classic edge-port combination for this requirement. PortFast helps a user-facing interface begin forwarding quickly so a PC or phone does not wait through the normal spanning-tree transition delay. BPDU Guard adds protection by monitoring that same port for BPDUs.

If a switch is accidentally or intentionally connected and starts participating in spanning tree, BPDU Guard reacts by disabling the port to protect the Layer 2 topology. In plain language, users get quick connectivity when the port is used correctly, but the network still protects itself against someone plugging in a switch where only an endpoint should exist. That is exactly what the requirement asks for.

Exam trap

Avoid confusing BPDU Guard with other guard features like Root Guard or Loop Guard, which serve different purposes.

Why the other options are wrong

B

DHCP snooping and DAI (Dynamic ARP Inspection) do not address the requirement of disabling a port upon receiving BPDUs; they focus on protecting against rogue DHCP servers and ARP spoofing, respectively.

C

Root Guard and VTP pruning do not address the requirement of quickly enabling access ports and disabling them upon receiving BPDUs. Root Guard is used to prevent a port from becoming a root port, while VTP pruning optimizes VLAN traffic, neither of which directly manage port states based on BPDU reception.

D

Port security and CDP do not provide the necessary functionality to disable a port when BPDUs are received. Port security can limit the number of MAC addresses but does not specifically address BPDU handling.

329
MCQhard

A router performing PAT is using a single public IPv4 address for many inside hosts. Which value most often distinguishes one inside flow from another on the same outside address?

A.TTL
C.TCP or UDP source port
D.MAC address of the host
AnswerC

PAT (Port Address Translation) multiplexes many internal hosts onto a single public IPv4 address by rewriting the transport-layer source port. Each active flow is uniquely identified by the combination of the public IP, the source port, and the destination IP/port, allowing the router to reverse the translation and deliver return traffic to the correct internal host. Without port differentiation, all internal hosts would appear as the same IP with no way to distinguish their connections.

Why this answer

PAT commonly multiplexes sessions by translating Layer 4 source port numbers.

Exam trap

A common exam trap is selecting TTL or DSCP as the distinguishing value for inside flows in PAT. TTL is often mistaken because it changes during routing, but it does not uniquely identify sessions. DSCP is related to Quality of Service and does not influence NAT translations.

Another trap is thinking MAC addresses can be used to differentiate flows; however, MAC addresses are stripped and replaced at each routed hop, so they are irrelevant in PAT. The correct distinguishing factor is the TCP or UDP source port number, which PAT uses to multiplex multiple inside hosts over a single public IP address.

Why the other options are wrong

A

TTL is not the main distinguishing value PAT uses because it changes as packets traverse routers and does not uniquely identify individual flows in NAT translations.

B

DSCP is a QoS marking used to prioritize traffic and does not play a role in NAT or PAT flow differentiation, so it cannot distinguish inside flows sharing one outside IP.

D

MAC addresses are Layer 2 addresses that are not preserved across routed NAT boundaries, so they cannot be used to distinguish flows in PAT.

330
MCQmedium

Exhibit: A network engineer wants to identify which applications are consuming most WAN bandwidth over time. Which feature should be enabled on the router?

A.NTP authentication
B.NetFlow
C.DNS forwarding
AnswerB

NetFlow is a flow-based telemetry technology on Cisco devices that captures packet metadata such as source and destination IP addresses, port numbers, protocol, and byte counts, aggregating them into unidirectional or bidirectional flows. By analyzing these flow records, an engineer can identify applications by matching well-known port numbers or using NBAR to classify application signatures, making it ideal for application visibility and traffic profiling.

Why this answer

NetFlow records conversations and traffic characteristics so an external collector can analyze top talkers, protocols, and usage trends. Syslog and SNMP have different purposes.

Exam trap

A frequent exam trap is mistaking features like DHCP snooping or DNS forwarding as tools for bandwidth monitoring. DHCP snooping is a Layer 2 security mechanism that prevents unauthorized DHCP servers but does not provide traffic usage data. DNS forwarding helps resolve domain names faster but does not track or analyze bandwidth consumption.

Another trap is confusing NTP authentication, which secures time synchronization, with traffic profiling tools. Candidates must recognize that only NetFlow collects detailed flow information necessary to identify which applications consume the most WAN bandwidth over time.

Why the other options are wrong

A

NTP authentication protects the integrity of time synchronization between devices but does not provide any mechanism for monitoring or analyzing network traffic flows or bandwidth usage.

C

DNS forwarding improves domain name resolution efficiency but does not collect or analyze traffic flow information related to bandwidth consumption.

D

DHCP snooping is a security feature that prevents unauthorized DHCP servers at Layer 2 and does not provide any traffic profiling or bandwidth monitoring capabilities.

331
MCQhard

A small office uses PAT for user Internet access. What mechanism does PAT use to allow many users to share one public address while keeping their sessions distinct?

A.Use transport-layer port values to distinguish multiple inside sessions behind one outside address.
B.Convert all inside hosts to the same private IP address.
C.Increase the size of the NAT pool to include multiple public addresses.
D.Configure static NAT mappings for each inside host.
AnswerA

Port Address Translation (PAT) multiplexes thousands of internal hosts through a single public IPv4 address by rewriting the source port along with the source IP in each packet. The NAT router builds a session table that maps each inside local address and TCP/UDP port to the outside global address plus a unique translated port, allowing return traffic to be correctly demultiplexed. This is exactly how one outside address can simultaneously support many inside sessions.

Why this answer

PAT (Port Address Translation) distinguishes multiple inside sessions by rewriting the source port number for each connection while using the same public IP address. This transport-layer port translation allows many internal hosts to share one outside address without conflict. The correct answer identifies the use of port numbers, which is the core mechanism.

Increasing the NAT pool or using static NAT would not enable sharing of a single public address. Changing private IPs to be identical or disabling routes are irrelevant to PAT's operation.

Exam trap

A common mistake is thinking PAT requires all inside hosts to have the same private IP or that adding more public IPs is the primary method for sharing a single address.

Why the other options are wrong

B

Converting all inside hosts to the same private IP would cause addressing conflicts and break basic connectivity, not enable PAT.

C

Increasing the NAT pool provides more public addresses but does not allow many users to share one public address via port translation.

D

Static NAT requires a dedicated public IP per host, preventing many-to-one sharing.

332
MCQmedium

A DHCP server is located on a different VLAN from the clients. Which feature is required so the clients can still receive addresses?

B.DHCP relay
D.NAT overload
AnswerB

DHCP relay is the correct solution because DHCP clients send broadcast DISCOVER messages, and routers do not forward broadcasts between VLANs. A relay agent such as an ip helper-address command on the router's SVI intercepts the broadcast, unicasts it to the DHCP server's IP, and relays the server's OFFER/ACK back to the client, enabling cross-subnet address assignment.

Why this answer

DHCP relay forwards client broadcasts to a remote server as unicast, typically using ip helper-address on the Layer 3 interface.

Exam trap

A common exam trap is selecting DHCP snooping as the solution for clients on different VLANs to receive DHCP addresses. DHCP snooping is a security mechanism that filters DHCP messages to prevent rogue servers but does not forward DHCP broadcasts across VLANs. Another tempting but incorrect choice is port security, which controls MAC address access on switch ports but does not affect DHCP broadcast forwarding.

NAT overload is unrelated to DHCP address assignment and only translates IP addresses for outbound traffic. The key misunderstanding is confusing DHCP relay’s role in forwarding broadcasts with security or address translation features.

Why the other options are wrong

A

DHCP snooping is a security feature that prevents unauthorized DHCP servers by filtering DHCP messages. It does not forward DHCP broadcasts across VLANs, so it cannot enable clients on different VLANs to receive addresses.

C

Port security restricts the number and identity of MAC addresses on switch ports to enhance security. It does not affect DHCP broadcast forwarding or enable clients to receive addresses from servers on different VLANs.

D

NAT overload translates multiple private IP addresses to a single public IP address for outbound traffic. It does not address the issue of forwarding DHCP broadcasts between VLANs or enable DHCP clients to obtain addresses from remote servers.

333
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure and apply an extended ACL that permits only HTTP traffic from the 192.168.1.0/24 network to the server at 10.0.0.1, with the ACL applied inbound on the router's GigabitEthernet0/0 interface, and then verify the configuration.

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 config mode. Create the ACL permitting HTTP from the source network to the destination host. Apply it inbound on the correct interface.

Then exit and verify.

Exam trap

Pay attention to the direction of ACL application (inbound vs outbound) and the specific verification command. Also, ensure you exit configuration mode before verifying, as some show commands are available in config mode but the standard workflow is to exit first.

334
MCQmedium

Which term in the CIA triad refers to ensuring systems and data remain accessible when needed?

A.Availability
B.Integrity
C.Accounting
D.Confidentiality
AnswerA

Availability in the CIA triad ensures that systems and data are accessible to authorized users when they need them, addressing uptime, redundancy, fault tolerance, and resilience against denial-of-service attacks. The prompt's phrase 'ensuring systems and data can be accessed when needed' is the textbook definition of availability, making it the correct choice among the four options.

Why this answer

The term is availability. In plain language, availability means that authorized users should be able to reach systems, services, and data when they actually need them. If a service is down, overwhelmed, or otherwise unreachable, availability has been affected. This is different from confidentiality, which focuses on preventing unauthorized disclosure, and integrity, which focuses on preventing unauthorized change.

This distinction matters because the CIA triad appears often in security foundations and exam questions. Availability is not about whether data is secret or whether it has been altered; it is about whether the service is usable. That is why availability is the best answer here.

Exam trap

A frequent exam trap is confusing availability with confidentiality or integrity because all three belong to the CIA triad. Candidates may incorrectly choose confidentiality, thinking about data protection, or integrity, focusing on data accuracy. However, availability specifically means ensuring systems and data remain accessible when needed.

Misreading the question or overthinking the triad components leads to selecting the wrong term. Remember, availability is about uptime and access, not secrecy or correctness, which are confidentiality and integrity respectively.

Why the other options are wrong

B

Integrity is incorrect because it focuses on protecting data from unauthorized changes, not on ensuring access or uptime of systems and data.

C

Accounting is incorrect as it is part of the AAA framework (Authentication, Authorization, Accounting) and not a component of the CIA triad, so it does not relate to system availability.

D

Confidentiality is incorrect because it deals with preventing unauthorized disclosure of information, not with ensuring that systems and data are accessible when required.

335
MCQmedium

R1 receives an OSPF route to 10.55.0.0/16 and already has a static route to 10.55.10.0/24. Which route will be used for traffic sent to 10.55.10.25?

A.The OSPF /16 route, because dynamic routes override static routes learned later.
B.The static /24 route, because it is the longest-prefix match.
C.Both routes equally, because they point to the same major network.
D.Neither route, because overlapping routes are invalid.
AnswerB

The router performs a longest-prefix-match lookup in its forwarding table, and 10.55.0.0/24 has a longer prefix (more specific) than 10.55.0.0/16. Because the static route matches more bits of the destination address, it is the best route for any traffic destined to that subnet. This rule takes precedence over administrative distance or route source, so the /24 static route is always selected over the /16 OSPF route.

Why this answer

The static /24 route is more specific than the OSPF /16 route, so longest-prefix match wins. Administrative distance is only compared among routes to the same prefix length.

Exam trap

Remember that the longest-prefix match rule takes precedence over administrative distance when routes have different prefix lengths.

Why the other options are wrong

A

This option is incorrect because static routes are preferred over dynamic routes in OSPF when both are present, regardless of when they were learned. The static route to 10.55.10.0/24 will be used due to its longer prefix match.

C

This option is incorrect because OSPF routes do not share equal preference with static routes; the static /24 route will be preferred due to its longer prefix length, making it the best match for the specific destination IP.

D

This option is incorrect because overlapping routes are valid in routing protocols like OSPF, and both routes can coexist in the routing table. The static route to 10.55.10.0/24 is valid and will be preferred due to its longer prefix length.

336
MCQeasy

Which STP role identifies the port on a non-root switch that has the best path back to the root bridge?

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

The root port is the single port on a non-root switch that has the lowest root path cost to the root bridge, making it the switch's best path toward the root. It is determined by examining received BPDUs, comparing root path cost, then sender bridge ID, then sender port ID. This port is placed in the forwarding state and is the only port that actively forwards traffic toward the root, ensuring a loop-free topology.

Why this answer

The root port is the single port on a non-root switch that provides the lowest-cost path toward the root bridge. Designated ports forward away from the root for a segment, and alternate ports are backup paths.

Exam trap

A frequent exam trap is mistaking the designated port for the root port. While both forward traffic, the designated port is selected per LAN segment to forward frames away from the root bridge, not necessarily providing the best path back to the root. Another trap is confusing the alternate port with the root port; alternate ports are backup paths kept in blocking state and do not forward traffic unless the root port fails.

Candidates often overlook that the root port is unique per non-root switch and always represents the lowest-cost path to the root bridge, which is the key to answering this question correctly.

Why the other options are wrong

A

Designated ports are selected for each LAN segment to forward traffic away from the root bridge, but they do not represent the best path back to the root bridge on a non-root switch. Therefore, this option is incorrect.

C

Alternate ports serve as backup paths and remain in a blocking state unless the root port fails. They do not identify the best path back to the root bridge, so this option is incorrect.

D

Disabled ports do not participate in STP forwarding or path selection and are not related to identifying the best path back to the root bridge, making this option incorrect.

337
MCQhard

A standard ACL and an extended ACL are both available for a design. Which requirement most strongly indicates that an extended ACL is needed?

A.The policy must distinguish traffic by destination, protocol, or port.
B.The policy needs to match only one source subnet.
C.The ACL must be placed near the destination.
D.The network uses IPv6 instead of IPv4.
AnswerA

A standard ACL identifies traffic solely by source IPv4 address, so any policy that must differentiate flows by destination address, protocol number, or TCP/UDP port is impossible with a standard ACL. Extended access lists (100–199 and 2000–2699) are required because they evaluate source, destination, protocol, and port fields. Thus, this criterion forces the extended ACL choice.

Why this answer

An extended ACL is most strongly indicated when the policy must match not just on source address, but also on destination, protocol, or port information. In practical terms, if the requirement is something like “block HTTP but allow SSH” or “deny traffic to one server but not another,” a standard ACL is too limited because it mainly matches only the source. Option B (matching only one source subnet) can be done with a standard ACL, so it does not demand an extended ACL.

Option C (placement near destination) is a guideline for standard ACLs, not a reason to choose an extended ACL. Option D (IPv6) is irrelevant because the scenario explicitly states both ACL types are available and standard ACLs do not exist for IPv6—this question is about IPv4 ACLs.

Exam trap

Remember that standard ACLs can only filter based on source IP addresses. If the requirement involves protocols or ports, think extended ACL.

Why the other options are wrong

B

Matching only one source subnet can be accomplished with a standard ACL, so this does not strongly indicate a need for an extended ACL.

C

Placing an ACL near the destination is a characteristic of standard ACLs, not a criterion that selects an extended ACL.

D

The scenario assumes both standard and extended ACLs are available; standard ACLs do not exist for IPv6, so this requirement does not apply to the IPv4 ACL choice.

338
MCQhard

Why is the combination of strong authentication and centralized logging generally better than using either one alone?

A.Authentication helps prevent unauthorized access, while centralized logging improves visibility and investigation.
B.They are redundant because both perform exactly the same function.
C.Centralized logging makes authentication unnecessary.
D.Strong authentication removes the need for device event records.
AnswerA

This is correct because the two controls complement each other.

Why this answer

The combination is better because strong authentication helps prevent unauthorized access, while centralized logging helps detect, review, and investigate activity across the environment. In plain language, one control focuses more on prevention, while the other improves visibility and accountability. Together they create a stronger security posture than either one alone.

This is an important design mindset. Security is stronger when controls complement each other instead of trying to solve every problem with one mechanism. The correct answer is the one focused on prevention plus visibility.

Exam trap

Avoid assuming that two controls can cover all security needs or that combining them simplifies architecture.

Why the other options are wrong

B

Option B is incorrect because strong authentication and centralized logging serve distinct functions; authentication secures access while logging tracks and analyzes events, enhancing security and compliance.

C

This option is incorrect because centralized logging does not eliminate the need for authentication; both are essential for a comprehensive security posture. Authentication verifies user identity, while logging tracks access and actions for auditing and incident response.

D

This option is wrong because strong authentication does not eliminate the need for device event records; both are essential for comprehensive security management. Device event records provide critical insights into system activity, which strong authentication alone cannot address.

339
PBQhard

You are connected to R1, a multilayer switch acting as a DNS client and DNS server for the local network. The network uses 192.168.1.0/24 for internal hosts. Users report that hostnames like 'server1.example.com' fail to resolve. Diagnose and fix the DNS resolution issue using nslookup and dig. Ensure that R1 can resolve both forward and reverse DNS queries correctly.

Network Topology
192.168.1.0/24G0/0203.0.113.0/30SiR1Internal HostsInternet

Hints

  • Check if the DNS forwarder is reachable; if not, you may need to configure local DNS records.
  • Use 'ip host' to create an A record, and 'ip dns primary' for reverse zone with PTR.
  • Remove the unreachable name-server with 'no ip name-server' to stop using it.
A.Configure R1 as a local DNS server with an A record for server1.example.com (192.168.1.10) and a PTR record for 192.168.1.10, then remove the unreachable forwarder 192.0.2.53 and ensure ip domain lookup uses the local server.
B.Configure R1 as a DNS server with only an A record for server1.example.com (192.168.1.10) and keep the forwarder 192.0.2.53 for other queries.
C.Remove the forwarder 192.0.2.53 and configure R1 as a DNS server with only a PTR record for 192.168.1.10.
D.Change the DNS forwarder to a reachable server like 8.8.8.8 and add a PTR record for 192.168.1.10 on R1.
AnswerA
solution
! R1
ip dns server
ip host server1.example.com 192.168.1.10
ip dns primary 1.168.192.in-addr.arpa soa ns.example.com admin.example.com 1 3600 900 604800 86400
ip dns primary 1.168.192.in-addr.arpa ns ns.example.com
ip dns primary 1.168.192.in-addr.arpa ptr 10 1.168.192.in-addr.arpa server1.example.com
no ip name-server 192.0.2.53

Why this answer

The issue is twofold: first, the DNS forwarder (192.0.2.53) is unreachable, causing forward lookups to fail with NXDOMAIN; second, there is no PTR record for the reverse lookup zone. The forward lookup failure is because R1 is configured to use an unreachable external DNS server. The reverse lookup failure is because no PTR record exists for the host IP.

To fix, either configure a reachable DNS forwarder or enable local DNS server with appropriate records. Here, we configure R1 as a local DNS server with an A record for 'server1.example.com' pointing to 192.168.1.10 and a PTR record for the reverse lookup. Then we remove the unreachable forwarder and ensure ip domain lookup uses local server.

Exam trap

Students often forget that reverse DNS requires a PTR record in addition to the A record. Also, they may not verify that the DNS forwarder is reachable; simply adding records without removing an unreachable forwarder will not fix forward lookups. Always check both forward and reverse resolution requirements.

Why the other options are wrong

B

The forwarder is unreachable, so keeping it will cause forward lookups to fail. Also, reverse lookup requires a PTR record, which is missing.

C

Forward lookups require an A record mapping the hostname to an IP address; without it, forward queries return NXDOMAIN.

D

The scenario expects R1 to be a local DNS server for internal hosts; using an external forwarder for internal hostnames is not best practice and may not resolve internal names if the forwarder doesn't have the records.

340
Multi-Selectmedium

A branch router is acting as a DHCP server. Which two parameters can it provide directly to clients through DHCP?

Select 2 answers
B.DNS server address
C.OSPF area number
D.Switch port duplex setting
E.STP root bridge priority
AnswersA, B

DHCP Option 3 (Router) is used by clients to reach subnets beyond their local segment. When a branch router acts as a DHCP server, it must advertise a default gateway—typically its own LAN interface address—so endpoints can send off-subnet traffic. Without this parameter, clients can only communicate within the local broadcast domain.

Why this answer

DHCP (Dynamic Host Configuration Protocol) is designed to automatically assign IP configuration parameters to clients. The default gateway (option 3) and DNS server address (option 6) are standard DHCP options defined in RFC 2132, which a router acting as a DHCP server can directly provide to clients to enable network connectivity and name resolution.

Exam trap

Cisco often tests the distinction between DHCP-provided parameters (Layer 3/4) and switch-specific or routing protocol parameters (Layer 2/3), leading candidates to mistakenly select options like OSPF area or STP priority that are not DHCP options.

Why the other options are wrong

C

DHCP provides IP configuration parameters like default gateway and DNS server, not routing protocol parameters. OSPF area number is a routing protocol setting configured manually on routers, not assigned via DHCP.

D

DHCP provides IP configuration parameters like default gateway and DNS server, not physical layer settings like switch port duplex. Duplex is configured locally on the switch interface, not assigned via DHCP.

E

STP root bridge priority is a Spanning Tree Protocol parameter used to elect the root bridge in a switched network, not a DHCP-provided parameter. DHCP can only supply IP configuration parameters like default gateway and DNS server.

341
MCQhard

An administrator needs to configure an ACL to block HTTP traffic from subnet 10.10.10.0/24 to the web server at 172.16.1.10 while permitting all other traffic. Which ACL entry should be placed first?

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

This ACE must be listed first because ACLs are evaluated top-down, and this entry precisely matches TCP segments destined to port 80 from the 10.10.10.0/24 subnet to host 172.16.1.10. By specifying both the protocol (TCP) and the destination port (80), it denies only HTTP traffic to that server while leaving all other IP traffic, such as HTTPS or SSH, untouched and available for subsequent permit statements.

Why this answer

The ACL needs a narrow deny statement that matches only TCP port 80 from the specified source subnet to the specific server. In practical terms, the requirement is not to block all IP traffic or all access to the host. It is to stop normal HTTP while allowing everything else. That means the entry must be precise.

This is the kind of ACL question the CCNA exam likes because it forces you to distinguish protocol, destination, and service rather than relying on vague source-only logic.

Exam trap

Be careful to distinguish between blocking all traffic and blocking specific services. Ensure you understand the requirement to block only HTTP traffic, not all IP traffic.

Why the other options are wrong

B

Option B is incorrect because it denies all IP traffic from the specified source to the destination, which is broader than required and does not specifically target HTTP traffic on port 80.

C

Option C is incorrect because it permits HTTP traffic from the specified source to the web server, which is contrary to the requirement to block this traffic. The question specifically asks for a rule that denies HTTP access.

D

Option D is incorrect because it specifies 'deny udp', which does not block HTTP traffic, as HTTP uses TCP, not UDP. Therefore, it fails to meet the requirement of blocking HTTP from the specified source to the web server.

342
MCQhard

An administrator wants to prevent a specific subnet from using Telnet to reach network devices, while still allowing SSH from that same subnet. What is the strongest reason a standard ACL is not enough by itself?

A.Because the policy must distinguish Telnet from SSH, which requires protocol or port-level matching.
B.Because standard ACLs are valid only on wireless networks.
C.Because Telnet and SSH always use the same destination port.
D.Because SSH can never be filtered with ACLs.
AnswerA

This is correct because source-only matching cannot separate those two protocols.

Why this answer

A standard ACL is not enough by itself because the policy depends on distinguishing different protocols or destination ports, not just source address. In practical terms, the source subnet is the same for both Telnet and SSH. The ACL therefore needs to tell those two management protocols apart, which requires more granular matching than source-only logic.

This is one of the clearest examples of why extended ACL capability matters.

Exam trap

Do not confuse the capabilities of standard ACLs with those of extended ACLs. Remember, standard ACLs filter only by source IP.

Why the other options are wrong

B

Standard ACLs are not limited to wireless networks; they can be applied to any interface on a router, including wired connections. This option misrepresents the applicability of standard ACLs.

C

This option is incorrect because Telnet and SSH use different destination ports; Telnet typically uses port 23, while SSH uses port 22, allowing for distinct filtering in ACLs.

D

This option is incorrect because SSH can indeed be filtered using ACLs, as they can match traffic based on IP addresses and protocols. Standard ACLs can be applied to control SSH traffic just like any other traffic type.

343
MCQhard

Which NAT design is most appropriate when many inside users need outbound Internet access through one public IPv4 address, but no inbound server publishing is required?

A.PAT overload
B.Static NAT for every host
C.No NAT, because private IPv4 addresses are Internet-routable
D.DHCP relay
AnswerA

PAT overload (Port Address Translation) is the correct choice because it allows many internal devices to share a single public IPv4 address by multiplexing sessions based on transport-layer port numbers. Each inside host's traffic is assigned a unique source port, enabling thousands of concurrent outbound connections from a single public IP. This conserves the limited public IPv4 address space and is the standard solution for providing Internet access to a large user population.

Why this answer

The most appropriate design is PAT overload. In practical terms, many internal users can share one public IPv4 address because PAT distinguishes their sessions using transport-layer ports. This is the most common solution when the requirement is outbound access for many clients rather than predictable inbound access to a specific internal server.

Static NAT would be the wrong design here because it creates fixed one-to-one mappings and consumes more public address space than needed for this use case. PAT is specifically built for many-to-one outbound translation.

Exam trap

A frequent exam trap is selecting static NAT or no NAT for outbound Internet access when many internal users share one public IP. Static NAT creates one-to-one mappings, consuming excessive public IP addresses unnecessarily. Choosing no NAT assumes private IPv4 addresses are routable on the Internet, which is false.

Another trap is confusing DHCP relay with NAT; DHCP relay only forwards DHCP messages and does not perform address translation. Candidates must recognize that PAT overload is the correct design for many-to-one outbound translation without inbound server publishing, avoiding these common misconceptions.

Why the other options are wrong

B

Static NAT for every host is incorrect because it requires a unique public IP address per internal host, which is inefficient and unnecessary when only outbound access is needed without inbound server publishing.

C

No NAT is incorrect because private IPv4 addresses are not routable on the public Internet and must be translated to public addresses to communicate externally.

D

DHCP relay is incorrect because it only forwards DHCP messages between clients and servers and does not perform any IP address translation or NAT functions.

344
MCQhard

A switch shows a clock that is several minutes off from other devices even though an NTP server has been configured. Which issue is the most likely cause?

A.The NTP server is unsynchronized or unreachable
B.The device must run Syslog before NTP can sync
C.NTP requires a trunk port on the management VLAN
D.The clock can sync only if DNS is configured
AnswerA

NTP clients trust time only from a server that is both reachable and itself synchronized to a reference clock. When the server is unreachable (e.g., UDP 123 is filtered) or its stratum is too high because it lost its upstream source, the switch discards the NTP packets and retains the local clock, which drifts after several minutes. The remedy is to verify the server's stratum and reachability before adjusting anything else.

Why this answer

NTP requires IP reachability to the time source. If the NTP server is unreachable due to routing or ACL issues, the switch falls back to its local clock, causing drift. Option A is correct.

Option B is wrong because Syslog has no effect on NTP synchronization. Option C is incorrect because NTP does not require a trunk port; it can operate over any VLAN with IP connectivity. Option D is false because DNS is only needed if the NTP server is specified by hostname; the server can be reached by IP address without DNS.

Exam trap

A common mistake is thinking that unrelated services like Syslog, trunk ports, or DNS are prerequisites for NTP; only IP connectivity to a synchronized NTP server matters.

Why the other options are wrong

B

Syslog and NTP are independent protocols; Syslog does not need to run before NTP can synchronize.

C

NTP works over any IP network; there is no requirement for a trunk port on the management VLAN.

D

DNS is only needed if the NTP server is referenced by hostname rather than IP address; many configurations use IP addresses directly.

345
MCQmedium

Users on a new access switch can reach devices in their own VLAN but cannot reach the default gateway on the distribution switch. Based on the exhibit, what is the most likely cause?

A.VLAN 30 is missing from the allowed VLAN list on the trunk.
B.The user ports should be configured as trunks.
C.The SVI for VLAN 30 must be shutdown for inter-VLAN routing to work.
D.The trunk native VLAN must be changed to VLAN 30.
AnswerA

On a trunk, a VLAN must be present in the allowed VLAN list for its frames to traverse the link. If VLAN 30 was not explicitly added to the allowed list, frames from that VLAN are dropped at the trunk port, so they never reach the distribution switch. This prevents inter-VLAN routing even though local hosts within VLAN 30 on the access switch can communicate. Adding 'allowed vlan add 30' to the trunk configuration restores connectivity.

Why this answer

The trunk allows only VLANs 10 and 20, so VLAN 30 traffic never crosses the uplink. Local switching inside VLAN 30 on the access switch can still work, which is why same-VLAN communication succeeds. Adding VLAN 30 to the allowed list is the direct fix.

Exam trap

A common exam trap is assuming that user ports must be trunks to enable VLAN communication beyond the local switch. In reality, user ports should remain access ports assigned to a single VLAN. Another trap is thinking that the SVI for VLAN 30 must be shut down to fix routing issues, but an active SVI is necessary for inter-VLAN routing.

Additionally, candidates may incorrectly focus on native VLAN mismatches, which do not block VLAN 30 traffic if the VLAN is not allowed on the trunk. The real issue is the missing VLAN 30 in the trunk's allowed VLAN list, which prevents VLAN 30 frames from reaching the distribution switch and the default gateway.

Why the other options are wrong

B

Incorrect because user ports should be configured as access ports, not trunks. Configuring user ports as trunks is unnecessary and can cause security and connectivity issues.

C

Incorrect because the SVI for VLAN 30 must be active for inter-VLAN routing to function. Shutting down the SVI would prevent routing, not enable it.

D

Incorrect because changing the trunk native VLAN to VLAN 30 is unrelated to the problem. Native VLAN mismatches affect untagged traffic but do not block VLAN 30 tagged frames if the VLAN is allowed.

346
MCQhard

An engineer wants remote administrative access to remain available but also wants session contents protected in transit. Which management choice best supports that goal?

A.SSH
C.Open wireless access
AnswerA

SSH (Secure Shell) is the correct choice because it provisions an encrypted tunnel for remote administrative sessions, typically on TCP port 22. It validates the server's identity via host keys, encrypts all authentication material and subsequent command output, and provides integrity checking. This protects credentials and configuration changes from being observed or tampered with en route, making it the only listed option that offers secure remote administration.

Why this answer

The best choice is SSH because it provides encrypted remote administrative access. In plain language, the engineer wants administrators to keep managing devices remotely, but without exposing credentials or session contents in clear text. SSH solves that by protecting the traffic in transit, which is why it is preferred over older plaintext protocols such as Telnet.

This is a core management-plane security principle. The goal is not to remove remote administration, but to perform it safely. The correct answer is the one that aligns with secure remote access rather than convenience at the expense of protection.

Exam trap

A common exam trap is selecting Telnet because it allows remote access, ignoring that it transmits data in clear text. This mistake overlooks the critical security requirement to protect session contents during transit. Another trap is choosing options unrelated to encryption, such as native VLAN or open wireless access, which do not address secure remote management.

Candidates must focus on protocols that provide confidentiality and integrity for administrative sessions, not just connectivity.

Why the other options are wrong

B

Telnet is incorrect because it transmits data in clear text, exposing sensitive information to attackers and failing to protect session contents during transit.

C

Open wireless access is unrelated to secure remote management; it does not provide encryption or protect administrative sessions, making it irrelevant to the question.

D

Native VLAN 1 configuration does not affect encryption or security of remote management protocols, so it does not support the goal of protecting session contents.

347
MCQhard

A network engineer notices that internal hosts (192.168.1.0/24) can reach external servers on the internet, but replies from external servers never reach the internal hosts. The router R1 is configured with dynamic NAT to translate the internal subnet to a pool of public IPs (203.0.113.10-203.0.113.20). The engineer runs 'show ip nat translations' and sees only a few stale translations. What is the most likely cause of the issue?

A.The access list 'NAT' is incorrect; it should permit only specific hosts, not the entire subnet.
B.The outside interface (GigabitEthernet0/0) is missing the 'ip nat outside' command.
C.The NAT configuration lacks the 'overload' keyword, so the pool is exhausted quickly.
D.The NAT pool 'POOL' has too few addresses; it should be expanded to a /24 subnet.
AnswerB

The outside interface GigabitEthernet0/0 is missing the 'ip nat outside' command, which breaks NAT in both directions. For NAT to function, each interface must be explicitly marked as either 'ip nat inside' or 'ip nat outside'. With only 'ip nat inside' on the internal interface and no 'ip nat outside' on the external interface, the router will translate the source IP of outgoing packets but will not know to translate the destination IP of incoming return packets. Therefore, the return traffic cannot be matched to the existing translation entry, and the response packets are dropped or sent without translation, causing the no-reply symptom.

Why this answer

The 'ip nat outside' command must be applied to the interface facing the external network (GigabitEthernet0/0) for the router to translate return traffic. Without it, the router does not perform NAT on packets arriving on that interface, so replies from external servers are forwarded without translation back to the inside local IPs, which are not routable on the internet. The stale translations indicate that outbound translations were created but never used for return traffic, confirming the missing outside interface command.

Exam trap

Cisco often tests the requirement that both 'ip nat inside' and 'ip nat outside' must be configured on the respective interfaces for NAT to work bidirectionally, and the trap here is that candidates assume only the inside interface needs the command or confuse the symptom with pool exhaustion or ACL issues.

Why the other options are wrong

A

The access list correctly matches the internal subnet, so this is not the root cause.

C

Even without overload, dynamic NAT should work for the first 11 hosts; the problem is that return packets are not being translated.

D

The pool size is not the issue; the router is not translating return traffic due to missing 'ip nat outside'.

348
MCQmedium

Why is multifactor authentication generally stronger than password-only access?

A.It removes the need for authorization policies.
B.It relies on more than one authentication factor.
C.It guarantees that credentials can never be phished.
D.It replaces encryption on the network.
AnswerB

Multifactor authentication (MFA) is stronger because it requires the user to present at least two independent authentication factors, typically from the categories of knowledge (something you know, e.g., a password), possession (something you have, e.g., a smart card or OTP token), and inherence (something you are, e.g., a fingerprint). By combining factors, an attacker must compromise multiple distinct mechanisms, which dramatically reduces the likelihood of successful unauthorized access compared to relying on a single factor that could be stolen, guessed, or reused.

Why this answer

MFA combines independent factors, so compromise of one factor does not automatically grant access.

Exam trap

A common exam trap is selecting options that overstate MFA’s capabilities, such as assuming it guarantees immunity to phishing or replaces encryption. MFA reduces risk but does not eliminate all attack vectors, and it does not substitute for encryption protocols that protect data in transit. Another trap is confusing authentication with authorization; MFA strengthens authentication but does not remove the need for proper authorization policies.

Recognizing these distinctions is critical to avoid incorrect answers that exaggerate MFA’s role or misunderstand its function in network security.

Why the other options are wrong

A

Option A is incorrect because multifactor authentication strengthens authentication processes but does not remove the need for authorization policies. Authorization controls determine what an authenticated user can access, which remains essential regardless of the authentication method.

C

Option C is incorrect because while MFA reduces the risk of phishing attacks by requiring multiple factors, it does not guarantee that credentials can never be phished. Attackers may still find ways to bypass or trick users into revealing multiple factors.

D

Option D is incorrect because authentication methods like MFA do not replace encryption on the network. Encryption protects data confidentiality and integrity during transmission, which is a separate security function from verifying user identity.

349
Matchingmedium

Match each NAT term to its most accurate description.

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

Concepts
Matches

Private address used by the host on the internal network

Address that represents the internal host to outside networks

Fixed one-to-one translation

Many-to-one translation using ports

Why these pairings

NAT terms describe address perspectives: Inside Local is the internal host's IP, Inside Global is its external IP, Outside Local is the external host's IP seen internally, Outside Global is its actual external IP, Static NAT provides permanent mapping, and Dynamic NAT uses a pool.

Exam trap

The exam trap is confusing the perspective (inside vs. outside) and the location (local vs. global). Remember: 'Local' is the address as seen from the inside network, 'Global' is the address as seen from the outside network.

350
Multi-Selectmedium

Which two features commonly strengthen access-switch security for user-facing ports? (Choose two.)

Select 2 answers
AnswersA, B

Port security strengthens access switch security by constraining the valid source MAC addresses on an interface, typically to a learned or configured set. When a violation occurs, the switch can either drop the frame, shut down the port, or place it in a restricted state, mitigating MAC flooding and unauthorized device attachment. This feature is applied at Layer 2 on access ports, directly controlling end-station connectivity.

Why this answer

Port security can limit learned MAC addresses, and BPDU Guard can shut down an edge port that unexpectedly receives BPDUs.

Exam trap

A common exam trap is selecting administrative distance or route summarization as security features for user-facing access ports. Administrative distance is a routing protocol metric used to select the best path and has no role in access-switch port security. Similarly, route summarization is a routing optimization technique that reduces routing table size but does not affect port security.

Candidates may confuse these routing concepts with security features due to their importance in network design, but they do not strengthen access-switch security for user-facing ports. Recognizing this distinction is critical to avoid losing points on this question.

Why the other options are wrong

C

Administrative distance is a routing protocol metric used to select the best path and does not relate to access-switch port security. It does not control port access or prevent unauthorized devices, so option C is incorrect.

D

Route summarization is a routing optimization technique that reduces routing table size and update traffic. It does not provide any security controls for user-facing switch ports, so option D is incorrect.

351
MCQhard

A monitoring system already collects Syslog and SNMP data. The network team now wants visibility into which applications or host conversations are driving link utilization. What is the strongest addition?

A.NetFlow
B.Another SSID
D.A larger wildcard mask
AnswerA

NetFlow is correct because it captures metadata about traffic flows — including source/destination IPs, ports, and protocol — and exports that data to a collector for analysis. This gives the monitoring system detailed, flow-level visibility into who is talking to whom and how much bandwidth each conversation uses, which syslog and SNMP alone cannot provide. NetFlow complements existing syslog and SNMP data by focusing on network traffic patterns rather than device logs or interface counters.

Why this answer

The strongest addition is NetFlow because it provides traffic-flow visibility. In practical terms, Syslog and SNMP are useful, but they do not directly answer detailed conversation-level questions such as which hosts, protocols, or flows are consuming the most bandwidth. NetFlow is designed to answer exactly that kind of question.

This is about choosing the right operational tool for the visibility gap.

Exam trap

A frequent exam trap is selecting options like PortFast or adding another SSID, which are unrelated to traffic flow monitoring. PortFast is an STP feature that speeds up port transitions but does not provide any insight into bandwidth usage or application-level traffic. Similarly, adding another SSID only affects wireless network segmentation and does not offer visibility into which hosts or applications consume bandwidth.

Another trap is thinking that changing ACL wildcard masks can help analyze traffic flows, but ACLs only filter traffic and do not provide analytics. Recognizing that only NetFlow delivers detailed flow-level data prevents these common mistakes.

Why the other options are wrong

B

Adding another SSID is incorrect because it only creates a new wireless network segment and does not provide any traffic flow or bandwidth usage information. It does not help identify which applications or hosts are using the link.

C

PortFast is an STP feature that speeds up port transitions on edge ports but does not monitor or analyze traffic flows. It has no relevance to identifying bandwidth usage or application-level visibility.

D

Using a larger wildcard mask in ACLs affects traffic filtering rules but does not provide analytics or visibility into traffic flows. ACLs do not report on bandwidth consumption or application usage.

352
Multi-Selectmedium

Which two statements accurately describe DHCP?

Select 2 answers
A.It can automatically provide an IP address to a client.
B.It can provide additional configuration such as default gateway and DNS server information.
C.It resolves hostnames into IP addresses.
D.It elects the designated router in OSPF.
E.It replaces the need for subnet masks.
AnswersA, B

This is correct because address assignment is a core DHCP function.

Why this answer

DHCP is used to provide IP configuration automatically to hosts. In practical terms, it can supply an IP address, subnet mask, default gateway, and often DNS server information. This reduces manual effort and helps standardize endpoint configuration across a network.

The wrong answers often confuse DHCP with DNS or routing. The two correct answers are the ones focused on automatic host configuration.

Exam trap

A common exam trap is confusing DHCP with DNS or routing protocol functions. Some candidates mistakenly believe DHCP resolves hostnames to IP addresses, but this is the role of DNS. Others incorrectly think DHCP participates in routing protocol processes such as OSPF designated router elections, which it does not.

Additionally, some may assume DHCP eliminates the need for subnet masks, but DHCP actually provides subnet mask information to clients. Recognizing that DHCP strictly handles IP address and related configuration assignment prevents these errors.

Why the other options are wrong

C

Incorrect. DHCP does not resolve hostnames to IP addresses; this is the responsibility of DNS, a separate IP service.

D

Incorrect. DHCP does not participate in routing protocol operations like OSPF designated router election, which is a function of OSPF itself.

E

Incorrect. DHCP supplies subnet masks to clients but does not replace the need for subnet masks; subnetting remains a fundamental network design concept.

353
MCQmedium

As a general rule, where should an extended ACL be placed?

A.As close to the source as practical
B.As close to the destination as possible in all cases
C.Only on the default gateway
D.Only on WAN interfaces
AnswerA

Placing an extended ACL as close to the source as practical is the standard rule because extended ACLs can match both source and destination addresses, ports, and protocols. By filtering at the ingress point near the source, you prevent unwanted traffic from consuming bandwidth and processing resources on intermediate routers and links. This early filtering also reduces the risk of the traffic causing harm deeper inside the network, making the policy more efficient and effective.

Why this answer

Extended ACLs are commonly placed near the source to stop unwanted traffic earlier and conserve bandwidth and device resources.

Exam trap

Remember that extended ACLs should be placed near the source, not the destination or core, to effectively manage traffic.

Why the other options are wrong

B

Placing an extended ACL as close to the destination can lead to unnecessary traffic being processed by intermediate devices, which is inefficient. Extended ACLs are designed to filter traffic based on source and destination, so positioning them closer to the source enhances performance and security.

C

This option is incorrect because placing an extended ACL only on the default gateway limits its effectiveness in controlling traffic originating from various sources across the network. Extended ACLs should be strategically placed closer to the source to filter traffic before it reaches the destination.

D

Placing an extended ACL only on WAN interfaces can lead to inefficient traffic filtering, as it may not adequately control traffic originating from internal sources. Extended ACLs should ideally be positioned close to the source to effectively manage traffic before it reaches the destination.

354
MCQhard

A router is configured for PAT using the WAN interface address. Which command element is most directly associated with allowing many internal users to share that single outside address?

A.overload
B.inside
C.list 1
D.interface
AnswerA

The `overload` keyword is the essential PAT enabler in an `ip nat inside source list ... interface ... overload` command. Without it, the router performs only dynamic NAT, mapping one inside local address to one inside global address at a time. Overload forces the router to reuse the single WAN interface IP address by multiplexing sessions through unique transport-layer port numbers, supporting many inside hosts simultaneously. This keyword directly translates to Port Address Translation, making it the correct answer.

Why this answer

The `overload` element is the critical part. In plain language, that keyword tells the router to perform Port Address Translation so many inside sessions can be represented through the same outside IP address at the same time. Without overload, the router would be performing a different translation behavior and would not achieve the same many-to-one sharing model.

This is one of the most recognizable NAT design terms in CCNA because it directly distinguishes PAT from simple one-to-one translation methods. The correct answer is the part of the configuration that signals multi-session sharing through port tracking.

Exam trap

A common exam trap is selecting options like `inside`, `list 1`, or `interface` as the element that enables multiple internal users to share a single outside address. While these elements are part of the NAT configuration, they do not by themselves enable PAT. The `inside` keyword only marks interfaces as internal, the ACL (`list 1`) defines which addresses are translated, and specifying the `interface` chooses the public IP address source.

However, without the `overload` keyword, the router cannot perform port-based multiplexing, so many-to-one sharing fails. Candidates often overlook that `overload` is the explicit command that activates PAT, making it the correct answer.

Why the other options are wrong

B

Incorrect. The `inside` keyword only marks an interface as internal for NAT direction but does not enable multiple hosts to share one outside address.

C

Incorrect. The access list (`list 1`) specifies which internal addresses are translated but does not activate PAT or many-to-one sharing by itself.

D

Incorrect. Specifying the interface determines the outside IP address used for translation but does not enable PAT without the `overload` keyword.

355
MCQhard

Exhibit: Users report no internet access after PAT was configured. The inside and outside interfaces are marked correctly. Which missing configuration is the most likely cause?

A.No ACL and nat overload statement identifying inside source addresses
B.No DHCP pool on the outside interface
C.No CDP enabled on the router
D.No syslog server configured
AnswerA

For PAT to be operational, the router must have an access list that identifies the inside local source addresses to be translated, along with an ip nat inside source list <ACL> interface <outside> overload statement that actually enables port address translation. Without this ACL and overload rule, the router has no dynamic translation entry, so private inside addresses are forwarded untranslated to the ISP and the return traffic cannot be routed back. This missing configuration directly causes the intermittent or complete loss of internet access, making it the correct root cause.

Why this answer

PAT needs both the inside and outside interface roles and a NAT statement referencing an ACL that identifies the inside local addresses. Without the ACL match and NAT overload rule, translation does not occur for user traffic.

Exam trap

A frequent exam trap is believing that configuring the inside and outside interfaces alone is enough for PAT to function correctly. Candidates may overlook the necessity of an ACL that explicitly identifies the inside local addresses for translation. Without this ACL and the corresponding NAT overload statement, the router cannot perform address translation, causing intermittent or failed internet connectivity.

This mistake often occurs because the interface roles are visible and seem sufficient, but the translation logic depends on the ACL match. Understanding that PAT requires both interface roles and an ACL-based NAT overload rule is critical to avoid this pitfall.

Why the other options are wrong

B

Incorrect. DHCP pools assign IP addresses to clients and are unrelated to NAT or PAT configuration. Lack of a DHCP pool on the outside interface does not affect PAT functionality.

C

Incorrect. CDP is a Layer 2 protocol used for device discovery and does not influence NAT or PAT operations. Its absence does not cause internet access issues related to PAT.

D

Incorrect. Syslog servers are used for logging and monitoring router events. Not configuring a syslog server does not impact NAT translation or internet connectivity.

356
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure and apply an extended IPv4 ACL on a Cisco router to block Telnet traffic from subnet 192.168.1.0/24 to host 10.0.0.1 and permit all other IP traffic.

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

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

Why this order

Correct order: 1) Identify the traffic to filter and the interface/direction because this planning determines all subsequent configuration choices. 2) Enter global configuration mode to access ACL definition. 3) Configure the deny statement first — ACLs are processed top-down, so the specific deny must precede the general permit to actually block the unwanted traffic. 4) Add the permit statement after the deny to allow everything else. 5) Enter interface configuration mode to attach the ACL to a specific port. 6) Apply the ACL with the correct direction (inbound) using the ip access-group command, which activates the filtering. 7) Verify the ACL is correctly applied to confirm the configuration is functioning as intended.

357
MCQhard

A company wants internal users to share one public IPv4 address for outbound Internet access, while keeping sessions separate. Which NAT approach best meets that requirement?

A.PAT overload
B.Static NAT only
C.No NAT, because private IPv4 addresses are Internet-routable
D.DHCP relay
AnswerA

PAT overload is the correct method because Port Address Translation (PAT) overload multiplexes thousands of internal private IP addresses through a single public IPv4 address by assigning each session a unique TCP or UDP port number. The router maintains a translation table that maps each internal IP:port combination to the public IP:port, allowing many internal users to share one public IPv4 address simultaneously. This is the standard many-to-one NAT approach used in home and enterprise edge routers.

Why this answer

PAT is the correct approach because it allows many internal sessions to share one outside IPv4 address while distinguishing them by port numbers. In plain language, PAT gives the office an efficient many-to-one translation model that works well for ordinary user Internet access when public addresses are limited.

This is different from static NAT, which gives a fixed one-to-one mapping, and from dynamic NAT pools that usually rely on multiple public addresses. The correct answer is the translation method designed specifically for shared public-address use across many sessions.

Exam trap

A common exam trap is selecting static NAT as the solution because it involves address translation, but static NAT only supports one-to-one mappings and cannot handle multiple internal users sharing a single public IP address. Another frequent mistake is assuming private IPv4 addresses can be routed on the Internet without NAT, which is incorrect because private addresses are non-routable externally. Additionally, confusing DHCP relay with NAT functions can mislead candidates, as DHCP relay only forwards DHCP messages and does not perform address translation.

Recognizing that PAT overload uniquely enables many-to-one translation with port differentiation is crucial to avoid these pitfalls.

Why the other options are wrong

B

Static NAT only provides a one-to-one mapping between private and public IP addresses, so it cannot support multiple internal users sharing one public IP address simultaneously, making it unsuitable for the scenario.

C

No NAT is incorrect because private IPv4 addresses are not routable on the public Internet; without NAT, internal users cannot access external resources using private IPs alone.

D

DHCP relay is unrelated to NAT or IP address translation; it simply forwards DHCP requests between clients and servers and does not enable sharing of public IP addresses for Internet access.

358
MCQmedium

A network administrator wants to secure remote CLI access to a Cisco router, moving beyond simple username/password authentication. Which approach best achieves this goal?

A.Use stronger or additional authentication controls to improve remote administrative access security
B.Replace SSH with Telnet to simplify troubleshooting
C.Configure an extended ACL to limit remote access to specific source IP addresses
D.Disable password authentication and rely solely on device location in the network
AnswerA

Implementing stronger or additional authentication controls—such as multi-factor authentication, AAA with TACACS+/RADIUS, or per-user credentials—directly addresses the security of the management plane. A static password alone is vulnerable to password guessing, credential theft, or replay. Strong authentication ensures that even if one factor is compromised, an attacker cannot complete the login process, protecting the device from unauthorized remote configuration.

Why this answer

The goal is to strengthen authentication beyond a simple password. Cisco AAA (Authentication, Authorization, and Accounting) using TACACS+ or RADIUS provides stronger, centralized authentication. Secure Shell (SSH) with key-based or two-factor authentication also enhances security.

Option A correctly describes this concept, while the other options either weaken security (B, D) or address access control via ACLs, which does not improve the authentication factor itself (C).

Exam trap

A common trap is thinking that limiting access with an ACL (option C) satisfies the goal, but ACLs restrict source addresses, not strengthen the authentication process. Another trap is confusing stronger authentication with simpler troubleshooting (B) or location-based trust (D).

Why the other options are wrong

B

Telnet transmits credentials in plaintext, making it less secure than SSH and opposite to the goal of stronger authentication.

C

An ACL restricts source addresses but does not strengthen the authentication factor itself; it is an authorization control, not an authentication improvement.

D

Removing password authentication and relying on location removes all credential verification, making the device vulnerable to unauthorized access from permitted locations.

359
PBQhard

You are connected to R1. The network uses a single router with two subnets: 192.168.1.0/24 (connected to GigabitEthernet0/0) and 10.0.0.0/30 (connected to GigabitEthernet0/1). Configure an extended named ACL called 'FILTER_HTTP' that permits HTTP traffic (TCP port 80) from the 192.168.1.0/24 subnet to any destination, and includes an explicit deny statement to deny all other IP traffic. Apply the ACL inbound on GigabitEthernet0/0. Then verify that HTTP traffic is allowed and all other traffic is blocked.

Network Topology
G0/0192.168.1.1/24192.168.1.0/24G0/110.0.0.1/3010.0.0.0/30R1PC1ISP

Hints

  • Remember the implicit deny at the end of every ACL – you may not need an explicit deny, but the question asks to deny all other IP traffic.
  • Use the correct wildcard mask for the subnet 192.168.1.0/24: 0.0.0.255.
  • Apply the ACL to the interface that receives traffic from the internal subnet.
A.ip access-list extended FILTER_HTTP permit tcp 192.168.1.0 0.0.0.255 any eq 80 deny ip any any interface GigabitEthernet0/0 ip access-group FILTER_HTTP in
B.access-list 100 permit tcp 192.168.1.0 0.0.0.255 any eq 80 access-list 100 deny ip any any interface GigabitEthernet0/0 ip access-group 100 in
C.ip access-list extended FILTER_HTTP permit tcp 192.168.1.0 0.0.0.255 any eq 80 interface GigabitEthernet0/0 ip access-group FILTER_HTTP in
D.ip access-list extended FILTER_HTTP permit tcp 192.168.1.0 0.0.0.255 any eq 80 deny ip any any interface GigabitEthernet0/1 ip access-group FILTER_HTTP in
AnswerA
solution
! R1
ip access-list extended FILTER_HTTP
permit tcp 192.168.1.0 0.0.0.255 any eq 80
deny ip any any
interface GigabitEthernet0/0
ip access-group FILTER_HTTP in

Why this answer

The task requires creating an extended named ACL 'FILTER_HTTP' that permits TCP port 80 from source 192.168.1.0/24 to any destination, and then denies all other IP traffic (the implicit deny will block everything else, but you must explicitly add a deny ip any any statement to make the intent clear). The ACL must be applied inbound on GigabitEthernet0/0. The solution uses the commands: ip access-list extended FILTER_HTTP, permit tcp 192.168.1.0 0.0.0.255 any eq 80, deny ip any any, and interface GigabitEthernet0/0, ip access-group FILTER_HTTP in.

Verification with show access-lists and show ip interface GigabitEthernet0/0 confirms the ACL and its application.

Exam trap

Pay attention to the requirement for a named ACL versus numbered ACL. Also, note that while the implicit deny exists, the question explicitly asks for a deny statement, so you must include it. Finally, ensure the ACL is applied to the correct interface and direction.

Why the other options are wrong

B

The specific factual error is that the ACL must be named 'FILTER_HTTP', but this option uses a numbered ACL (100).

C

The specific factual error is that the ACL does not include an explicit deny ip any any, which is needed to satisfy the requirement of denying all other IP traffic.

D

The specific factual error is that the ACL is applied to the wrong interface (GigabitEthernet0/1 instead of GigabitEthernet0/0).

360
MCQhard

Based on the exhibit, why is the ACL blocking more traffic than intended?

A.Because the ACL denies all TCP traffic to the server instead of only Telnet.
B.Because Telnet uses UDP, not TCP.
C.Because the ACL should be a standard ACL, not an extended ACL.
D.Because the host keyword can never be used with TCP statements.
AnswerA

The ACL statement is missing the destination port qualifier (eq 23) after the destination host, so it matches any TCP segment destined to that server, not just Telnet. As a result, SSH, HTTPS, and any other TCP service are also denied, which is why more traffic is being blocked than the administrator intended. To restrict only Telnet, the extended ACL must include 'eq 23' or 'eq telnet' at the end.

Why this answer

The ACL is blocking more traffic than intended because it uses a broad deny against all TCP traffic to the server instead of only the one service that should be denied. In practical terms, the requirement is narrow, but the configured entry is much wider. As a result, multiple TCP-based applications to that server are blocked, not just the intended one.

This is a classic precision problem in ACL design. It tests whether you can compare what the business requirement says against what the ACL actually matches.

Exam trap

The exam trap here is assuming that denying TCP traffic to a server without specifying the Telnet port will only block Telnet sessions. In reality, the ACL entry without the destination port qualifier matches all TCP traffic to that server, blocking multiple services unintentionally. This mistake often arises from confusing standard ACLs, which filter only by source IP, with extended ACLs that require explicit port numbers for service-specific filtering.

Candidates may overlook the need for the 'eq 23' qualifier for Telnet, leading to broader traffic denial and failing the question.

Why the other options are wrong

B

This option is incorrect because Telnet uses TCP as its transport protocol, not UDP. Therefore, denying TCP traffic is relevant for blocking Telnet, and the statement about UDP is factually wrong.

C

This option is incorrect because standard ACLs filter only by source IP address and cannot filter by protocol or port. The question requires filtering by service (Telnet), which necessitates an extended ACL, making this option invalid.

D

This option is incorrect because the 'host' keyword is valid in extended ACLs and is commonly used to specify a single IP address for precise matching. There is no restriction against using 'host' with TCP statements.

361
MCQmedium

Exhibit: An engineer wants a device to send only warning messages and more critical events to a syslog server. Which logging level should be configured?

A.logging trap debugging
B.logging trap warnings
C.logging trap notifications
D.logging trap informational
AnswerB

The syslog severity scale numbers levels from 0 (emergencies) to 7 (debugging), with warnings at level 4. Issuing 'logging trap warnings' instructs the device to send only messages at severity 4 and above (i.e., 0-4), which precisely matches the engineer's requirement to send only warning-level and more severe messages while excluding notifications and lower. This is the exact command for filtering to warnings and critical alerts.

Why this answer

Syslog severity levels include lower numbers for more severe events. Warning is level 4, so setting logging trap warnings sends level 4, 3, 2, 1, and 0 messages.

Exam trap

A frequent exam trap is selecting 'logging trap debugging' or 'informational' because these options seem to provide comprehensive logging. However, these levels include all messages, even low-priority informational and debug messages, which can overwhelm the syslog server and make it difficult to identify critical issues. Another trap is misunderstanding the syslog severity numbering, assuming higher numbers mean higher severity, when in fact, lower numbers indicate more critical events.

This confusion leads to incorrect trap level configuration and ineffective monitoring.

Why the other options are wrong

A

The option 'logging trap debugging' sets the trap level to 7, which includes all syslog messages from debugging (least severe) up to emergencies (most severe). This floods the syslog server with excessive data, beyond just warnings and critical events, making it unsuitable for the requirement.

C

The option 'logging trap notifications' sets the trap level to 5, which includes notifications and all more severe messages. However, notifications are less severe than warnings, so this setting would include informational messages that are not requested, making it incorrect.

D

The option 'logging trap informational' sets the trap level to 6, which includes informational messages and all more severe messages. This level is less severe than warnings and includes many more messages than requested, so it does not meet the requirement.

362
Multi-Selectmedium

Which two statements accurately describe the value of source restriction on administrative access?

Select 2 answers
A.It reduces the set of network locations from which administrative access is allowed.
B.It can make access monitoring and filtering easier to manage.
C.It removes the need for SSH or other secure transports.
D.It makes logging unnecessary.
E.It can be used only for wireless management.
AnswersA, B

Restricting administrative access by source address narrows the potential attack surface to only trusted IPs or subnets. This is a fundamental security control because it minimizes the number of network locations from which a malicious actor could even attempt to authenticate or exploit management protocols. Without such restrictions, the management plane is exposed to the entire reachable network, dramatically increasing the risk of unauthorized access.

Why this answer

Source restriction improves security by reducing the number of places from which administrative traffic is expected and permitted. In practical terms, this makes exposure smaller and monitoring clearer. It does not replace secure protocols or identity controls, but it strengthens the overall design.

This is a layered-management-security question because it emphasizes how source restriction complements other controls.

Exam trap

A common exam trap is to believe that source restriction removes the need for secure transport protocols like SSH or makes logging unnecessary. Some candidates mistakenly think that limiting source IP addresses alone fully secures administrative access. However, source restriction only controls where connections can originate; it does not encrypt data or authenticate users.

Ignoring secure protocols or logging can leave management sessions vulnerable to interception or unauthorized use. The exam tests understanding that source restriction is a complementary control, not a replacement for transport security or auditing.

Why the other options are wrong

C

Incorrect because source restriction does not replace the need for secure transport protocols like SSH; encryption and authentication remain essential for secure management.

D

Incorrect because logging is still necessary to maintain visibility and audit trails of administrative access attempts, even when source restriction is applied.

E

Incorrect because source restriction is not limited to wireless management; it applies broadly to all administrative access methods on Cisco devices.

363
MCQhard

A network administrator notices that syslog messages from a core router are arriving at the syslog server with timestamps that are hours behind other devices. The router’s NetFlow exports also show incorrect start and end times for flows, making traffic analysis unreliable. The administrator verifies that all router interfaces are up and that the SNMP community strings on the router match the NMS.

A.The logging trap level is set to informational, so only high-severity messages are sent with correct timestamps.
B.The router’s NTP client is configured with an incorrect authentication key.
C.The SNMP v3 user’s privacy password is incorrect, causing the NMS to reject syslog traps.
D.The IP flow cache timeout is set too low, causing NetFlow timestamps to appear skewed.
AnswerB

NTP can use authentication keys to verify server identity. If the client key does not match the server’s key, the router will not trust the time updates and will fail to synchronize. This leaves the router’s clock uncorrected, causing incorrect timestamps in syslog and NetFlow records.

Why this answer

The router's timestamps are incorrect for both syslog messages and NetFlow exports, which points to a system-wide time synchronization issue. NTP (Network Time Protocol) is responsible for maintaining accurate time on network devices, and if the NTP client is configured with an incorrect authentication key, it will fail to synchronize with the NTP server, causing the router's clock to drift. This explains why all time-stamped data (syslog and NetFlow) is consistently behind.

Exam trap

Cisco often tests the distinction between time synchronization issues (NTP) and logging/SNMP configuration issues, so candidates may incorrectly attribute timestamp problems to syslog or SNMP settings rather than the underlying system clock.

Why the other options are wrong

A

Logging trap level controls which severity messages are forwarded, not the accuracy of the timestamps.

C

SNMP v3 misconfiguration impacts SNMP traps, not syslog messages, which are sent independently via a different transport.

D

Cache timeout affects flow export frequency, not the accuracy of the timestamps inside the flow data.

364
MCQmedium

Why does DNS make networks easier for people to use?

A.It lets people use memorable names instead of raw IP addresses.
B.It assigns IP addresses automatically.
C.It replaces the need for default gateways.
D.It elects the root bridge for STP.
AnswerA

DNS translates easy-to-remember domain names, such as www.example.com, into the numeric IP addresses that networking equipment uses for packet delivery. This abstraction lets people access resources without memorizing long dotted-decimal or IPv6 hexadecimal strings. Without this name-to-address mapping, users would need to track raw IP addresses for every service, which is impractical and error-prone.

Why this answer

DNS makes networks easier to use because it lets people work with names instead of memorizing numeric IP addresses. In practical terms, users can remember a server name much more easily than a string of numbers. DNS creates that naming layer while the network still uses IP underneath.

This usability benefit is one of the main reasons DNS is so important in everyday network operations.

Exam trap

A frequent exam trap is mistaking DNS for DHCP or routing functions. Some candidates incorrectly believe DNS assigns IP addresses automatically, which is actually the role of DHCP. Others think DNS replaces default gateways or participates in spanning-tree protocol (STP) operations, which it does not.

This confusion arises because DNS, DHCP, routing, and STP are all fundamental network services but serve distinct purposes. Misunderstanding these roles can lead to selecting incorrect answers that sound plausible but do not match DNS’s actual function of name resolution.

Why the other options are wrong

B

Option B is incorrect because DHCP, not DNS, is responsible for automatically assigning IP addresses to devices on a network. DNS only resolves names to IP addresses after assignment.

C

Option C is incorrect because DNS does not replace default gateways. Default gateways are necessary for routing traffic outside the local subnet, a function unrelated to DNS name resolution.

D

Option D is incorrect because DNS has no role in Spanning Tree Protocol (STP) operations, including root bridge election, which is a Layer 2 loop prevention mechanism.

← PreviousPage 5 of 5 · 364 questions total

Ready to test yourself?

Try a timed practice session using only Network Services Security questions.