Courseiva

CCNA Network Services and Security Questions

75 of 364 questions · Page 4/5 · Network Services and Security · Answers revealed

226
MCQhard

Exhibit: A client can ping 8.8.8.8 but cannot browse to www.example.com. Which service is most likely failing?

A.NTP
B.DNS
C.DHCP snooping
D.HSRP
AnswerB

The client can ping 8.8.8.8, proving IP connectivity and routing are operational, but it cannot browse to www.example.com. Browsing requires resolving the hostname to an IP address via DNS. Since the ping to a public IP succeeds, the failure is isolated to name resolution, meaning the DNS query is failing, the DNS server is unreachable, or the client's DNS settings are incorrect.

Why this answer

The client has IP connectivity because it can reach 8.8.8.8 directly. The problem appears only when using a hostname, which points to a DNS resolution issue rather than a routing issue.

Exam trap

A frequent exam trap is assuming that successful ping to an IP address means all network services are functioning correctly. Candidates often overlook that ping uses numeric IP addresses and does not test DNS resolution. This leads to the incorrect conclusion that the network is fully operational, causing them to eliminate DNS as a problem.

The trap is reinforced by the presence of other options like DHCP snooping or HSRP, which are unrelated to hostname resolution but may seem plausible. Recognizing that DNS specifically enables hostname-to-IP translation is essential to avoid this mistake.

Why the other options are wrong

A

NTP (Network Time Protocol) synchronizes clocks across devices but does not affect the ability to resolve domain names or browse websites. Since the client can ping an IP address, time synchronization issues are unlikely to cause the browsing failure.

C

DHCP snooping is a security feature that prevents rogue DHCP servers but does not directly impact DNS resolution or hostname-based browsing. The client already has IP connectivity, so DHCP snooping is not the issue.

D

HSRP provides gateway redundancy and failover but does not influence DNS or hostname resolution. Since the client can reach an external IP, the default gateway is functioning, so HSRP failure is unlikely.

227
MCQhard

Based on the exhibit, what is the strongest explanation for why clients can browse by IP address but not by hostname?

A.Name resolution is failing even though IP connectivity works.
B.The client has the wrong default gateway.
C.The switch trunk native VLAN is wrong.
D.The server must run PPP before hostnames can work.
AnswerA

This is correct because the difference between IP success and hostname failure points to DNS.

Why this answer

The strongest explanation is a DNS failure or DNS configuration problem. In practical terms, successful browsing by IP address shows that the client can already reach the destination over the network path. When the same service fails only by hostname, the issue is much more likely in name resolution than in routing, switching, or raw connectivity.

This is one of the most useful support patterns because it quickly separates path problems from naming problems.

Exam trap

A frequent exam trap is assuming that if hostname resolution fails, the problem must be with routing or VLAN configurations such as the default gateway or switch trunk native VLAN. However, since clients can browse by IP address, these path elements are functioning correctly. Misattributing the failure to routing or VLAN issues wastes time and leads to incorrect answers.

The key mistake is not recognizing that DNS operates at a higher layer and that name resolution failures are distinct from IP connectivity problems.

Why the other options are wrong

B

Option B is incorrect because the client can already reach the server by IP address, proving the default gateway is functioning properly and not the cause of hostname resolution failure.

C

Option C is wrong since a switch trunk native VLAN mismatch would cause broader connectivity issues, not just hostname resolution failures. The symptom is specific to name-based access, not total path failure.

D

Option D is incorrect because PPP is unrelated to DNS or hostname resolution in this context. PPP is a WAN protocol and does not affect LAN-based DNS name resolution.

228
MCQmedium

A small office network uses a single public IP address on its router's WAN interface. The network administrator needs to allow all internal hosts to access the internet, but must also ensure that an internal web server with a private IP address is reachable from the internet. Which NAT configuration should the administrator implement to meet both requirements?

A.Configure dynamic NAT with a pool of public IPs and static NAT for the web server.
B.Configure PAT (overload) for internal hosts and static NAT for the web server.
C.Configure only PAT (overload) for all internal hosts including the web server.
D.Configure static NAT for the web server and use only the public IP for internal hosts.
AnswerB

This is correct because PAT (overload) allows all internal hosts to share the single public IP for outbound traffic by multiplexing sessions through unique source ports. Simultaneously, a static NAT entry maps the web server's private address to the same public IP (or a dedicated global address) to create a permanent one-to-one relationship. That permanent mapping lets Internet clients initiate inbound connections to the web server, while PAT handles all other internal hosts' outbound requests. Together, they maximize the use of the limited public address space while providing both outbound and inbound connectivity.

Why this answer

PAT (Port Address Translation), also known as NAT overload, allows multiple internal hosts to share a single public IP address by mapping each session to a unique port number, satisfying the requirement for internet access. Static NAT is then used to create a one-to-one mapping from the public IP (on a specific port) to the private IP of the internal web server, making it reachable from the internet. This combination meets both outbound connectivity for all hosts and inbound access to the web server without needing additional public IPs.

Exam trap

Cisco often tests the misconception that PAT alone can handle inbound traffic, but the trap here is that PAT only translates outbound sessions unless a static entry is explicitly configured for the server, leading candidates to incorrectly select option C.

Why the other options are wrong

A

Only one public IP is available, so a pool cannot be created.

C

Inbound access to the web server would not be possible without a static mapping.

D

Internal hosts would not be able to access the internet because they lack public IP assignments.

229
MCQeasy

Which protocol is used to resolve a hostname such as www.example.com into an IP address?

A.DNS
B.DHCP
C.NTP
D.SNMP
AnswerA

DNS (Domain Name System) is the hierarchical distributed database that resolves human-readable hostnames like www.example.com to numerical IP addresses. It uses recursive and iterative queries across root, TLD, and authoritative name servers to return the correct address. DNS is the standard protocol specifically designed for hostname-to-IP resolution.

Why this answer

DNS resolves names to addresses. DHCP hands out addressing parameters, NTP synchronizes time, and SNMP is used for management and monitoring.

Exam trap

A frequent exam trap is mistaking DHCP for DNS because both protocols are essential IP services and often appear together in network configurations. Candidates may incorrectly select DHCP, thinking it resolves hostnames, but DHCP only assigns IP addresses and network parameters, not name resolution. Another trap is confusing NTP or SNMP with DNS due to their roles in network operations; however, NTP synchronizes time and SNMP manages devices, neither resolving hostnames.

Understanding that DNS specifically maps domain names to IP addresses prevents this common mistake.

Why the other options are wrong

B

DHCP is incorrect because it only leases IP addressing information and other network parameters to clients; it does not translate hostnames to IP addresses, which is the core function of DNS.

C

NTP is incorrect as it is used solely for synchronizing clocks across network devices and does not handle any form of hostname or IP address resolution.

D

SNMP is incorrect because it is a protocol for monitoring and managing network devices, not for resolving hostnames or IP addresses.

230
Multi-Selectmedium

Which two statements accurately describe DNS in normal network operation?

Select 2 answers
A.DNS helps resolve hostnames into IP-related information.
B.DNS makes networks easier for humans to use by allowing names instead of raw IP addresses.
C.DNS dynamically assigns host IP addresses like DHCP.
D.DNS replaces the need for default gateways.
E.DNS is the spanning-tree protocol used on VLAN trunks.
AnswersA, B

This is correct because name resolution is the main purpose of DNS.

Why this answer

DNS helps translate human-friendly names into IP-related information. In plain language, it allows users and applications to work with names instead of memorizing numeric addresses. It also means that a network can change the underlying IP address of a service while keeping the public-facing name the same. DNS is therefore both a usability service and an important abstraction layer.

The wrong answers often confuse DNS with DHCP or routing protocols. The two correct answers are the ones that preserve its role in name resolution and human-friendly network use.

Exam trap

A frequent exam trap is mistaking DNS for DHCP or routing protocols. Some candidates incorrectly believe DNS dynamically assigns IP addresses like DHCP or that it replaces the need for default gateways. This confusion arises because both DNS and DHCP are IP services but serve fundamentally different roles.

DNS strictly resolves hostnames to IP addresses and does not handle IP address allocation or routing decisions. Misinterpreting DNS’s function can lead to selecting incorrect answers that describe DHCP’s role or routing concepts, which do not apply to DNS.

Why the other options are wrong

C

Option C is incorrect because DNS does not assign IP addresses; this is the role of DHCP. Confusing these two services is a common error, but they serve distinct purposes in IP networking.

D

Option D is wrong because DNS does not replace default gateways. Default gateways are necessary for routing traffic between different networks, a function unrelated to DNS name resolution.

E

Option E is incorrect as DNS is unrelated to the Spanning Tree Protocol (STP), which manages Layer 2 loop prevention on VLAN trunks. DNS operates at higher layers for name resolution.

231
MCQmedium

What problem does DHCP snooping help prevent?

A.Unauthorized DHCP server responses from user-facing ports
B.Layer 3 route loops
C.Trunk encapsulation mismatch
D.Weak SSH ciphers
AnswerA

DHCP snooping is a security feature on switches that filters DHCP messages. It builds a binding table of trusted DHCP server ports and untrusted user-facing ports. It drops DHCP server responses (DHCPOFFER, DHCPACK, DHCPNAK) received on untrusted ports, preventing a rogue DHCP server from assigning malicious IP configurations. This mitigates man-in-the-middle and denial-of-service attacks.

Why this answer

DHCP snooping marks interfaces as trusted or untrusted and blocks rogue DHCP server messages arriving on untrusted ports.

Exam trap

A frequent exam trap is selecting options related to Layer 3 routing issues or encryption weaknesses, such as route loops or weak SSH ciphers, when asked about DHCP snooping. Candidates may mistakenly think DHCP snooping prevents routing problems or secures SSH sessions. However, DHCP snooping specifically targets unauthorized DHCP server messages at Layer 2 and does not affect routing protocols or encryption.

Misunderstanding this scope leads to incorrect answers. Remember, DHCP snooping’s primary function is to block rogue DHCP servers on untrusted ports, not to solve routing or encryption problems.

Why the other options are wrong

B

Incorrect. Layer 3 route loops are routing protocol issues and are not addressed by DHCP snooping, which operates at Layer 2 for DHCP message validation.

C

Incorrect. Trunk encapsulation mismatches relate to VLAN tagging and trunk negotiation, which DHCP snooping does not influence or prevent.

D

Incorrect. Weak SSH ciphers pertain to encryption security and have no connection to DHCP snooping, which focuses solely on DHCP message filtering.

232
MCQhard

Users on the inside network can browse the web, but the company now needs an internal web server at 192.168.10.50 to be reachable consistently from outside using one public IP address. Which design is most appropriate?

A.Use static NAT for the server and continue using PAT for user outbound access.
B.Use PAT only for everything, including the published server.
C.Disable NAT because private IPv4 addresses are Internet-routable.
D.Use DHCP relay for the server to make it reachable from outside.
AnswerA

This is correct because static NAT provides a stable public mapping for the server, while PAT still supports many outbound users.

Why this answer

The best design is static NAT for the server while continuing to use PAT for general user outbound traffic. In plain language, user browsing and server publishing are two different requirements. PAT is great for letting many inside users share one public address for outbound access. But a server that outside clients must find reliably needs a fixed one-to-one public identity. That is exactly what static NAT provides.

This is an important design distinction. PAT solves address conservation for many clients. Static NAT solves predictability for inbound access to a specific internal system. The strongest answer is the one that uses each NAT method for the job it fits best.

Exam trap

A common exam trap is selecting PAT for both outbound and inbound traffic, mistakenly believing PAT can provide a stable public IP for a server. PAT dynamically assigns ports for outbound sessions but does not guarantee a fixed public IP and port combination for inbound connections. This leads to unpredictable external access to the internal server, which fails the requirement for consistent reachability.

Another trap is disabling NAT entirely, which ignores that private IPv4 addresses are not routable on the public Internet, making the server unreachable externally. Misunderstanding DHCP relay as a solution for public reachability is also a frequent error, as DHCP relay only forwards DHCP requests and does not affect NAT or routing.

Why the other options are wrong

B

Option B is incorrect because using PAT alone cannot guarantee a fixed public IP and port for the internal server. PAT dynamically assigns ports for outbound sessions, which prevents predictable inbound access to the server from outside.

C

Option C is incorrect because private IPv4 addresses are not routable on the public Internet. Disabling NAT would make the internal server unreachable externally, violating the requirement for consistent outside access.

D

Option D is incorrect because DHCP relay only forwards DHCP requests between clients and servers and does not affect NAT or the server's public reachability. It does not solve the problem of making the internal web server accessible from outside.

233
MCQmedium

A show ip nat translations command displays this entry: Inside global 203.0.113.10:30001 Inside local 192.168.10.25:51514 Outside local 198.51.100.20:443 Outside global 198.51.100.20:443 Which statement is correct?

A.192.168.10.25 is the inside local address of the host
B.203.0.113.10 is the inside local address of the host
C.198.51.100.20 is the translated private address of the internal client
D.The entry proves static NAT is being used without port translation
AnswerA

The inside local address is the original private IP address of the host as it appears in the internal network before NAT is applied. In the translation entry, 192.168.10.25 is shown as the source address that the router will translate, identifying the actual internal host. Because it is a private address in the RFC 1918 range, it correctly matches the definition of an inside local address.

Why this answer

Inside local is the actual address assigned to the inside host before translation. The inside global address is the public representation used after NAT, and the port values show PAT is in use.

Exam trap

Be careful not to confuse inside local with inside global addresses, and understand the difference between local and global in NAT terminology.

Why the other options are wrong

B

This option is wrong because 203.0.113.10 is the inside global address, not the inside local address. The inside local address is 192.168.10.25, which is correctly identified in option A.

C

This option is incorrect because 198.51.100.20 is the outside local address, not a translated private address. The inside local address is specifically 192.168.10.25, as indicated in the NAT translation entry.

D

This option is incorrect because the entry shows that 203.0.113.10 is the inside global address, not the inside local address. The inside local address is 192.168.10.25, which is correctly identified in option A.

234
MCQhard

A DHCP client on VLAN 30 is not receiving an IP address from a DHCP server (10.99.99.20) on another subnet. The SVI for VLAN 30 is configured with an IP address and is up, but the DHCP relay command is missing. Which command should be added to the SVI configuration?

A.ip directed-broadcast
B.ip helper-address 10.99.99.20
C.service dhcp-server 10.99.99.20
D.default-router 10.99.99.20
AnswerB

On the VLAN 30 SVI, the DHCP client's broadcast is not forwarded by default because routers do not forward link-local broadcasts. The command `ip helper-address 10.99.99.20` instructs the router to convert that DHCPDISCOVER broadcast into a unicast packet and send it to the DHCP server at 10.99.99.20, while also inserting the SVI's IP address as the giaddr field. This allows the server to know which subnet the client is on and assign an address from the correct pool. Without this command, the client's broadcast remains confined to VLAN 30 and the server never receives the request.

Why this answer

DHCP Discover messages are broadcasts and do not cross routers by default. On an SVI or routed interface facing the clients, an ip helper-address relays those broadcasts to the DHCP server on another subnet.

Exam trap

A frequent exam trap is selecting ip directed-broadcast or default-router as the solution for DHCP relay issues. ip directed-broadcast only enables forwarding of directed broadcasts but does not relay DHCP requests to servers on other subnets. default-router is a DHCP pool parameter that assigns a gateway to clients but does not affect how DHCP broadcasts are forwarded. Another trap is assuming service dhcp-server is an interface command for relay, which it is not. These distractors test your understanding of DHCP relay mechanisms and Cisco IOS command usage.

Why the other options are wrong

A

The ip directed-broadcast command enables forwarding of directed broadcasts but does not relay DHCP requests. It is unrelated to DHCP relay and will not solve the problem of clients not receiving addresses from a remote DHCP server.

C

service dhcp-server is not a valid Cisco IOS interface command for DHCP relay. It does not configure the router to forward DHCP broadcasts and thus will not resolve the issue.

D

default-router is a DHCP pool parameter used to assign the default gateway IP address to clients. It does not configure the interface to relay DHCP broadcasts and is not relevant to the relay configuration.

235
MCQhard

Users on the inside network can browse the Internet through PAT, but an internal web server must now be reachable from outside on a predictable public IP. Which change best fits the requirement?

A.Add static NAT for the server and continue using PAT for user browsing.
B.Replace PAT entirely with DHCP relay.
C.Disable NAT because the server already has a private address.
D.Move the server into the native VLAN.
AnswerA

Static NAT is required to give the internal server a one-to-one mapping to a public IPv4 address, making it reachable from the Internet while preserving its private address. PAT (overload) should remain enabled to translate many internal user sessions to the same public IP for outbound browsing. These two translation mechanisms can coexist in a single NAT configuration, with the router selecting static NAT for the server's destination and PAT for user traffic.

Why this answer

The best change is to add a static NAT mapping for the internal web server while keeping PAT in place for ordinary users. In practical terms, PAT is excellent for many internal clients sharing one public address for outbound traffic, but it does not give an internal server the stable one-to-one public identity that outside clients expect for predictable inbound access.

This is a standard NAT design distinction. User browsing and published server access are different requirements, and the best design often uses PAT for one and static NAT for the other.

Exam trap

A frequent exam trap is selecting DHCP relay or VLAN changes as solutions for making an internal server reachable from outside. DHCP relay only forwards DHCP requests across subnets and does not provide any public IP mapping or NAT functionality. Similarly, moving a server into the native VLAN does not affect its public IP address or NAT translation.

Another common mistake is disabling NAT entirely, which breaks Internet connectivity because private IP addresses cannot be routed on the public Internet. Understanding that static NAT is required for predictable inbound access while PAT supports outbound user browsing is critical to avoid these traps.

Why the other options are wrong

B

Incorrect because DHCP relay only forwards DHCP requests and does not provide any mechanism for publishing an internal server to the Internet or managing NAT translations.

C

Incorrect because disabling NAT leaves the internal server with a private IP address that is not routable on the Internet, making it unreachable from outside networks.

D

Incorrect because moving the server into the native VLAN affects only Layer 2 segmentation and does not provide a public IP address or NAT translation necessary for Internet access.

236
PBQmedium

You are connected to R1 via the console. R1's GigabitEthernet0/0 (10.0.0.1/30) connects to the ISP. GigabitEthernet0/1 (192.168.1.1/24) connects to the internal LAN. The network has an NTP server at 192.168.1.200. R1 must be configured as an NTP client to synchronize its time with the server. Additionally, R1 should serve as an NTP server for internal devices on the LAN with a stratum of 5 to maintain proper hierarchy. The time zone is UTC. No NTP configuration exists. Configure NTP on R1 as specified.

Network Topology
G0/1192.168.1.1/24192.168.1.200G0/010.0.0.1/30NTP ServerLANR1WANISP

Hints

  • The ntp server command configures the router as a client.
  • The ntp master command enables the router to act as a server for other devices.
  • Time zone should be set before NTP synchronization.
A.R1(config)# ntp server 192.168.1.200 R1(config)# ntp master 5 R1(config)# clock timezone UTC 0
B.R1(config)# ntp server 192.168.1.200 R1(config)# ntp master R1(config)# clock timezone UTC 0
C.R1(config)# ntp server 192.168.1.200 R1(config)# ntp master 5 R1(config)# clock timezone EST 5
D.R1(config)# ntp server 10.0.0.2 R1(config)# ntp master 5 R1(config)# clock timezone UTC 0
AnswerA
solution
! R1
ntp server 192.168.1.200
ntp master
clock timezone UTC 0

Why this answer

Ly configures R1 as an NTP client pointing to the NTP server at 192.168.1.200, enables R1 to serve time to LAN devices using `ntp master 5` which sets the required stratum to 5, and sets the accurate UTC time zone. Option B fails because `ntp master` without a stratum number defaults to stratum 8, which does not satisfy the explicit stratum 5 requirement. Option C uses an incorrect time zone (EST) instead of the required UTC.

Option D points to an IP (10.0.0.2) that is not the NTP server—the correct server is at 192.168.1.200.

Exam trap

Watch for forgetting to specify the stratum number when the `ntp master` command is required; without it, the router defaults to stratum 8, which may not meet design requirements.

Why the other options are wrong

B

Uses `ntp master` without a stratum number, defaulting to stratum 8 instead of the required stratum 5.

C

Sets the wrong time zone (EST) instead of UTC.

D

Points to the ISP IP 10.0.0.2 instead of the actual NTP server at 192.168.1.200.

237
Multi-Selectmedium

Which TWO statements about IPv4 and IPv6 ACLs are true?

Select 2 answers
A.Standard IPv4 ACLs use numbers in the range 100-199.
B.Extended IPv4 ACLs should be placed as close to the source as possible to minimize unnecessary traffic on the network.
C.IPv6 ACLs are always named and can filter traffic based on source and destination IPv6 addresses, as well as protocol types.
D.Standard IPv4 ACLs filter only the source IP address and are best placed close to the source to be most effective.
E.Numbered ACLs allow individual access control entries (ACEs) to be deleted without removing the entire ACL.
AnswersB, C

Extended IPv4 ACLs can match on source and destination addresses, protocol, and TCP/UDP ports, so they can selectively deny specific traffic flows while permitting unrelated traffic. Placing such an ACL closest to the source of that traffic stops unwanted packets immediately at the ingress edge, preventing them from consuming bandwidth and router processing power on every intermediate link toward the destination. This granularity makes source-side placement safe and efficient, unlike standard ACLs.

Why this answer

Extended IPv4 ACLs filter on source and destination IP addresses, ports, and protocols, so placing them as close to the source as possible prevents unwanted traffic from traversing the network, reducing bandwidth waste and security risks. This is a best practice for extended ACLs, unlike standard ACLs which should be placed close to the destination.

Exam trap

Cisco often tests the placement rule reversal—candidates confuse standard ACL placement (close to destination) with extended ACL placement (close to source), or mix up the number ranges for standard vs. extended ACLs.

Why the other options are wrong

A

The number range 100–199 is used for extended ACLs, not standard ones.

D

The placement advice is reversed: standard ACLs belong near the destination, not the source.

E

This is a common misconception; the ability to delete individual ACEs is a feature of named ACLs, not numbered.

238
MCQhard

A company wants a server on the inside network to be reachable consistently from outside using one known public IP address. Which NAT approach best fits that goal?

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

Static NAT establishes a permanent one-to-one mapping between an inside private IPv4 address and an inside global public IPv4 address. Because the binding is fixed, inbound packets arriving at the public address are always translated to the same internal host, making the server reliably reachable from the Internet. This determinism is exactly why a company would choose static NAT for a server that must be accessible without session-specific state.

Why this answer

Static NAT best fits that goal because it creates a fixed, predictable one-to-one mapping between the internal server and a public address. In plain language, outside systems always know which public IP represents that server. This predictability is exactly what is needed when a service must be reachable consistently from the outside.

PAT is better suited for many outbound clients sharing one address, not for presenting one inside server with a permanent public identity. Dynamic NAT from a pool can also vary depending on design. The correct answer is the one that provides the most stable and direct one-to-one mapping.

Exam trap

A frequent exam trap is selecting PAT overload as the solution for making an internal server reachable from outside. PAT is designed for multiple internal clients to share a single public IP for outbound connections, not for providing a fixed public IP to a server. Another common mistake is thinking private IP addresses can be accessed directly from the Internet without NAT, which is incorrect because private IPs are non-routable externally.

Misunderstanding DHCP relay as related to NAT or public reachability is also a trap; DHCP relay only forwards DHCP requests and does not affect NAT mappings or external accessibility.

Why the other options are wrong

B

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

C

No NAT is incorrect since private IPv4 addresses are not routable on the Internet and require NAT to be accessible externally.

D

DHCP relay is unrelated to NAT or public reachability; it only forwards DHCP requests and does not affect how internal servers are accessed from outside.

239
MCQhard

R1 learns three OSPF routes to different destinations: O 10.10.10.0/24 O IA 10.20.20.0/24 O E2 10.30.30.0/24 Which statement is correct about these route types?

A.O IA is an external route redistributed from another routing protocol.
B.O E2 is an OSPF external type 2 route.
C.O means the route was learned through EIGRP.
D.All three routes were learned from the same OSPF area type.
AnswerB

In OSPF, the route code 'O' indicates a route learned via the OSPF protocol, and 'E2' specifically denotes an external type 2 route. This type is redistributed from another routing protocol into OSPF, and its metric is the external cost only, without adding the internal cost to the ASBR. The 'O E2' code is exactly the standard representation for such externally redistributed type 2 routes.

Why this answer

An O route is intra-area, O IA is interarea, and O E2 is an external type 2 route redistributed into OSPF. The codes describe route origin, not just preference. CCNA expects you to identify them quickly when reading the routing table.

Exam trap

A frequent exam trap is confusing the OSPF route codes, especially mistaking 'O IA' (inter-area) for an external route redistributed from another protocol. Candidates often incorrectly assume that 'O IA' means external, but it actually represents routes learned from a different OSPF area within the same autonomous system. Another common mistake is thinking the 'O' code indicates EIGRP routes, which it does not; EIGRP uses different codes such as 'D'.

This confusion can cause candidates to select incorrect answers about route origins or types. Carefully distinguishing between intra-area, inter-area, and external routes based on OSPF codes is essential to avoid this pitfall.

Why the other options are wrong

A

Option A incorrectly states that 'O IA' is an external route redistributed from another routing protocol. In reality, 'O IA' stands for inter-area routes within OSPF, not external routes. External routes use 'O E1' or 'O E2' codes.

C

Option C incorrectly claims that 'O' means the route was learned through EIGRP. The 'O' code is exclusive to OSPF intra-area routes. EIGRP routes use the code 'D' in Cisco routing tables.

D

Option D is incorrect because the three routes represent different OSPF route types: intra-area (O), inter-area (O IA), and external (O E2). They do not all come from the same OSPF area type.

240
MCQhard

A switch should disable an edge port immediately if a BPDU is received on it. Which feature is intended for that specific behavior?

A.BPDU Guard
B.Loop Guard
C.Root Guard
D.UDLD
AnswerA

BPDU Guard is correct because it is specifically designed to protect edge ports configured with PortFast. When a BPDU is received on such a port, BPDU Guard immediately places the port into the error-disabled state, preventing an unexpected switch from creating a Layer 2 loop. This action is immediate and automatic, requiring manual re-enabling or errdisable auto-recovery, which matches the behavior described in the question.

Why this answer

The feature is BPDU Guard. In plain language, the administrator is treating the port as an end-device-only edge interface and wants the switch to react aggressively if it ever sees spanning-tree control traffic there. BPDU Guard does exactly that: if a BPDU appears on a protected edge port, the switch places the interface into an err-disabled state to help prevent accidental loops or rogue switch connections.

This is different from root guard and loop guard, which solve other spanning-tree control problems. BPDU Guard is the specific answer when the requirement is “if you ever hear a BPDU here, shut the port down quickly.”

Exam trap

A common exam trap is confusing BPDU Guard with Root Guard or Loop Guard. Candidates may incorrectly select Root Guard because it also deals with BPDUs, but Root Guard only blocks ports from becoming root ports and does not disable the port immediately. Loop Guard protects against unidirectional link failures and does not shut down ports upon BPDU receipt.

Another mistake is thinking UDLD handles BPDU protection; however, UDLD only detects unidirectional physical link failures and is unrelated to STP BPDU processing. Understanding that BPDU Guard uniquely disables edge ports upon BPDU detection is critical to avoid this trap.

Why the other options are wrong

B

Loop Guard is incorrect because it protects against unidirectional link failures by preventing a port from transitioning to forwarding when BPDUs stop, but it does not disable a port upon BPDU receipt.

C

Root Guard is incorrect because it prevents a port from becoming a root port by blocking superior BPDUs but does not disable the port immediately when a BPDU is received on an edge port.

D

UDLD is incorrect because it detects unidirectional physical link failures and does not interact with BPDU processing or disable ports based on BPDU reception.

241
MCQhard

A wireless site reports that users can connect to the SSID, but performance drops sharply around the conference area whenever the room fills up. Based on the exhibit, what is the most likely cause?

A.Adjacent-channel interference caused by overlapping 2.4 GHz channels
B.A DHCP exhaustion problem on the WLAN
C.An authentication mismatch between the APs and clients
D.A missing default route on the wireless controller
AnswerA

Adjacent-channel interference is the likely culprit because the 2.4 GHz band provides only three non-overlapping channels (1, 6, and 11); if an AP is configured on channel 3, it overlaps both channels 1 and 6, forcing clients to contend with simultaneous signals. This causes excessive frame collisions and retransmissions, which severely degrade throughput and latency even though clients maintain their association to the SSID. The mismatch between successful association and poor performance points directly to a Layer 1 RF problem rather than a higher-layer failure.

Why this answer

The 2.4 GHz radios are using overlapping channels. In 2.4 GHz, the standard non-overlapping channels are 1, 6, and 11 in many regulatory domains. Using channels 1, 3, and 6 creates adjacent-channel interference, which hurts throughput especially in dense client areas.

Exam trap

A common exam trap is to confuse wireless connectivity issues caused by RF interference with DHCP or authentication problems. Because users can connect to the SSID, candidates might incorrectly suspect DHCP exhaustion or authentication mismatches. However, DHCP exhaustion prevents clients from obtaining IP addresses, not causing throughput drops.

Similarly, authentication mismatches prevent connection entirely. Another trap is to blame routing issues like a missing default route on the wireless controller, which affects network reachability but not local wireless signal quality. The key is to recognize that overlapping 2.4 GHz channels cause adjacent-channel interference, which degrades performance even when clients connect successfully.

Why the other options are wrong

B

Incorrect. DHCP exhaustion would prevent some clients from obtaining IP addresses, but it does not cause RF interference or a sharp drop in wireless throughput. Since users can connect, DHCP exhaustion is unlikely.

C

Incorrect. An authentication mismatch would prevent clients from connecting to the SSID. Since users can connect, authentication is working properly and is not the cause of performance degradation.

D

Incorrect. A missing default route on the wireless controller affects upstream network connectivity but does not cause local RF interference or throughput drops in the wireless environment.

242
MCQhard

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

A.Because it reduces attack surface by removing unused active connection points.
B.Because it forces all users to manage devices with SSH.
C.Because it converts remaining ports into trunks.
D.Because it replaces VLAN segmentation.
AnswerA

When a port is left enabled but unused, it remains an active connection point that an attacker could plug into, potentially gaining unauthorized network access. Administratively shutting it down places the interface in an administratively down state, which disables the link at Layer 1/2 and effectively removes that exposure. This reduces the attack surface by eliminating avoidable entry points into the network.

Why this answer

Unused active ports create unnecessary exposure. In practical terms, if a port is not needed, leaving it active gives someone an opportunity to connect a device where no legitimate business need exists. Shutting the port down removes that access point and reduces attack surface.

This is a simple but effective hardening measure. It does not replace other controls, but it removes a risk that does not need to exist in the first place.

Exam trap

Do not confuse port shutdown with performance improvements or VLAN configuration changes; focus on security implications.

Why the other options are wrong

B

This option is incorrect because administratively shutting down unused switch ports does not enforce SSH for device management; it simply disables unused ports to enhance security.

C

This option is wrong because administratively shutting down unused switch ports does not convert remaining ports into trunk ports; it simply disables access ports to enhance security.

D

This option is wrong because administratively shutting down unused switch ports does not directly replace VLAN segmentation; rather, it focuses on reducing the number of active ports to mitigate security risks.

243
MCQmedium

A user reports that websites can be opened by IP address but not by hostname. Which service is the strongest suspect?

A.DNS
B.STP
C.PAT
D.Port security
AnswerA

DNS (Domain Name System) is the service responsible for translating human-friendly hostnames into IP addresses. When a website opens by IP but not by hostname, it indicates the client cannot resolve the name to an IP, so DNS resolution is failing. This can be due to a misconfigured DNS server, incorrect resolver settings on the host, or a missing DNS record for the site. Since direct IP access bypasses DNS, the rest of Layer 3 connectivity is intact.

Why this answer

DNS is the strongest suspect because the network path clearly works at the IP layer. In practical terms, if the user can reach the site by numeric address, then routing and basic connectivity are functioning. The missing piece is name resolution, and that is exactly what DNS provides.

This is one of the clearest troubleshooting patterns in networking. If names fail but IP works, start with DNS.

Exam trap

A common exam trap is selecting PAT or port security as the cause of hostname resolution failure. PAT manages IP address translation for outbound connections but does not resolve hostnames, so it cannot cause DNS failures. Similarly, port security restricts switch port access based on MAC addresses and does not affect DNS or name resolution.

Another tempting but incorrect choice is STP, which operates at Layer 2 to prevent loops and has no role in IP name resolution. Candidates must avoid confusing these distinct network services and focus on DNS when hostname resolution fails but IP connectivity works.

Why the other options are wrong

B

STP (Spanning Tree Protocol) is incorrect because it operates at Layer 2 to prevent network loops and does not handle hostname resolution or IP services.

C

PAT (Port Address Translation) is incorrect because it translates private IP addresses to public IPs for outbound traffic but does not affect DNS or hostname resolution.

D

Port security is incorrect because it controls access to switch ports based on MAC addresses and does not provide or affect hostname resolution services.

244
MCQhard

Hosts on the inside network can reach the internet, but return traffic is failing after a new router was installed. The router's configuration shows that the LAN-facing interface has been configured with 'ip nat outside' and the WAN-facing interface with 'ip nat inside'. What configuration mistake is the most likely cause?

A.The NAT inside and outside interface roles are reversed.
B.The ACL must deny RFC1918 traffic before NAT can work.
C.PAT cannot use an interface address for overload.
D.The inside subnet must be configured as /24 on both interfaces.
AnswerA

Cisco NAT requires the interface connected to the internal network (where private IP addresses reside) to be configured with 'ip nat inside', and the interface connected to the public network (the internet) with 'ip nat outside'. The scenario describes the LAN-facing interface as 'ip nat outside' and the WAN-facing interface as 'ip nat inside'. This reversal prevents the router from correctly translating the source private IP addresses of outbound traffic into a public IP. Consequently, return traffic from the internet, destined for the public IP, cannot be reverse-translated and routed back to the internal hosts, satisfying the constraint that return traffic is failing.

Why this answer

NAT overload requires the LAN-facing interface to be marked as ip nat inside and the WAN-facing interface as ip nat outside. The exhibit shows those roles reversed, so translations will not occur correctly. The ACL itself is fine for matching the inside subnet.

Exam trap

A frequent exam trap is reversing the NAT inside and outside interface roles. Candidates may see that hosts can initiate traffic to the internet and mistakenly assume NAT is correctly configured. However, if the router’s interfaces are misassigned, return traffic from the internet will not be translated back to the inside hosts, causing connectivity failures.

This trap exploits the partial functionality of NAT where outbound packets appear to succeed but inbound packets fail, leading to confusion during troubleshooting and exam scenarios.

Why the other options are wrong

B

Incorrect. The ACL in NAT configurations is used to identify which inside addresses to translate, not to filter or deny traffic. Denying RFC1918 traffic in the ACL is unnecessary and unrelated to the NAT failure described.

C

Incorrect. Using the outside interface IP address for PAT overload is a standard and supported practice in Cisco NAT configurations. This option does not explain the return traffic failure.

D

Incorrect. The inside subnet should only be configured on the LAN interface. The WAN interface typically uses a different subnet and should not share the inside subnet.

This misconfiguration would cause routing issues but is not the primary cause of NAT return traffic failure here.

245
MCQhard

Dynamic ARP Inspection is most effective at preventing which attack?

A.SYN flood
B.ARP spoofing
C.Route summarization error
D.Rogue DHCP relay
AnswerB

Dynamic ARP Inspection (DAI) is an L2 security feature that intercepts ARP packets on untrusted switch ports and verifies that the sender MAC and IP addresses match the DHCP snooping binding table. Any ARP response announcing a conflict or forged MAC-IP pairing—the defining characteristic of ARP spoofing—is dropped. By blocking these poisoned frames, DAI prevents an attacker from redirecting traffic to a rogue host for on-path interception or man-in-the-middle attacks.

Why this answer

Dynamic ARP Inspection (DAI) validates ARP packets on a per-interface basis, dropping invalid ARP replies and thus preventing ARP spoofing and poisoning attacks. Option A (SYN flood) is a Layer 4 TCP attack mitigated by TCP flood protection or SYN cookies, not DAI. Option C (route summarization error) is a routing misconfiguration unrelated to ARP security.

Option D (rogue DHCP relay) is prevented by DHCP snooping, which works alongside DAI but DAI itself does not block rogue DHCP relays.

Exam trap

Be careful not to confuse ARP spoofing with other types of spoofing attacks like IP or DNS spoofing.

Why the other options are wrong

A

SYN flood is a Layer 4 TCP attack that is blocked by flood guards, not by DAI.

C

Route summarization error is a routing protocol misconfiguration and is unrelated to ARP packet validation.

D

Rogue DHCP relay is mitigated by DHCP snooping, not by Dynamic ARP Inspection.

246
MCQhard

A router has this command configured: `ip nat inside source static 192.168.1.50 203.0.113.50`. What is the main effect of this configuration?

A.It creates a permanent one-to-one translation between the inside host and a public address
B.It enables PAT overload for all internal users
C.It blocks inbound access to the inside host permanently
D.It changes the host subnet mask to a public prefix
AnswerA

This command creates a permanent one-to-one mapping between a single inside local IP address (192.168.1.50) and a fixed inside global public IP address. The translation is inserted statically and remains in the NAT table until manually deleted, allowing bidirectional traffic initiation. This distinguishes it from dynamic NAT, which uses a pool and times out.

Why this answer

This command creates a static NAT mapping between one inside local address and one inside global address. In plain language, the internal device at 192.168.1.50 will always appear as 203.0.113.50 to the outside world. That fixed relationship is useful when a particular internal host or service must be reachable consistently from outside networks.

This is different from PAT, which shares one public address across many sessions using ports. Static NAT is one-to-one and predictable. It does not dynamically pull from a pool in this syntax. The key idea is permanence: the same inside device is always mapped to the same outside address.

Exam trap

A common exam trap is mistaking static NAT for PAT or dynamic NAT. Candidates may incorrectly assume that the command enables PAT overload, allowing many internal users to share one public IP, but static NAT provides a fixed one-to-one mapping without port translation. Another trap is thinking static NAT blocks inbound traffic; in reality, it enables inbound access to the mapped inside host.

Misunderstanding these differences can lead to selecting incorrect answers about NAT behavior and configuration.

Why the other options are wrong

B

This option is incorrect because PAT overload uses a different command syntax involving 'overload' and allows many internal hosts to share one public IP, which is not the case here.

C

This option is wrong since static NAT does not inherently block inbound access; instead, it enables external hosts to reach the inside host via the mapped public IP.

D

This option is incorrect because NAT translation does not modify the subnet mask of the inside host; it only changes the IP address seen externally.

247
MCQmedium

Which port-security violation mode drops frames from unauthorized MAC addresses but keeps the interface up and does not send an SNMP trap or syslog message?

A.protect
B.restrict
C.shutdown
D.shutdown vlan
AnswerA

Protect is the quietest switchport port-security violation mode: when the port's MAC address table is full, it silently drops frames from new, unknown MAC addresses while continuing to forward traffic for already-learned addresses. No SNMP trap or syslog message is generated, and the port remains up and operational, making the violation virtually invisible to network monitoring. This is the correct answer because the question asks which mode drops frames without any further action or notification.

Why this answer

Protect silently drops frames from unauthorized sources while leaving the interface up. Restrict also drops frames but increments the violation counter and can generate notifications.

Exam trap

Be careful not to confuse Protect with Restrict, as both drop frames but only Restrict sends notifications.

Why the other options are wrong

B

The 'restrict' mode allows frames from unauthorized MAC addresses to be dropped while sending SNMP traps and syslog messages, which contradicts the requirement of keeping the interface up without notifications.

C

The 'shutdown' mode disables the interface when a violation occurs, which is contrary to the requirement of keeping the interface up. It also does not align with the need to drop frames without sending SNMP traps or syslog messages.

D

The 'shutdown vlan' mode disables the entire VLAN when a violation occurs, which is not aligned with the requirement to keep the interface up. This option also typically sends SNMP traps or syslog messages, which contradicts the question's criteria.

248
Multi-Selectmedium

Which three options are true regarding the operation of Dynamic ARP Inspection (DAI) on a Cisco switch? (Choose three.)

Select 3 answers
.DAI validates ARP packets based on the DHCP snooping binding database.
.DAI can be configured to drop ARP packets with invalid MAC-to-IP address bindings.
.DAI is typically enabled on untrusted ports that face end hosts.
.DAI encrypts ARP replies to prevent eavesdropping.
.DAI relies on the MAC address table to validate ARP requests.
.DAI prevents rogue DHCP server attacks by inspecting DHCP offers.

Why this answer

Dynamic ARP Inspection (DAI) validates ARP packets by intercepting them on untrusted ports and checking the MAC-to-IP address binding against the DHCP snooping binding database. If the binding is invalid or missing, DAI drops the packet, preventing ARP spoofing attacks. This is why all three statements are correct: DAI relies on the DHCP snooping database, drops invalid bindings, and is enabled on untrusted ports facing end hosts.

Exam trap

Cisco often tests the misconception that DAI validates ARP packets using the MAC address table or ARP cache, when in fact it strictly relies on the DHCP snooping binding database.

249
Multi-Selectmedium

Which TWO statements correctly describe the behavior of standard ACLs when applied to an interface?

Select 2 answers
A.Standard ACLs filter traffic based on source and destination IP addresses.
B.Standard ACLs should be placed as close to the destination as possible.
C.Standard ACLs can filter traffic based on protocol type (TCP, UDP, ICMP).
D.Standard ACLs use an implicit deny any statement at the end.
E.Standard ACLs are applied to interfaces in the inbound direction only.
AnswersB, D

Because standard ACLs only match the source IP address, applying them near the source can inadvertently drop traffic intended for other destinations. To minimize this risk, standard ACLs should be placed as close to the destination as possible, where the source address's reach is limited and the filter's impact is scoped. This placement reduces collateral damage to legitimate traffic that should only be filtered near the target network.

Why this answer

Standard ACLs filter traffic based solely on the source IP address, not the destination. Because they do not consider destination addresses, placing them as close to the destination as possible prevents them from inadvertently blocking traffic that should reach other parts of the network. This placement ensures that only the intended traffic is filtered at the final hop before the destination.

Exam trap

Cisco often tests the misconception that standard ACLs can filter on destination addresses or protocols, leading candidates to choose option A or C, when in fact standard ACLs only match source IP addresses and always end with an implicit deny any.

Why the other options are wrong

A

This describes the capability of extended ACLs, not standard ACLs.

C

Protocol filtering is a feature of extended ACLs, not standard ACLs.

E

Both inbound and outbound application are possible, though placement depends on the filtering strategy.

250
MCQhard

A technician is troubleshooting an issue where internal hosts can successfully ping internet addresses but cannot establish HTTP sessions. The router is configured with PAT (overload) and uses an access list to define the inside local addresses. Recently, the internal network was renumbered from 192.168.0.0/24 to 10.0.0.0/24. What is the most likely cause?

A.The router's HTTP inspection rule is blocking outbound TCP port 80.
B.The NAT access list still permits 192.168.0.0/24 and does not match the new 10.0.0.0/24 addresses.
C.The outside interface access list is blocking TCP packets from the new 10.0.0.0/24 subnet.
D.The default route has been changed to point to the wrong next-hop address, causing only HTTP packets to be dropped.
AnswerB

Because the ACL that defines inside local addresses for PAT was never updated after renumbering, no dynamic translations are created for HTTP sourced from 10.0.0.0/24.

Why this answer

The NAT access list (used with 'ip nat inside source list') still references the old 192.168.0.0/24 subnet. After renumbering to 10.0.0.0/24, the access list does not match the new inside local addresses, so PAT (overload) translation is not performed for those hosts. ICMP (ping) can still succeed if the router has a route to the internet and the packets are not translated, but HTTP sessions fail because the return traffic cannot be mapped back to the internal hosts without a NAT translation entry.

Exam trap

Cisco often tests the misconception that ping success implies full connectivity; the trap here is that ICMP can work without NAT translation if the router has a route, but TCP sessions require proper NAT entries for return traffic.

Why the other options are wrong

A

Candidates may confuse security inspection with NAT translation, assuming that a protocol‑specific inspection is needed for HTTP.

C

Tempting because an ACL could selectively block TCP; however, the question provides context about the renumbering, which directly points to the NAT configuration.

D

Candidates may assume that different protocols might take different paths, but a single default route applies uniformly to all IP traffic.

251
MCQhard

Based on the exhibit, why is the ACL not meeting the requirement to block only HTTPS traffic to the server?

A.Because the ACL entry is too broad and blocks all IP traffic to the host.
B.Because HTTPS uses UDP, not TCP.
C.Because standard ACLs are required for HTTPS filtering.
D.Because the destination must always be a wildcarded subnet, not a host.
AnswerA

The ACL entry uses the keyword 'ip', which matches every IP protocol including TCP, UDP, ICMP, and GRE. To block only HTTPS, the administrator must specify 'tcp' and match destination port 443, as in 'deny tcp any host 192.0.2.10 eq 443'. Because 'deny ip' is all-encompassing, it prevents all traffic to the host, not just HTTPS, which is why the ACL fails the requirement.

Why this answer

The ACL fails because it uses 'deny ip' which blocks all IP traffic to the server, not just HTTPS. To block only HTTPS, the ACL should match TCP port 443 with 'deny tcp eq 443'. Option B is wrong because HTTPS uses TCP, not UDP.

Option C is wrong because extended ACLs (not standard) are required to filter by port. Option D is wrong because a host destination is perfectly valid in extended ACLs; a wildcard subnet is not required.

Exam trap

Ensure you understand the difference between blocking specific ports and blocking all traffic. Misconfiguring an ACL by using 'deny ip' instead of 'deny tcp eq 443' is a common mistake.

Why the other options are wrong

B

HTTPS uses TCP, not UDP.

C

Standard ACLs cannot filter by port; extended ACLs are required.

D

Extended ACLs support host destinations; a wildcard subnet is not required for a specific host.

252
Drag & Dropmedium

Drag and drop the following steps into the correct order to plan, configure, and apply an extended ACL that permits only HTTP traffic from the 192.168.1.0/24 network to the server at 10.0.0.100, 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. Then create the ACL allowing HTTP from the source network to the destination host. Apply it inbound on the appropriate interface.

Save and verify the configuration.

Exam trap

Remember that ACLs are created in global configuration mode, not interface mode. Also, apply ACLs inbound on the interface closest to the source for efficiency. Pay attention to whether the requirement is to permit or deny traffic.

253
MCQmedium

Why is DHCP often preferred over manual addressing on larger user networks?

A.It automates host IP configuration and reduces manual effort and mistakes.
B.It replaces DNS completely.
C.It removes the need for default gateways.
D.It is required by all routing protocols.
AnswerA

DHCP automates host IP configuration by centrally assigning addresses, subnet masks, default gateways, and DNS information, which eliminates tedious manual entry on each device. On larger networks, this reduces administrative overhead and the risk of human error, such as typos or duplicate addressing, while also making IP address management more consistent and easier to track.

Why this answer

DHCP is often preferred because it automates host configuration and reduces both manual work and configuration mistakes. In practical terms, it is far easier to let endpoints receive addresses, masks, gateways, and DNS settings automatically than to configure each device by hand.

This improves scale, consistency, and operational efficiency. That is why DHCP is such a common service in enterprise access networks.

Exam trap

A common exam trap is selecting options that confuse DHCP with DNS or routing protocols. Some candidates mistakenly believe DHCP replaces DNS or removes the need for default gateways. However, DHCP only automates IP configuration; it does not perform name resolution like DNS, nor does it eliminate the requirement for a default gateway.

Another trap is assuming routing protocols depend on DHCP, which is incorrect because routing protocols operate independently of IP address assignment methods. Understanding these distinctions is essential to avoid incorrect answers related to IP services in the CCNA exam.

Why the other options are wrong

B

This option is incorrect because DHCP does not replace DNS. DNS is a separate service responsible for name resolution, while DHCP only provides IP configuration parameters including DNS server addresses.

C

This option is wrong because DHCP does not remove the need for default gateways. Hosts still require gateway information to communicate outside their subnet, and DHCP typically provides this information during configuration.

D

This option is incorrect because routing protocols do not depend on DHCP. Routing protocols function independently of IP address assignment methods and do not require DHCP to operate on user networks.

254
Multi-Selectmedium

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

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

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

Why this answer

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

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

Exam trap

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

Why the other options are wrong

B

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

C

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

E

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

255
MCQhard

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

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

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

Why this answer

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

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

Exam trap

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

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

Why the other options are wrong

B

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

C

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

D

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

256
MCQeasy

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

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

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

Why this answer

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

Exam trap

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

Why the other options are wrong

A

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

C

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

D

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

257
Drag & Dropmedium

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

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

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

Why this order

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

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

258
PBQhard

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

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

Hints

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

Why this answer

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

Exam trap

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

Why the other options are wrong

B

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

C

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

D

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

259
MCQhard

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

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

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

Why this answer

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

Exam trap

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

Why the other options are wrong

B

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

C

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

D

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

260
MCQhard

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

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

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

Why this answer

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

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

Exam trap

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

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

Why the other options are wrong

B

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

C

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

D

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

261
MCQhard

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

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

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

Why this answer

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

Exam trap

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

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

Why the other options are wrong

A

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

C

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

D

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

262
PBQhard

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

Hints

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

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

Why this answer

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

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

Exam trap

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

Why the other options are wrong

B

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

C

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

D

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

263
MCQhard

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

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

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

Why this answer

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

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

Exam trap

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

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

Why the other options are wrong

B

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

C

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

D

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

264
MCQhard

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

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

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

Why this answer

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

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

Exam trap

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

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

Why the other options are wrong

B

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

C

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

D

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

265
MCQmedium

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

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

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

Why this answer

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

Exam trap

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

Why the other options are wrong

A

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

B

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

D

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

266
MCQhard

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

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

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

Why this answer

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

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

Exam trap

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

Why the other options are wrong

B

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

C

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

D

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

267
MCQhard

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

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

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

Why this answer

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

Exam trap

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

Why the other options are wrong

A

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

B

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

D

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

268
MCQhard

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

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

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

Why this answer

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

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

Exam trap

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

Why the other options are wrong

B

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

C

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

D

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

269
Drag & Dropmedium

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

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

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

Why this order

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

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

Exam trap

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

270
MCQmedium

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

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

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

Why this answer

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

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

Exam trap

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

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

Why the other options are wrong

A

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

B

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

D

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

271
MCQmedium

Why is SSH preferred over Telnet for remote device administration?

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

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

Why this answer

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

Exam trap

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

Why the other options are wrong

A

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

C

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

D

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

272
Multi-Selectmedium

Which two statements accurately describe common uses of NTP in network operations?

Select 2 answers
A.It helps align device clocks across the network.
B.It improves the reliability of event timelines and log correlation.
C.It replaces the need for Syslog.
D.It assigns IP addresses to hosts.
E.It provides WLAN encryption.
AnswersA, B

This is correct because clock synchronization is NTP's core role.

Why this answer

NTP is widely used to keep device clocks aligned, which improves the reliability of event timelines and log correlation because timestamps from different systems can be compared meaningfully. NTP does not replace Syslog, assign IP addresses (DHCP), or provide WLAN encryption; those are separate functions. Its sole purpose is time synchronization.

Exam trap

A frequent exam trap is assuming that NTP performs functions beyond time synchronization, such as replacing Syslog or assigning IP addresses. Candidates might incorrectly select options suggesting NTP handles logging or DHCP tasks because these services are all related to network management. However, NTP’s sole purpose is to synchronize device clocks.

Confusing NTP with DHCP or Syslog overlooks their distinct roles and can lead to selecting incorrect answers. Understanding that NTP supports but does not replace logging or address assignment is crucial to avoid this trap.

Why the other options are wrong

C

This option is incorrect because NTP does not replace Syslog; Syslog is responsible for logging events, while NTP only synchronizes time.

D

This option is incorrect because IP address assignment is handled by DHCP, not NTP, which only manages time synchronization.

E

This option is incorrect because NTP has no role in providing WLAN encryption; encryption is managed by wireless security protocols like WPA2 or WPA3.

273
MCQhard

A user reports that they cannot access the company's internal web server at 'intranet.company.local' from their workstation. The workstation can ping the web server's IP address 192.168.10.50 successfully, and other internal services like email (mail.company.local) are reachable. Which DNS record issue is most likely causing this problem?

A.Add a CNAME record that aliases 'intranet.company.local' to 'webserver.company.local'
B.Add an A record mapping 'intranet.company.local' to IP address 192.168.10.50
C.Verify the PTR record for 192.168.10.50 points to 'intranet.company.local'
D.Check the NS records for the 'company.local' zone to ensure proper delegation
AnswerB

The nslookup output confirms that a forward lookup for 'intranet.company.local' returns no A record, even though the target IP 192.168.10.50 is reachable on the network. Creating an A record in the company.local DNS zone maps the hostname to that IP address, allowing clients to resolve the name to the correct destination. Because the IP is already valid and no CNAME or other record exists, a direct A record is the minimal, correct fix.

Why this answer

The workstation can ping the web server's IP address (192.168.10.50), confirming network connectivity and that the server is online. However, the user cannot access the server by its hostname 'intranet.company.local', which indicates a DNS resolution failure. Since other internal services like email are reachable, the DNS zone is functioning, but there is no A record that maps the hostname 'intranet' to its IP address.

Adding an A record for 'intranet.company.local' pointing to 192.168.10.50 will resolve the issue.

Exam trap

Cisco often tests the distinction between forward DNS records (A/AAAA) and reverse DNS records (PTR), and candidates mistakenly choose PTR when the symptom is a forward resolution failure, confusing the direction of the lookup.

Why the other options are wrong

A

The root cause is a missing A record; a CNAME record would not resolve without an A record for the target.

C

PTR records are not used for forward name resolution; the issue is with the forward lookup zone.

D

The zone delegation is working (other records resolve), so NS records are not the cause.

274
MCQeasy

A branch router should automatically learn the IP address of a time source so logs from all devices show matching timestamps. Which service provides that function?

A.DNS
B.NTP
C.TFTP
D.NetFlow
AnswerB

Network Time Protocol (NTP) provides automatic time synchronization by allowing a router to discover NTP servers via broadcast, multicast, or DHCP option 42. A branch router can thus learn the IP address of an authoritative time source without manual per-device configuration, ensuring consistent timestamps for logs and authentication. This is the correct service for the requirement.

Why this answer

NTP synchronizes clocks across network devices. When timestamps line up, syslog messages and troubleshooting output become much more useful.

Exam trap

A common exam trap is selecting DNS as the answer because it involves IP addresses and network services, tempting candidates to confuse name resolution with time synchronization. Another trap is choosing TFTP, since it is a network protocol often associated with configuration and file transfers, misleading candidates to think it manages device settings including time. NetFlow might also confuse candidates because it deals with network traffic data, but it does not affect device clocks.

The key is to recognize that only NTP is designed specifically to synchronize time across devices, which is critical for matching timestamps in logs.

Why the other options are wrong

A

DNS resolves hostnames to IP addresses, enabling devices to locate servers and services by name. However, DNS does not synchronize device clocks or manage time, so it cannot ensure matching timestamps in logs.

C

TFTP is a simple protocol used for transferring files such as configurations and IOS images. It does not provide any time synchronization capabilities and cannot ensure matching timestamps in device logs.

D

NetFlow is a network protocol that collects and exports IP traffic flow information for analysis. It does not affect device clocks or time synchronization and thus cannot provide matching timestamps.

275
MCQhard

A switch should automatically disable any access port that receives a BPDU from an attached device. Which feature directly provides that behavior?

A.Root Guard
B.Loop Guard
C.BPDU Guard
D.PortFast
AnswerC

BPDU Guard is the correct answer because it is specifically designed to protect access ports, which should operate as edge ports in a spanning-tree domain. When an access port with BPDU Guard enabled receives any BPDU, the switch immediately places the port into the err-disabled state, effectively shutting it down to prevent a potential switching loop or unauthorized switch connection. This behavior directly matches the requirement of automatically disabling an access port that receives BPDUs.

Why this answer

BPDU Guard is designed for edge ports that should never see BPDUs. If a BPDU arrives, the port is placed into an err-disabled state to protect the topology. Root Guard and Loop Guard solve different STP problems.

Exam trap

A common exam trap is confusing BPDU Guard with Root Guard or Loop Guard. Candidates may incorrectly select Root Guard because it involves BPDUs and port blocking, but Root Guard only prevents a port from becoming a root port and does not err-disable the port. Loop Guard is often mistaken as it protects against unidirectional link failures but does not disable ports on BPDU receipt.

The key distinction is that BPDU Guard immediately disables the port upon receiving any BPDU, which is the behavior the question describes. Misunderstanding these differences can lead to incorrect answers.

Why the other options are wrong

A

Root Guard prevents a port from becoming a root port if superior BPDUs are received, maintaining the root bridge position, but it does not err-disable the port upon BPDU receipt. Therefore, it does not fulfill the requirement to disable access ports that receive BPDUs.

B

Loop Guard protects against unidirectional link failures by preventing a port from transitioning to forwarding state if BPDUs stop arriving on non-designated ports. It does not disable ports upon receiving BPDUs, so it does not meet the behavior described in the question.

D

PortFast is a feature that allows ports to transition quickly to forwarding state, bypassing the usual STP listening and learning states. It does not disable ports upon receiving BPDUs and therefore does not provide the behavior described.

276
PBQhard

You are connected to R1. The inside network 192.168.1.0/24 must be able to access the internet using PAT (NAT overload) with the outside interface G0/1 IP 203.0.113.1. Additionally, the internal server at 192.168.1.10 must be reachable from the internet via static NAT to 203.0.113.10. The current configuration is incomplete and contains errors. Identify and fix all issues so that both PAT and static NAT work correctly.

Network Topology
G0/0192.168.1.1/24G0/1203.0.113.1/24LANinsideR1outsideInternet

Hints

  • Check which interfaces are marked as inside/outside — they may be reversed.
  • Look at the ACL used for dynamic NAT — does it match the correct inside subnet?
  • Is the 'overload' keyword present on the ip nat inside source command?
A.Swap ip nat inside/outside on interfaces, add 'overload' to the dynamic NAT rule, and correct ACL 1 to permit 192.168.1.0/24.
B.Change the static NAT inside address to 192.168.1.1 and add 'overload' to the dynamic NAT rule.
C.Remove the static NAT configuration and rely solely on PAT for the server.
D.Add the 'overload' keyword to the dynamic NAT rule and correct ACL 1 to permit 192.168.1.0/24.
AnswerA
solution
! R1
interface GigabitEthernet0/0
ip nat inside
exit
interface GigabitEthernet0/1
ip nat outside
exit
no ip nat inside source list 1 pool GLOBAL
ip nat inside source list 1 pool GLOBAL overload
no access-list 1
access-list 1 permit 192.168.1.0 0.0.0.255

Why this answer

The configuration had multiple faults: 1) Inside/outside interfaces were swapped – G0/0 (LAN) should be inside, G0/1 (WAN) should be outside. 2) The PAT command was missing the 'overload' keyword. 3) ACL 1 permitted the wrong subnet (192.168.2.0/24 instead of 192.168.1.0/24). 4) The static NAT configuration was correct, but the interface misconfiguration prevented it from working. Fixes: swap ip nat inside/outside on the interfaces, add 'overload' to the dynamic NAT rule, and correct ACL 1 to permit 192.168.1.0/24.

Exam trap

This question tests your ability to identify multiple simultaneous NAT configuration errors. Common traps include forgetting the 'overload' keyword, misconfiguring ACLs, and swapping inside/outside interfaces. Always verify interface NAT directions first, as they are foundational.

Why the other options are wrong

B

The specific factual error is that the static NAT inside address is already correct; altering it is unnecessary and incorrect.

C

The specific factual error is that static NAT is required for inbound access; PAT alone cannot provide a fixed public-to-private mapping.

D

The specific factual error is that interface NAT direction is fundamental; if inside/outside are reversed, NAT translations will not be applied correctly.

277
MCQhard

An administrator wants to permit HTTP and HTTPS from 10.1.10.0/24 to a web server at 198.51.100.20 and deny everything else from that subnet. Which ACL type is required?

A.Named standard ACL
B.Extended ACL
C.Prefix list
D.MAC access-list
AnswerB

An extended ACL is required because the administrator needs to match both HTTP (TCP/80) and HTTPS (TCP/443) from a specific source address. Extended ACLs evaluate source and destination IP, protocol (TCP), and destination port numbers, enabling precise filtering of application-layer traffic. The syntax, such as permit tcp host 10.0.0.1 any eq 80 and eq 443, supports matching these services. This granularity is exactly what the scenario demands, making it the correct choice.

Why this answer

A standard ACL can match only the source address. To permit specific protocols and ports such as TCP 80 and 443 to a specific destination, the administrator must use an extended ACL.

Exam trap

A frequent exam trap is selecting a standard ACL when the question requires filtering by both source and destination IP addresses plus specific protocols or ports. Standard ACLs only filter by source IP, so they cannot distinguish HTTP or HTTPS traffic to a particular destination. Another trap is confusing prefix lists or MAC access-lists as suitable options; prefix lists filter routes, not traffic by port, and MAC access-lists filter Layer 2 addresses, not Layer 3 or 4 information.

Misunderstanding these differences leads to incorrect ACL type selection and exam failure.

Why the other options are wrong

A

Named standard ACLs filter traffic only by source IP address and cannot filter by destination IP or specific TCP ports like 80 or 443, making them unsuitable for permitting HTTP and HTTPS to a specific server.

C

Prefix lists are used to filter routes based on IP prefixes in routing protocols and cannot filter traffic by protocol or port, so they cannot meet the requirement to permit HTTP and HTTPS traffic specifically.

D

MAC access-lists filter traffic based on Layer 2 MAC addresses and cannot filter by Layer 3 IP addresses or Layer 4 ports, so they cannot selectively permit HTTP and HTTPS traffic to a specific IP address.

278
PBQhard

You are connected to R1. Configure R1 as a DHCP server for VLAN 20 clients (192.168.20.0/24) with DNS server 203.0.113.10 and default gateway 192.168.20.1. On switch SW1, enable DHCP snooping globally and on VLAN 20, configure the uplink to R1 as trusted, and ensure that the DHCP server is reachable via ip helper-address on the VLAN 20 SVI. Currently, clients are not receiving IP addresses because of misconfigurations: the excluded-address range on R1 is too large (excluding the entire subnet), the helper-address on SW1 points to a wrong IP (192.0.2.99), and a rogue DHCP server is connected to port Fa0/3 on SW1. Fix all issues so that clients can get addresses securely.

Hints

  • The excluded-address range is too broad; narrow it to only the gateway and a small reserved range.
  • The helper-address must point to the DHCP server's IP, which is on a different subnet.
  • DHCP snooping must be enabled globally and per VLAN, and the port connecting to the legitimate DHCP server must be trusted.
A.On R1, change the excluded-address range to 192.168.20.1 192.168.20.1; on SW1, configure ip helper-address 10.0.0.1 under interface Vlan20; enable DHCP snooping globally and on VLAN 20, and configure the uplink to R1 as trusted.
B.On R1, remove the excluded-address range entirely; on SW1, configure ip helper-address 192.168.20.1 under interface Vlan20; enable DHCP snooping globally and on VLAN 20, and configure the uplink to R1 as trusted.
C.On R1, change the excluded-address range to 192.168.20.1 192.168.20.254; on SW1, configure ip helper-address 192.0.2.99 under interface Vlan20; enable DHCP snooping globally and on VLAN 20, and configure the uplink to R1 as trusted.
D.On R1, change the excluded-address range to 192.168.20.1 192.168.20.1; on SW1, configure ip helper-address 10.0.0.1 under interface Vlan20; enable DHCP snooping globally and on VLAN 20, but do not configure any trusted ports.
AnswerA
solution
! R1
no ip dhcp excluded-address 192.168.20.0 192.168.20.255
ip dhcp excluded-address 192.168.20.1
ip dhcp excluded-address 192.168.20.2 192.168.20.10

! SW1
ip dhcp snooping
ip dhcp snooping vlan 20
interface FastEthernet0/1
ip dhcp snooping trust
exit
interface Vlan20
no ip helper-address 192.0.2.99
ip helper-address 10.0.0.1

Why this answer

The DHCP server had an excluded-address range covering the entire subnet (192.168.20.0–255), which prevented any IP from being assigned. Fix: change the excluded range to only include the gateway (192.168.20.1) and optionally other reserved addresses. The helper-address on SW1 pointed to 192.0.2.99 (nonexistent) instead of the DHCP server at 10.0.0.1; correct it.

DHCP snooping was disabled; enable it globally and on VLAN 20, then configure the uplink to R1 (port connecting to R1) as trusted and the port connecting the rogue server (Fa0/3) as untrusted (or simply leave it untrusted by default, but the rogue server will be blocked).

Exam trap

A common trap is forgetting that the excluded-address range should only reserve specific addresses, not the whole subnet. Another trap is confusing the helper-address with the default gateway or leaving the incorrect IP. Also, many candidates enable DHCP snooping but forget to configure the trusted port, which breaks legitimate DHCP traffic.

Why the other options are wrong

B

The helper-address must point to the DHCP server, not the default gateway. The excluded-address range should include the gateway to prevent conflicts.

C

The excluded-address range must be limited to reserved addresses only, not the entire usable range. The helper-address must be corrected to 10.0.0.1.

D

DHCP snooping requires the port connected to the legitimate DHCP server to be explicitly trusted; otherwise, all DHCP server messages are discarded.

279
PBQmedium

You are connected to R1 via the console. R1's GigabitEthernet0/0 (10.0.0.1/30) connects to R2 (10.0.0.2/30). Hosts on the LAN (192.168.1.0/24) need DHCP services. The DHCP server is located at 172.16.1.100 on a different subnet reachable via R2. Configure R1 to forward DHCP broadcasts to the DHCP server.

Network Topology
G0/1192.168.1.1/24G0/010.0.0.1/3010.0.0.2/30link10.0.0.2/30PCsLANR1R2DHCP server

Hints

  • The ip helper-address command is used to forward DHCP broadcasts.
  • Apply it on the interface facing the DHCP clients.
A.ip helper-address 172.16.1.100
B.ip dhcp relay information option
C.ip forward-protocol udp 67
D.ip dhcp-server 172.16.1.100
AnswerA
solution
! R1
interface GigabitEthernet0/1
ip helper-address 172.16.1.100

Why this answer

The ip helper-address command on the LAN interface forwards DHCP broadcast requests to the DHCP server at 172.16.1.100, allowing clients to obtain IP addresses across subnets.

Exam trap

Do not confuse the ip helper-address command with other DHCP-related commands like ip dhcp relay information option or ip forward-protocol. The key is to remember that ip helper-address is the command that actually forwards broadcasts to a specific server.

Why the other options are wrong

B

It is a supporting feature for relay agents, not the primary command to forward DHCP broadcasts.

C

It is a prerequisite but not sufficient; the ip helper-address is still needed to direct the traffic.

D

The command does not exist; it is a fabrication.

280
MCQhard

An operations team wants a monitoring platform to periodically read interface counters and CPU statistics from routers. Which technology is most closely associated with that requirement?

A.SNMP
B.Syslog
C.NetFlow
D.Port security
AnswerA

SNMP is the standard protocol for network monitoring platforms to periodically poll managed devices for operational data. It uses community strings or SNMPv3 credentials to read MIB objects such as interface counters, CPU load, and temperature, making it ideal for routine status collection and alerting on thresholds.

Why this answer

SNMP is the best fit for that requirement. In practical terms, periodic reading of counters and statistics is polling-style monitoring, which is one of the classic SNMP use cases. A management system can query devices for interface status, utilization data, and other measurable values over time.

This is different from Syslog, which is event-message oriented, and from NetFlow, which focuses on traffic-flow visibility rather than general device statistics. The question is really about routine monitoring and polling.

Exam trap

A common exam trap is selecting Syslog or NetFlow as the answer because they are also monitoring-related technologies. Syslog is tempting because it deals with messages from devices, but it only reports events and logs rather than polling counters periodically. NetFlow is often confused with SNMP because it provides traffic visibility, but it focuses on flow data, not general device statistics like CPU or interface counters.

Another trap is port security, which is unrelated to monitoring and instead controls MAC address access on switch ports. Recognizing that SNMP uniquely supports periodic polling of device metrics helps avoid these mistakes.

Why the other options are wrong

B

Syslog is incorrect because it focuses on logging event messages and alerts rather than routinely polling device counters or CPU statistics, so it does not meet the periodic monitoring requirement.

C

NetFlow is incorrect because it provides detailed traffic flow analysis and visibility but does not poll general device statistics like CPU usage or interface counters, which are needed here.

D

Port security is incorrect because it is a Layer 2 feature that restricts MAC addresses on switch ports and does not provide any monitoring or polling capabilities for device statistics.

281
MCQhard

A network technician is troubleshooting a router that cannot be accessed via SSH. The router responds to Telnet but SSH attempts return 'connection refused'. The technician confirmed that 'ip ssh version 2' is configured and 'show ip ssh' indicates SSH is enabled. The output of 'show line vty 0 4' shows 'transport input telnet'. What should the technician do next?

A.Generate a new RSA key pair and restart the SSH service.
B.Add the 'transport input ssh' command to the VTY lines.
C.Configure 'ip ssh version 1' to enable backward compatibility.
D.Configure AAA authentication on the VTY lines.
AnswerB

The show line vty output indicates only Telnet is permitted. Adding 'transport input ssh' (or 'transport input all') modifies the VTY configuration to accept both Telnet and SSH, directly fixing the protocol restriction causing the connection refused.

Why this answer

The VTY lines are configured with 'transport input telnet', which explicitly allows only Telnet sessions. SSH is enabled globally, but because it is not listed in the VTY transport input, the router rejects SSH connection attempts. Adding 'transport input ssh' (or 'transport input all') under the VTY lines permits SSH connections without disrupting Telnet, solving the mismatch at the application layer.

Exam trap

Generating a new RSA key pair is a common but incorrect next step because SSH is already enabled and operational; the 'connection refused' message stems from the VTY transport configuration, not from missing or corrupted keys.

Why the other options are wrong

A

Administrators often mistake 'connection refused' for a key issue, but the VTY lines restrict the allowed protocols, not the validity of the keys.

C

Candidates may think a version mismatch causes the refusal, but the VTY transport setting is the actual filter; downgrading security is unnecessary and ineffective.

D

Some technicians equate 'connection refused' with authentication failure and jump to AAA, but in this case the VTY lines never allow the SSH session to reach the authentication stage.

282
Matchingmedium

Which option correctly matches an IP service symptom to the most likely service involved?

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

Concepts
Matches

DNS

DHCP

NTP

Syslog

Why these pairings

DNS failures prevent name resolution because DNS is the service that translates hostnames to IP addresses. Without DNS, users cannot reach resources by name, but IP connectivity remains unaffected. This matches the symptom described in option A, making DNS the correct service.

Exam trap

The trap is to associate packet loss with a specific service; packet loss is a network condition, not a service. The correct answer focuses on the service (DNS) that directly causes the symptom of failed name resolution.

283
Multi-Selectmedium

A network team wants an ACL that permits HTTPS from 10.1.50.0/24 to a web server at 203.0.113.10 and denies all Telnet traffic from that subnet to any destination. Which two ACEs are required?

Select 2 answers
A.permit tcp 10.1.50.0 0.0.0.255 host 203.0.113.10 eq 443
B.deny tcp 10.1.50.0 0.0.0.255 any eq 23
C.permit udp 10.1.50.0 0.0.0.255 host 203.0.113.10 eq 443
D.deny tcp any 10.1.50.0 0.0.0.255 eq 23
E.permit ip any any
AnswersA, B

This ACL entry uses the wildcard mask 0.0.0.255 to match the entire 10.1.50.0/24 subnet as the source and specifies the single host 203.0.113.10 as the destination with the port number 443. Because HTTPS is a TCP-based protocol, the 'tcp' keyword is essential; this rule precisely permits outbound HTTPS traffic from that subnet to only that web server while leaving all other traffic unaffected.

Why this answer

To meet the requirement, one ACE must explicitly permit TCP destination port 443 to the web server, and another must deny TCP destination port 23 to any destination. Option C is wrong because HTTPS (port 443) uses TCP, not UDP. Option D reverses source and destination; the deny should apply from 10.1.50.0/24 to any, not from any to that subnet.

Option E permits all IP traffic, which would override the deny for Telnet, making it ineffective.

Exam trap

Be careful to match both the source and destination criteria in ACLs, not just the destination.

Why the other options are wrong

C

HTTPS uses TCP, not UDP, so a UDP permit for port 443 would not match HTTPS traffic.

D

The ACL reverses source and destination; it denies Telnet from any to 10.1.50.0/24, not from 10.1.50.0/24 to any.

E

Permitting all IP traffic would allow Telnet, negating the required deny rule.

284
MCQhard

A router is configured with PAT for inside users. Which symptom most strongly suggests the NAT inside/outside roles are reversed on the interfaces?

A.Outbound traffic still shows private inside source addresses where translated public addresses should appear.
B.The NAT translation table is empty even though internal users are browsing the internet.
C.Internal hosts cannot reach the internet at all.
D.External hosts can connect to internal servers using their private IP addresses.
AnswerA

Outbound traffic showing private inside source addresses where translated public addresses should appear is the most direct symptom of reversed inside/outside roles. When roles are reversed, the router applies translation in the wrong direction, so inside hosts' traffic leaving the outside interface remains untranslated.

Why this answer

When NAT inside/outside roles are reversed, the router applies translation logic in the wrong direction, causing traffic from the inside network to leave the outside interface with untranslated private source addresses. The correct answer (A) directly demonstrates this failure: outbound traffic still shows private IPs where a public address should appear after PAT. The other options describe symptoms that could occur with other NAT misconfigurations but do not strongly indicate reversed roles: an empty translation table (B) suggests no NAT processing at all, possibly due to missing ACL or overload configuration; total lack of internet access (C) may result from many connectivity issues, not specifically reversed interface roles; and external hosts reaching internal servers by private IP (D) points more to a missing or incorrect static NAT rule rather than direction reversal.

Exam trap

A common exam trap is assuming that NAT translation problems are caused by ACL or overload command errors, while overlooking the inside/outside interface roles. Candidates may see private IP addresses in outbound traffic and mistakenly focus on ACL syntax or NAT pool definitions. However, the root cause is often reversed interface roles, which prevent the router from applying PAT correctly.

This trap leads to wasted time troubleshooting unrelated configurations and missing the fundamental NAT directionality requirement.

Why the other options are wrong

B

An empty NAT table indicates no translation is happening at all, which is not the expected outcome of simply reversing inside/outside roles—NAT still processes packets but incorrectly.

C

Complete internet unreachability is a generic connectivity symptom that could be caused by routing, firewall, or other NAT issues, but does not strongly signal a role reversal.

D

External hosts connecting to a private IP without translation is a typical sign of a missing static NAT or PAT rule, not of reversed interface direction assignments.

285
PBQmedium

You are connected to R1 via console. R1 is a router that should restrict SSH access to only the management station at 192.168.1.100. Currently, SSH is enabled but any IP can connect. Configure a standard named ACL called 'SSH_ACL' to permit only the management station, and apply it to the VTY lines to filter incoming SSH connections. Ensure the VTY lines use SSH only (no Telnet). The SSH version should be set to 2.

Network Topology
G0/0192.168.1.1/24192.168.1.100LANR1Management Station

Hints

  • Create a standard ACL that permits only the management host.
  • Apply the ACL to the VTY lines with 'ip access-class'.
  • Use 'transport input ssh' to allow only SSH and 'ip ssh version 2' to enforce SSHv2.
A.R1(config)# ip access-list standard SSH_ACL R1(config-std-nacl)# permit host 192.168.1.100 R1(config-std-nacl)# deny any R1(config-std-nacl)# exit R1(config)# line vty 0 4 R1(config-line)# ip access-class SSH_ACL in R1(config-line)# transport input ssh R1(config)# ip ssh version 2
B.R1(config)# access-list SSH_ACL permit 192.168.1.100 R1(config)# line vty 0 4 R1(config-line)# access-group SSH_ACL in R1(config-line)# transport input ssh R1(config)# ip ssh version 2
C.R1(config)# ip access-list standard SSH_ACL R1(config-std-nacl)# permit 192.168.1.100 R1(config)# line vty 0 4 R1(config-line)# ip access-class SSH_ACL out R1(config-line)# transport input ssh R1(config)# ip ssh version 2
D.R1(config)# access-list SSH_ACL permit 192.168.1.100 R1(config)# line vty 0 4 R1(config-line)# ip access-class SSH_ACL in R1(config-line)# transport input all R1(config)# ip ssh version 2
AnswerA
solution
! R1
ip access-list standard SSH_ACL
permit host 192.168.1.100
deny any
line vty 0 4
ip access-class SSH_ACL in
transport input ssh
ip ssh version 2

Why this answer

The standard ACL restricts inbound connections to the VTY lines. Applying it with 'ip access-class in' filters incoming Telnet/SSH sessions. Setting 'transport input ssh' disables Telnet, and 'ip ssh version 2' ensures secure SSH version 2.

Exam trap

Be careful not to confuse 'access-group' (for interfaces) with 'access-class' (for VTY lines). Also, remember that 'in' on VTY lines filters incoming connections, while 'out' filters outgoing. Always verify the transport input setting to ensure only SSH is allowed.

Why the other options are wrong

B

The command 'access-group' is used on interfaces to filter traffic, not on VTY lines. VTY lines use 'ip access-class' to filter incoming Telnet/SSH sessions.

C

The direction 'out' on VTY lines filters traffic originating from the router (outgoing), not incoming SSH connections. The correct direction is 'in'.

D

The command 'transport input all' permits all protocols, including Telnet, which is insecure. The requirement specifies SSH only, so 'transport input ssh' is needed.

286
PBQhard

You are connected to R1. The network uses private IP 10.10.10.0/24 on the inside and must reach the Internet via the outside interface G0/1 with public IP 203.0.113.1/29. Configure PAT (NAT overload) so that inside hosts can access the Internet, and also configure a static NAT for the internal server 10.10.10.100 to public IP 203.0.113.2. The current configuration has errors: the inside and outside interfaces are swapped, the ACL is incorrectly defined, and the overload keyword is missing. Fix all issues.

Network Topology
G0/0 inside10.10.10.1/2410.10.10.0/24G0/1 outside203.0.113.1/29Inside hostsswitchR1Internet

Hints

  • Check which interface is marked inside and which is outside — the private IP network should be inside.
  • The ACL must match the actual inside subnet, not a different network.
  • PAT requires the 'overload' keyword on the ip nat inside source command.
A.On G0/0: ip nat inside; on G0/1: ip nat outside; ACL 10 permit 10.10.10.0 0.0.0.255; ip nat inside source list 10 interface GigabitEthernet0/1 overload
B.On G0/0: ip nat outside; on G0/1: ip nat inside; ACL 10 permit 10.10.10.0 0.0.0.255; ip nat inside source list 10 interface GigabitEthernet0/1 overload
C.On G0/0: ip nat inside; on G0/1: ip nat outside; ACL 10 permit 192.168.1.0 0.0.0.255; ip nat inside source list 10 interface GigabitEthernet0/1 overload
D.On G0/0: ip nat inside; on G0/1: ip nat outside; ACL 10 permit 10.10.10.0 0.0.0.255; ip nat inside source list 10 interface GigabitEthernet0/1
AnswerA
solution
! R1
interface GigabitEthernet0/0
no ip nat outside
ip nat inside
exit
interface GigabitEthernet0/1
no ip nat inside
ip nat outside
exit
no access-list 10
access-list 10 permit 10.10.10.0 0.0.0.255
ip nat inside source list 10 interface GigabitEthernet0/1 overload

Why this answer

The configuration had three faults: (1) The inside interface (G0/0 with private IP) was marked 'ip nat outside', and the outside interface (G0/1 with public IP) was marked 'ip nat inside' — these must be swapped. (2) The ACL 10 permitted 192.168.1.0/24 instead of the actual inside subnet 10.10.10.0/24. (3) The NAT command 'ip nat inside source list 10 interface GigabitEthernet0/1' was missing the 'overload' keyword, which is required for PAT. The static NAT was correctly defined. After fixing all three, inside hosts will be able to access the Internet using PAT.

Exam trap

Watch out for three common NAT configuration mistakes: swapping inside/outside interface designations, using an ACL that does not match the actual inside network, and forgetting the 'overload' keyword for PAT. Always verify the interface IP addresses and the ACL permit statement.

Why the other options are wrong

B

The specific factual error is that the 'ip nat inside' and 'ip nat outside' commands are applied to the wrong interfaces. The inside interface must be the one facing the internal network, and the outside interface must be the one facing the external network.

C

The specific factual error is that the ACL does not match the correct inside network. The ACL in the NAT configuration must permit the exact private IP range used on the inside network.

D

The specific factual error is the omission of the 'overload' keyword. PAT (overload) is required to allow multiple inside hosts to share a single public IP address by using different source ports.

287
MCQhard

A network administrator is configuring a Layer 2 EtherChannel between two switches. Switch A uses 'channel-group 1 mode active', and Switch B uses 'channel-group 1 mode desirable'. All member interfaces are trunk ports with identical allowed VLANs. The EtherChannel fails to form. What is the most likely cause?

A.The switches are using different EtherChannel negotiation protocols.
B.A Layer 2 EtherChannel cannot carry trunk links.
C.The channel-group number must be different on each switch.
D.The member interfaces must be in access mode before the bundle can form.
AnswerA

Switch A is configured for Link Aggregation Control Protocol (LACP) using `mode active`, whereas Switch B is configured for Port Aggregation Protocol (PAgP) using `mode desirable`. LACP and PAgP are distinct EtherChannel negotiation protocols. For an EtherChannel to establish using a negotiation protocol, both connected switches must utilise the identical protocol, as they are incompatible with each other. This protocol mismatch directly causes the EtherChannel to fail.

Why this answer

The two switches are using different negotiation protocols: LACP (active) on one side and PAgP (desirable) on the other. EtherChannel requires both sides to use the same protocol, so this protocol mismatch prevents the bundle from forming. The other settings—trunking, VLAN configuration, and channel-group number—are correctly configured and do not cause the failure.

Exam trap

Ensure both sides of an EtherChannel use the same negotiation protocol; mismatches are a common setup error.

Why the other options are wrong

B

This option is incorrect because a Layer 2 EtherChannel can indeed carry trunk links, allowing multiple VLANs to be transmitted over the same logical link. The issue with the EtherChannel not forming is more likely related to mismatched negotiation protocols or other configuration errors.

C

This option is wrong because the channel-group number must be the same on both switches for an EtherChannel to form. Different numbers would prevent the aggregation of the links.

D

This option is wrong because a Layer 2 EtherChannel can indeed carry trunk links, allowing multiple VLANs to be transmitted over the same link. Therefore, the inability to form the EtherChannel is not due to the mode of the member interfaces.

288
Multi-Selectmedium

Which four of the following are true statements regarding the operation of DHCP snooping on a Cisco switch? (Choose all that apply. There are four correct answers.)

Select 4 answers
.DHCP snooping distinguishes trusted and untrusted ports.
.By default, all ports are considered untrusted for DHCP snooping.
.DHCP snooping can rate-limit DHCP messages to prevent denial-of-service attacks.
.DHCP snooping builds and maintains a DHCP snooping binding database (also called a binding table).
.DHCP snooping prevents rogue DHCP servers by allowing only authorized servers on any port.
.DHCP snooping requires an external DHCP server to be configured on the switch.

Why this answer

The four correct statements are true because DHCP snooping is a security feature that operates by classifying switch ports as trusted or untrusted. By default, all ports are untrusted, meaning they cannot send DHCP server messages (OFFER, ACK, NAK) unless explicitly configured as trusted. Rate-limiting DHCP messages on untrusted ports mitigates DHCP starvation attacks, and the binding database (MAC-to-IP mapping) is built from DHCP ACK messages to prevent IP spoofing.

The incorrect statement "DHCP snooping requires an external DHCP server to be configured on the switch" is false because DHCP snooping itself does not require the switch to act as a DHCP server; it simply relies on DHCP messages from a legitimate server reachable through a trusted port.

Exam trap

Cisco often tests the misconception that DHCP snooping can be configured to allow authorized servers on any port, but the feature strictly enforces that only trusted ports can source DHCP server messages, regardless of the server's IP or MAC address.

289
MCQhard

Exhibit: Users on the inside network can open connections to a web server in the DMZ, but return traffic is denied by an ACL on the outside interface. Which statement best explains the issue?

A.The ACL should match the source port 80 on returning traffic, not the destination port 80
B.HTTP traffic can never be filtered with a standard ACL
C.The ACL must be applied outbound on the inside interface only
D.NAT automatically bypasses interface ACLs
AnswerA

HTTP response packets from the server use source port 80 and a randomly chosen high destination port on the client, not destination port 80. An ACL that only permits traffic with destination port 80 will therefore drop the return packets because their destination port is an ephemeral port. To correctly permit the response, the inbound ACL must match the source port and destination host, not the destination port.

Why this answer

An ACL applied inbound on the outside interface will evaluate the return traffic entering from the DMZ or outside toward the router. If it permits only destination port 80 inbound, the returning packets will not match because their destination is an ephemeral client port, not 80.

Exam trap

A frequent exam trap is believing that return HTTP traffic will have destination port 80, just like the outbound request. This misconception causes candidates to configure ACLs that only permit inbound packets with destination port 80, which blocks legitimate return traffic because the return packets have source port 80 and a high-numbered destination port. Misunderstanding this port reversal leads to ACLs that deny return traffic, causing connectivity failures despite correct outbound rules.

Another trap is confusing NAT behavior, incorrectly assuming NAT bypasses ACLs, which it does not. This misunderstanding can cause candidates to overlook ACL port matching issues.

Why the other options are wrong

B

Incorrect. While standard ACLs cannot filter by port, extended ACLs can. The issue here is port matching on return traffic, not the inability to filter HTTP with ACLs.

C

Incorrect. ACL placement varies, but the key problem is the ACL’s port matching logic on the outside interface inbound direction, not just interface selection.

D

Incorrect. NAT does not bypass ACLs. ACLs still process packets after NAT translation, so NAT is not the cause of return traffic denial.

290
MCQeasy

In AAA, which function determines what an authenticated user is allowed to do after login?

A.Authentication
B.Authorization
C.Accounting
D.Encryption
AnswerB

Authorization is the AAA process that determines the specific permissions, access rights, and allowed actions for an authenticated user. It defines what resources, commands, or services the user can use, effectively answering the question 'what can this user do?'. In Cisco configurations, this is often implemented via named permission lists or attribute-value pairs on an AAA server.

Why this answer

Authentication verifies identity. Authorization determines permitted actions. Accounting records activity.

Exam trap

Don't confuse authentication with authorization; they serve different purposes in AAA.

Why the other options are wrong

A

Authentication is the process of verifying a user's identity, not determining their permissions. In the context of this question, it does not address what actions an authenticated user is allowed to perform.

C

Accounting refers to the tracking and logging of user activities and resource usage, not the permissions or access rights granted to users after authentication. Therefore, it does not determine what an authenticated user is allowed to do.

D

Encryption is a process that secures data by converting it into a coded format, but it does not determine user permissions or access rights after authentication. Therefore, it is not relevant to the function of managing user privileges post-login.

291
MCQhard

After enabling DHCP snooping on VLAN 10, a technician finds that clients in that VLAN are no longer receiving IP addresses from the DHCP server. The server is connected to port Gi0/24. What is the most likely cause?

A.The port Gi0/24 has not been configured as a trusted port for DHCP snooping.
B.The DHCP server is on a different subnet, and the VLAN 10 SVI does not have an ip helper-address configured.
C.The DHCP snooping database location was not configured, causing the switch to discard all DHCP server messages.
D.The DHCP snooping binding table does not contain an entry for the DHCP server’s MAC address, so offers are being discarded.
AnswerA

DHCP snooping immediately blocks all DHCP server messages on untrusted ports. Because Gi0/24 is the uplink to the DHCP server, it must be explicitly set as trusted (ip dhcp snooping trust), otherwise the switch will drop the DHCP offers sent by the server.

Why this answer

When DHCP snooping is enabled, all ports are untrusted by default. Untrusted ports will drop DHCP server messages (OFFER, ACK, etc.) unless the port is explicitly configured as trusted. Since the DHCP server is connected to Gi0/24 and the technician did not configure it as a trusted port, the switch discards the server's responses, preventing clients from obtaining IP addresses.

Exam trap

Cisco often tests the default untrusted state of all ports when DHCP snooping is enabled, leading candidates to overlook the need to manually trust the server port.

Why the other options are wrong

B

This option assumes that the loss of DHCP service is due to a missing relay agent, but the symptom started only after enabling snooping, not after an infrastructure change that would affect the relay path.

C

The idea that a missing database causes immediate traffic blocking is a common misinterpretation of the database’s role—it is purely for persistency, not for runtime filtering.

D

Many candidates assume that DHCP snooping uses a reverse-check against the binding table for any DHCP server messages, but the filtering is based solely on the trusted/untrusted port state, not on a learned server entry.

292
PBQhard

You are connected to SW1, a multilayer switch. Configure DHCP snooping and an IP helper-address so that clients in VLAN 20 receive IP addresses from the DHCP server at 10.0.0.2. The DHCP server is already configured with a pool for 192.168.20.0/24, but clients are not getting addresses. Identify and correct the issues in the current configuration.

Network Topology
G0/010.0.0.1/30G0/1SW1DHCP ServerClient

Hints

  • Check the helper-address on VLAN 20 — is it pointing to the correct server IP?
  • DHCP snooping must be enabled globally and for the specific VLAN.
  • The port towards the DHCP server must be configured as trusted.
A.Enable DHCP snooping globally and on VLAN 20, configure interface G0/0 as trusted, and change the ip helper-address on the SVI for VLAN 20 from 10.0.0.3 to 10.0.0.2.
B.Enable DHCP snooping globally and on VLAN 20, configure interface G0/1 as trusted, and change the ip helper-address on the SVI for VLAN 20 from 10.0.0.3 to 10.0.0.2.
C.Enable DHCP snooping globally and on VLAN 20, configure interface G0/0 as trusted, and keep the ip helper-address as 10.0.0.3 because that is the correct server address.
D.Enable DHCP snooping globally and on VLAN 20, configure both interfaces G0/0 and G0/1 as trusted, and change the ip helper-address on the SVI for VLAN 20 from 10.0.0.3 to 10.0.0.2.
AnswerA
solution
! SW1
configure terminal
ip dhcp snooping
ip dhcp snooping vlan 20
interface gigabitethernet0/0
ip dhcp snooping trust
interface vlan20
no ip helper-address 10.0.0.3
ip helper-address 10.0.0.2
end
write memory

Why this answer

The DHCP relay helper-address was pointing to 10.0.0.3 instead of the actual server at 10.0.0.2. Also, DHCP snooping was not enabled. After enabling DHCP snooping globally and on VLAN 20, configure the uplink to the DHCP server as a trusted port (G0/0) and the access port (G0/1) as untrusted (default).

Finally, correct the helper-address to 10.0.0.2. These steps allow DHCP broadcasts from VLAN 20 to be relayed to the server and prevent rogue DHCP attacks.

Exam trap

A common trap is to trust all ports or to forget that the ip helper-address must match the actual DHCP server IP. Also, candidates may confuse which port should be trusted: only the port facing the legitimate DHCP server should be trusted, not client-facing ports.

Why the other options are wrong

B

The specific factual error is that the access port (G0/1) should be untrusted, not trusted. Only the uplink port to the legitimate DHCP server should be trusted.

C

The specific factual error is that the ip helper-address must be set to the actual DHCP server IP (10.0.0.2), not 10.0.0.3.

D

The specific factual error is that only the uplink port (G0/0) should be trusted; trusting the access port (G0/1) allows any device connected to that port to act as a DHCP server.

293
Multi-Selectmedium

A network team wants to collect flow-level traffic statistics from routers to identify top talkers and bandwidth consumers. Which two statements about NetFlow are correct?

Select 2 answers
A.It summarizes traffic into flows instead of capturing every packet payload
B.It is primarily used to distribute time from an authoritative clock
C.It can help identify which conversations consume the most bandwidth
D.It replaces routing protocols by advertising reachability information
AnswersA, C

NetFlow operates by grouping packets that share common attributes—like IP addresses, port numbers, protocol, and ToS—into unidirectional flows, then exporting a summary record containing counters and timestamps. This avoids the storage and processing overhead of capturing every packet's full payload, making it efficient for long-term traffic analysis. Unlike deep packet inspection, NetFlow does not reconstruct or retain the application data itself, only the flow metadata.

Why this answer

NetFlow provides visibility into who is talking to whom, with what protocols and volume, making it valuable for capacity planning, troubleshooting, and security analysis.

Exam trap

A frequent exam trap is mistaking NetFlow for protocols that distribute time or routing information. For example, option B incorrectly associates NetFlow with NTP, which synchronizes clocks, and option D wrongly suggests NetFlow replaces routing protocols by advertising reachability. These misconceptions arise because candidates may not clearly differentiate between monitoring technologies and control plane protocols.

Remember, NetFlow only summarizes traffic flows for analysis and does not participate in routing or time synchronization. Confusing these roles can lead to selecting incorrect answers under exam pressure.

Why the other options are wrong

B

Option B is incorrect because distributing time from an authoritative clock is the function of NTP, not NetFlow, which is a traffic monitoring protocol.

D

Option D is incorrect because NetFlow does not replace routing protocols or advertise reachability information; it only monitors traffic flows.

294
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure a Layer 3 switch to perform DHCP relay agent and DHCP snooping for a remote DHCP server.

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

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

Why this order

Correct order: 1) Create DHCP pool on the server to have valid lease parameters; 2) Assign IP address to the SVI so it can act as the gateway and relay agent for the subnet; 3) Globally enable DHCP snooping to activate the feature; 4) Enable snooping on the client VLAN so that only that VLAN’s DHCP traffic is filtered; 5) Set the interface facing the server as trusted to allow DHCP replies; 6) Configure ip helper-address on the SVI to forward client DHCP broadcasts to the server. Each step depends on the previous: the server must be ready; the SVI needs an IP before the helper can be applied; snooping must be globally on before per-VLAN settings; trusted port must be defined before relayed replies are accepted; finally, the helper address enables the actual relay.

295
MCQeasy

Which protocol is preferred over Telnet for remote CLI management because it encrypts the session?

A.FTP
B.SSH
C.TFTP
D.SNMPv1
AnswerB

SSH (Secure Shell) provides an encrypted, authenticated remote CLI session over TCP port 22, protecting both login credentials and subsequent commands from eavesdropping or session hijacking. It is the industry-standard replacement for Telnet because it ensures confidentiality and integrity of the management traffic on untrusted networks. Unlike the other options, SSH is purpose-built for secure interactive terminal access to network devices.

Why this answer

SSH encrypts credentials and management traffic, making it the standard secure replacement for Telnet.

Exam trap

A frequent exam trap is selecting Telnet or other protocols like FTP or TFTP for remote CLI management because they are familiar or commonly mentioned in networking contexts. Telnet is often mistakenly chosen because it provides remote access, but it sends all data unencrypted, exposing credentials to attackers. FTP and TFTP are file transfer protocols and do not support interactive command-line management sessions.

SNMPv1 is used for network monitoring, not secure CLI access, and lacks encryption. Candidates must recognize that only SSH encrypts the session, making it the secure and preferred protocol for remote management in Cisco environments.

Why the other options are wrong

A

FTP is designed for transferring files between devices and does not provide an interactive command-line interface for remote device management. It also lacks encryption for session data, making it unsuitable for secure remote CLI access.

C

TFTP is a simple file transfer protocol used mainly for transferring configuration files or IOS images. It does not support interactive remote CLI sessions and lacks encryption, so it cannot replace Telnet for secure management.

D

SNMPv1 is a protocol used for network monitoring and management but does not provide an interactive CLI interface. It also lacks encryption, making it unsuitable for secure remote management sessions.

296
MCQmedium

A PC in VLAN 30 must obtain an address from a DHCP server in VLAN 99. Which feature is required on the Layer 3 interface for VLAN 30?

A.Port security
B.DHCP snooping
C.DHCP relay
D.Dynamic ARP inspection
AnswerC

DHCP relay, configured with the ip helper-address command on the VLAN interface, intercepts the client's DHCPDISCOVER broadcast and unicasts it to the DHCP server's IP address on another subnet. The relay agent also relays DHCPOFFER, DHCPREQUEST, and DHCPACK messages, allowing the client in VLAN 30 to obtain an address despite the server being in a different VLAN or subnet. Without this relay, DHCP broadcasts would remain confined to VLAN 30 and never reach the remote server.

Why this answer

DHCP Discover messages are broadcasts and do not cross Layer 3 boundaries on their own. DHCP relay, commonly configured with ip helper-address, forwards the requests to a server on another subnet.

Exam trap

A frequent exam trap is selecting DHCP snooping or port security as the solution for inter-VLAN DHCP communication. DHCP snooping is often misunderstood as a relay mechanism, but it only validates DHCP messages to prevent unauthorized servers and does not forward broadcasts between VLANs. Similarly, port security controls MAC address access on switchports but does not affect DHCP message forwarding.

Candidates may also confuse Dynamic ARP Inspection with DHCP relay, but DAI only inspects ARP traffic for security purposes. The key mistake is overlooking that DHCP broadcasts are Layer 2 broadcasts and require DHCP relay on the Layer 3 interface to reach servers in other VLANs.

Why the other options are wrong

A

Port security restricts MAC addresses on switchports to enhance security but does not forward DHCP broadcasts or enable clients in one VLAN to reach DHCP servers in another VLAN. It does not facilitate inter-VLAN DHCP communication.

B

DHCP snooping is a security feature that validates DHCP messages to prevent rogue DHCP servers but does not relay DHCP requests between VLANs. It cannot replace DHCP relay functionality needed for inter-VLAN DHCP address assignment.

D

Dynamic ARP Inspection inspects ARP traffic to prevent ARP spoofing attacks but does not forward DHCP messages or enable DHCP communication between VLANs. It is unrelated to DHCP relay or inter-VLAN DHCP address assignment.

297
Multi-Selectmedium

A branch office uses PAT overload on the edge router. Inside users can reach the internet, but return traffic for a newly deployed server must be mapped to a specific inside host. Which two statements are correct?

Select 2 answers
A.A static NAT entry can provide a consistent public-to-private mapping for the server
B.PAT overload is designed mainly for many-to-one outbound address sharing
C.Dynamic NAT always supports inbound access without additional configuration
D.NAT is unrelated to whether private addresses can reach the public internet
AnswersA, B

Static NAT creates a fixed one-to-one translation between a specific inside private IP and a specific outside public IP. This guarantees that inbound connections from the internet, such as those to a web or mail server, are always sent to the correct internal host regardless of session timing. Unlike dynamic NAT or PAT, the mapping is constant, which is why it is required for reliable inbound access to a server.

Why this answer

PAT overload is great for many inside clients sharing a public IP for outbound sessions. A public-facing server that needs predictable inbound reachability typically requires static NAT or static PAT.

Exam trap

A frequent exam trap is assuming that PAT overload can handle inbound connections to a specific inside host because it manages many-to-one address sharing. However, PAT overload dynamically assigns ports for outbound sessions and does not reserve a fixed public IP and port combination for inbound traffic. This misconception leads to incorrect answers suggesting dynamic NAT or PAT overload can support inbound server access without additional configuration.

The key is recognizing that only static NAT provides a consistent public-to-private mapping necessary for inbound connectivity to a server.

Why the other options are wrong

C

Option C is incorrect because dynamic NAT does not guarantee a fixed public IP address for any inside host, so it cannot reliably support inbound access without additional static configuration.

D

Option D is incorrect because NAT and PAT are directly related to enabling private IP addresses to communicate with the public internet, making them central to edge router configurations in branch offices.

298
MCQmedium

A user can reach a remote web server by IP address but not by hostname. Which service should be checked first?

A.DNS
B.STP
C.PAT
D.Port security
AnswerA

The symptom — reachable by IP but not by hostname — is the classic signature of a name-resolution failure. DNS is the protocol that maps a human-friendly hostname to the numeric IP address; if the client cannot contact a DNS server, has an incorrect server configuration, or receives a negative reply, the browser will fail to resolve even though the underlying IP path is healthy. Because IP connectivity is already proven, the fault is isolated to DNS lookup logic rather than routing or switching.

Why this answer

DNS should be checked first. In plain language, the path to the server appears to work because the user can reach it by numeric address. The missing function is the translation from hostname to IP-related information, and that is exactly what DNS provides.

This is one of the clearest service-troubleshooting patterns in networking. If IP works but the name fails, DNS becomes the strongest first suspect. The correct answer is therefore the name-resolution service rather than a routing or switching feature.

Exam trap

A frequent exam trap is selecting PAT or STP as the cause when a user cannot reach a server by hostname but can by IP address. Candidates may mistakenly associate PAT with all IP-related issues, but PAT only translates IP addresses and ports for outbound traffic and does not resolve hostnames. Similarly, STP manages Layer 2 loop prevention and does not affect Layer 3 name resolution.

Confusing these services with DNS leads to incorrect troubleshooting steps. The key is to recognize that DNS is the only service responsible for translating hostnames to IP addresses, so it must be checked first when name resolution fails but IP connectivity succeeds.

Why the other options are wrong

B

STP manages Layer 2 loop prevention and does not handle hostname resolution. It cannot cause issues with accessing a server by hostname versus IP address.

C

PAT translates IP addresses and ports for outbound connections but does not perform hostname resolution. Problems with PAT would affect IP connectivity, not just name resolution.

D

Port security restricts switch port access based on MAC addresses and does not influence DNS or hostname resolution, so it is unrelated to the problem.

299
MCQmedium

Refer to the exhibit. Users on the inside network can browse the web, but return traffic is failing for some sessions. A partial configuration shows: interface GigabitEthernet0/0 ip address 192.168.10.1 255.255.255.0 ip nat outside ! interface GigabitEthernet0/1 ip address 203.0.113.10 255.255.255.0 ip nat inside ! ip nat inside source list 1 interface GigabitEthernet0/1 overload access-list 1 permit 192.168.10.0 0.0.0.255 Based on this configuration, which change is required to make PAT work correctly?

A.Apply ip nat enable on both interfaces.
B.Replace overload with pool.
C.Swap the inside and outside NAT roles on the two interfaces.
D.Change access-list 1 to a standard ACL numbered 100.
AnswerC

This is correct because NAT depends on the router knowing which side is private and which side is public. The current configuration labels them the wrong way round. PAT with overload on the WAN interface is fine, but the interface roles must match the traffic direction.

Why this answer

The problem is that the router has the NAT directions backwards. In simple terms, the interface facing the private LAN should be marked as inside, and the interface facing the public or WAN side should be marked as outside. Here, GigabitEthernet0/0 uses the private address 192.168.10.1, but it is configured as outside. GigabitEthernet0/1 uses the public address 203.0.113.10, but it is configured as inside. That reverses the translation logic and breaks normal PAT behavior.

Technically, the command `ip nat inside source list 1 interface GigabitEthernet0/1 overload` is otherwise reasonable for dynamic PAT using the WAN interface address. The ACL also correctly identifies the inside local subnet. The essential fix is to mark G0/0 as `ip nat inside` and G0/1 as `ip nat outside`. Once the directions are corrected, PAT can create and track translations properly for outbound traffic and returning sessions.

Exam trap

A frequent exam trap is confusing the NAT inside and outside interface roles. Candidates may see the private IP on an interface and mistakenly assign it as 'ip nat outside' or vice versa. This reverses the translation direction, causing return traffic to fail despite correct ACLs and overload commands.

The trap exploits the assumption that the public IP must be inside or that the interface with the ACL is always inside. Understanding that NAT roles depend on network topology, not just IP addresses, is crucial to avoid this error.

Why the other options are wrong

A

Applying 'ip nat enable' on both interfaces is incorrect because Cisco IOS uses 'ip nat inside' and 'ip nat outside' to define NAT roles. The problem is not enabling NAT but assigning the correct directional roles to interfaces.

B

Replacing 'overload' with a pool is unnecessary since PAT uses 'overload' to allow multiple inside hosts to share one outside IP. The issue is not the translation method but the reversed inside/outside interface roles.

D

Changing access-list 1 to a standard ACL numbered 100 does not address the core problem. ACL 1 is valid for identifying inside local addresses, and the failure is due to reversed NAT interface roles, not the ACL number.

300
Multi-Selectmedium

Which four of the following are characteristics or functions of a stateless firewall, such as an extended access control list (ACL) on a Cisco router? (Choose four.)

Select 4 answers
.It examines each packet individually without considering the state of a connection.
.It can filter traffic based on source and destination IP addresses.
.It can inspect the application-layer payload to detect malicious content.
.It can filter traffic based on source and destination port numbers.
.It automatically allows return traffic for established connections.
.It uses an ordered list of permit or deny rules, processing packets in sequence until a match is found.

Why this answer

A stateless firewall, such as a Cisco extended ACL, processes each packet independently without tracking the state of a connection. It makes filtering decisions solely based on static fields in the packet header, such as source/destination IP addresses and port numbers, and applies rules in a sequential order until a match is found. This is why options about per-packet inspection, IP/port filtering, and sequential rule processing are correct.

Exam trap

Cisco often tests the misconception that stateless firewalls can automatically handle return traffic or inspect application data, leading candidates to confuse stateless ACLs with stateful firewalls or next-generation firewalls.

← PreviousPage 4 of 5 · 364 questions totalNext →

Ready to test yourself?

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