Courseiva

CompTIA Network+ N10-009 (N10-009) — Questions 76150

464 questions total · 7pages · All types, answers revealed

Page 1

Page 2 of 7

Page 3
76
MCQmedium

A user reports that they can access internal resources such as file shares and printers by name, but they cannot access any external websites. The technician checks the IP configuration and finds the workstation has a valid IP address, subnet mask, default gateway, and DNS server addresses. The technician can successfully ping the default gateway and an external IP address like 8.8.8.8. Which of the following should the technician check NEXT?

A.Perform a traceroute to the external website to identify the point of failure.
B.Verify that the DNS server can resolve external domain names.
C.Check the Windows Firewall on the workstation to ensure it is not blocking outbound HTTP traffic.
D.Renew the DHCP lease on the workstation.
AnswerB

The user can access internal resources by name and can reach external IPs, so the DNS server must be able to resolve external names. If the DNS server is not configured to forward queries or is using a root hint that fails, this would explain the symptom.

Why this answer

The user can access internal resources by name and can ping an external IP address (8.8.8.8), which confirms that IP routing, the default gateway, and basic network connectivity are working. The inability to access external websites by name, despite having DNS server addresses configured, points directly to a DNS resolution failure for external domains. Therefore, the next logical step is to verify that the configured DNS server can resolve external domain names, such as by using `nslookup` or `dig` to query a public domain like google.com.

Exam trap

The trap here is that candidates assume a successful ping to an external IP means all network layers are fine, but they overlook that DNS resolution is a separate service that can fail independently, leading them to waste time on traceroute or firewall checks.

Why the other options are wrong

A

The technician can already ping an external IP (8.8.8.8), proving that routing to the internet works. Traceroute would only confirm the same path; the issue is name resolution, not routing.

C

The technician can already ping an external IP (8.8.8.8), proving outbound IP connectivity and that the firewall is not blocking all outbound traffic. The issue is name resolution, not HTTP blocking.

D

The workstation has a valid IP configuration and can ping external IPs, so DHCP is functioning correctly. Renewing the lease would not resolve DNS resolution issues.

When would these options actually be correct?

A

A user cannot access an external website, but can ping the external IP and internal resources. The technician suspects a routing issue at an intermediate hop, so traceroute would identify where packets are dropped.

C

If the user could not access external websites but could ping external IPs and internal resources, and the DNS server was known to be functioning, then checking the Windows Firewall for outbound HTTP/HTTPS rules would be appropriate.

D

A user cannot access any network resources, and the workstation has an APIPA address (169.254.x.x) or an incorrect IP configuration. Renewing the DHCP lease would obtain a valid address from the DHCP server.

Why candidates pick the wrong answer

A

Candidates often default to traceroute for any connectivity issue, not recognizing that successful external IP ping rules out routing problems, making DNS the more logical next step.

C

Candidates often assume that inability to browse websites is due to firewall blocking HTTP/HTTPS, overlooking that successful external pings rule out a general outbound block.

D

Candidates may think that DHCP issues are the cause of connectivity problems, but here the IP configuration is valid, so DHCP is not the problem.

77
MCQeasy

A user reports that they can browse to a website by typing its IP address (e.g., 93.184.216.34) but cannot access it by typing the domain name (e.g., www.example.com). The user's workstation receives IP configuration via DHCP. Which of the following is the most likely cause?

A.The default gateway is misconfigured.
B.The DNS server address is incorrect or unreachable.
C.The web server's SSL certificate is expired.
D.The workstation's hosts file has an incorrect entry.
AnswerB

The user can access resources by IP but not by name, which is a classic symptom of DNS failure. The technician should verify that the DNS server settings are correct and that the DNS server is reachable from the workstation.

Why this answer

The user can reach the website by IP address but not by domain name, which isolates the issue to name resolution. DNS translates domain names to IP addresses; if the DNS server address provided by DHCP is incorrect or unreachable, the workstation cannot resolve www.example.com to 93.184.216.34. This is the most likely cause because all other connectivity (default gateway, web server) is confirmed working by the successful IP-based access.

Exam trap

The trap here is that candidates confuse a DNS failure with a gateway or web server issue, but the key clue is that IP-based access works, which eliminates routing and server problems and points squarely to name resolution.

Why the other options are wrong

A

The default gateway is used for routing traffic to different networks. Since the user can access the website by IP address, routing is working; the issue is with name resolution, not gateway misconfiguration.

C

An expired SSL certificate would prevent HTTPS connections but would not affect the ability to browse via IP address or domain name over HTTP; the user can already access the site via IP, so SSL is not the issue.

D

An incorrect hosts file entry could cause a domain name to resolve to the wrong IP, but here the user cannot access the site by domain name at all, not that they go to a wrong site. The issue is that DNS resolution fails entirely, not that it resolves incorrectly.

When would these options actually be correct?

A

A user cannot access any external websites by IP or name, but can access internal resources. The workstation receives IP via DHCP. In this case, a misconfigured default gateway would prevent traffic from leaving the local subnet.

C

A user reports that they receive a certificate warning when browsing to a website by domain name but can access it by IP address. Which of the following is the most likely cause?

D

A user types a domain name and is taken to a different website (e.g., a phishing site) instead of the intended one. The workstation's hosts file contains a malicious or incorrect entry mapping that domain to a different IP address.

Why candidates pick the wrong answer

A

Candidates may confuse general network connectivity issues with DNS problems, assuming that if a website is unreachable by name, the default gateway must be at fault, even when IP access works.

C

Candidates may confuse SSL certificate issues with DNS resolution problems, thinking that a certificate error could block domain-based access entirely, or they may overlook that the user can still access via IP.

D

Candidates may confuse a hosts file misconfiguration with DNS issues, thinking that any domain name resolution problem could be caused by the hosts file, but they overlook that a hosts file error typically causes redirection, not a complete failure to resolve.

78
MCQhard

A security engineer is configuring a firewall to protect an internal network. The requirement is that internal users can initiate connections to the internet, but external hosts should not be able to initiate connections to internal hosts unless the internal host first requested the connection. Which firewall technology should be used?

A.Stateless packet filtering
B.Stateful inspection
C.Application proxy
D.Packet filtering based on ACL only
AnswerB

Stateful inspection firewalls maintain a state table that tracks active connections, including source/destination IP addresses, port numbers, and sequence numbers. This allows them to dynamically permit return traffic for established outbound connections without needing explicit inbound rules, significantly enhancing security by only allowing legitimate responses and blocking unsolicited inbound packets. This method is highly effective for protecting internal networks by ensuring only traffic related to internal requests is allowed back in.

Why this answer

Stateful inspection (B) tracks the state of active connections by maintaining a state table that records source/destination IPs, ports, and sequence numbers. It allows return traffic for connections initiated from the internal network while blocking unsolicited inbound traffic, which directly matches the requirement that external hosts cannot initiate connections unless the internal host requested them first.

Exam trap

The N10-009 exam often tests the misconception that stateless packet filtering can handle return traffic by simply allowing inbound packets with a high source port, but without state tracking, it cannot verify that the packet actually belongs to an existing session, making stateful inspection the correct answer.

Why the other options are wrong

A

Stateless packet filtering does not track connection state, so it cannot distinguish between packets belonging to a new connection initiated by an external host versus a response to an internal request. It cannot enforce the requirement that external hosts cannot initiate connections unless the internal host first requested it.

C

An application proxy operates at Layer 7 and can inspect application data, but it does not inherently track connection state to allow return traffic for outbound requests; stateful inspection is specifically designed for that purpose.

D

Packet filtering based on ACL only cannot track connection state, so it cannot distinguish between packets belonging to a new connection initiated by an external host and those belonging to an existing connection initiated by an internal host.

When would these options actually be correct?

A

A question that asks for a simple, low-overhead firewall technology to filter traffic based solely on source/destination IP addresses and port numbers, without requiring state tracking or application-layer inspection, such as in a small network with minimal security requirements.

C

A question requiring deep packet inspection, content filtering, or authentication at the application layer, such as 'Which firewall technology can block specific HTTP methods or inspect SQL queries?' would make application proxy the correct answer.

D

A question that asks for a simple, low-overhead method to allow or deny traffic based on source/destination IP addresses and ports, without requiring state tracking, such as in a small network with static rules and no need for connection awareness.

Why candidates pick the wrong answer

A

Candidates may confuse stateless filtering with stateful inspection, thinking that ACLs can be configured to allow return traffic, but they overlook that stateless firewalls cannot dynamically permit return traffic without explicit rules for every possible response.

C

Candidates may confuse proxy firewalls with stateful firewalls because both can handle outbound traffic, but they overlook that stateful inspection is the standard for tracking connection states to permit return traffic.

D

Candidates may think ACL-based filtering is sufficient for basic security and overlook the requirement for stateful tracking of connection initiation direction.

79
MCQmedium

A company is implementing a DMZ to host public-facing web and email servers. The DMZ network uses private IP addresses, and the internal network also uses private IP addresses. The company has only one public IP address assigned to the border router's external interface. Which of the following should be configured to allow internet users to access the DMZ servers?

A.Port forwarding to the private IP addresses of the servers.
B.NAT with overload to translate multiple internal addresses to the single public IP.
C.Static NAT mapping each DMZ server to a unique public IP.
D.A VPN tunnel between the DMZ and the internal network.
AnswerA

Port forwarding, also known as Destination Network Address Translation (DNAT), is the correct method for allowing external internet users to access public-facing servers located in a DMZ that utilize private IP addresses. It configures the firewall or router to listen for incoming connections on a specific public IP address and port, then transparently redirects that traffic to the corresponding private IP address and port of the internal server. This enables multiple services, like web and email, to be hosted on different servers behind a single public IP.

Why this answer

Port forwarding (often configured as static NAT with a single public IP) allows the border router to forward incoming traffic on specific TCP/UDP ports (e.g., 80 for web, 25 for SMTP) to the private IP addresses of the DMZ servers. Since the company has only one public IP, this is the only way to direct external requests to the correct internal server without requiring multiple public IPs.

Exam trap

The trap here is that candidates confuse PAT (overload NAT) with port forwarding, assuming that PAT alone can handle inbound connections, when in fact PAT only supports outbound-initiated sessions unless explicit port forwarding rules are configured.

Why the other options are wrong

B

NAT with overload (PAT) allows multiple internal hosts to share a single public IP for outbound traffic, but it does not enable inbound access from the internet to specific private IPs in the DMZ. The question requires inbound access to servers, which is achieved by port forwarding, not overload.

C

Static NAT requires a unique public IP for each DMZ server, but the company has only one public IP address, making this option impossible.

D

A VPN tunnel between the DMZ and internal network does not provide internet users access to DMZ servers; it only secures communication between the DMZ and internal network. The question requires external access from the internet, not internal connectivity.

When would these options actually be correct?

B

A company has multiple internal hosts needing internet access but only one public IP. NAT with overload (PAT) would be correct to translate all internal private IPs to the single public IP for outbound connections.

C

Static NAT would be correct if the company had multiple public IP addresses and needed to map each DMZ server to a dedicated public IP for direct inbound access without port differentiation.

D

A VPN tunnel would be correct if the question asked for securing traffic between the DMZ and internal network, or if remote employees needed secure access to internal resources through the DMZ.

Why candidates pick the wrong answer

B

Candidates may confuse NAT overload with port forwarding, thinking that sharing a single public IP implies inbound access, but overload is for outbound traffic only.

C

Candidates may confuse static NAT with port forwarding, assuming that each server needs its own public IP, or they may overlook the constraint of having only one public IP.

D

Candidates may confuse DMZ security requirements with VPN use, thinking a tunnel is needed to protect DMZ servers, but the actual need is inbound access from the internet.

80
MCQmedium

A network administrator needs to centrally collect and analyze log messages from multiple routers and switches. Which protocol should be used to forward these log messages to a central server?

A.SNMP
B.Syslog
C.SMTP
D.HTTP
AnswerB

Syslog is the industry-standard protocol specifically designed for the collection and forwarding of system and event messages from various network devices, such as routers, switches, and firewalls, to a centralized logging server. It operates primarily over UDP port 514, providing a simple, connectionless mechanism for devices to send their operational logs, security alerts, and diagnostic information. This centralized approach enables administrators to efficiently monitor, analyze, and troubleshoot network activity across multiple devices from a single location, crucial for security auditing and performance management.

Why this answer

Syslog (B) is the correct protocol because it is specifically designed for centralized logging and event message collection from network devices. It uses UDP port 514 (or TCP 6514 for reliable delivery) to forward log messages from routers and switches to a central syslog server, enabling administrators to collect, analyze, and archive logs from multiple devices in a standardized format.

Exam trap

The trap here is that candidates often confuse SNMP traps with syslog messages, thinking SNMP can replace syslog for log collection, but SNMP traps are structured notifications for specific events, not a general-purpose log forwarding protocol.

Why the other options are wrong

A

SNMP is used for monitoring and managing network devices by polling or receiving traps, but it is not designed for centralized log collection and analysis; syslog is the standard protocol for forwarding log messages.

C

SMTP is used for email transmission, not for forwarding log messages from network devices to a central server. Syslog is the standard protocol for this purpose.

D

HTTP is a web transfer protocol, not designed for real-time log forwarding from network devices. Syslog is the standard protocol for centralized log collection.

When would these options actually be correct?

A

When the question asks for a protocol to monitor device health metrics (e.g., CPU load, interface errors) or receive asynchronous alerts for specific events, SNMP (with traps or polling) would be the correct answer.

C

When the question asks for a protocol to send automated alert emails or notifications from a network monitoring system to an administrator's email address, SMTP would be correct.

D

When the question asks for a protocol to retrieve configuration or status information from a network device via a web interface, HTTP (or HTTPS) would be correct, e.g., 'Which protocol is used to access a router's web-based management interface?'

Why candidates pick the wrong answer

A

Candidates may confuse SNMP traps with syslog messages, as both can send event notifications from network devices, leading them to incorrectly choose SNMP for log collection.

C

Candidates may confuse SMTP with a logging protocol because both involve sending messages, or they might think logs can be emailed directly from devices.

D

Candidates may confuse HTTP with syslog because both can be used for monitoring, or they might think HTTP can be used to send log data via API calls, but it's not the standard or efficient method for network device logs.

81
MCQeasy

A network administrator needs to document the physical placement of devices in a server room, including exact rack location, port labels, and cable connections between patch panels and switches. Which type of diagram is most appropriate?

A.Network topology map
B.Rack diagram
C.Wiring schematic
D.Logical topology diagram
AnswerB

A rack diagram is specifically designed to document the physical placement of devices within server racks, often showing both front and rear views. It illustrates which rack unit (U) each device occupies, detailing the specific model, port configurations, and how power and network cables connect to each component. This level of detail is crucial for installation, troubleshooting, and inventory management, directly addressing the need to document physical device placement.

Why this answer

A rack diagram is specifically designed to document the physical placement of devices in a server room, including exact rack units, port labels, and cable connections between patch panels and switches. This type of diagram provides a visual representation of the physical layout, which is essential for asset management, troubleshooting, and maintenance planning.

Exam trap

The trap here is that candidates confuse a logical topology map (which shows IP subnets and routing) with a physical rack diagram, leading them to choose the topology map when the question explicitly asks for physical placement and cable connections.

Why the other options are wrong

A

A network topology map shows logical relationships and data flow between devices, not physical placement details like rack location, port labels, or cable connections.

D

A logical topology diagram shows data flow and network architecture (e.g., VLANs, IP subnets), not physical device placement, rack locations, or cable connections.

When would these options actually be correct?

A

When the question asks for a diagram that illustrates how devices are interconnected at the network layer, including IP addresses, routing protocols, and logical segments, a network topology map would be appropriate.

D

When the question asks for a diagram that illustrates how data travels between devices, such as VLAN assignments, routing paths, or broadcast domains, without regard to physical layout.

Why candidates pick the wrong answer

A

Candidates may confuse 'network topology' with physical layout, assuming it includes all device details, or they may think documenting connections automatically means topology.

D

Candidates confuse 'logical' with 'physical' documentation, or think topology includes all details of device connections.

82
MCQmedium

A network administrator is implementing a new wireless network that will use WPA2-Enterprise. Which of the following must be configured on the network to support this security method?

A.A RADIUS server
B.A pre-shared key
C.A certificate authority
D.A VPN concentrator
AnswerA

When implementing a new wireless network using WPA2, a RADIUS (Remote Authentication Dial-In User Service) server is essential for WPA2-Enterprise mode. This mode leverages 802.1X for port-based network access control, providing robust, centralized authentication for individual users or devices. The RADIUS server verifies user credentials against a directory service, offering superior security and scalability compared to pre-shared keys by assigning unique encryption keys per session.

Why this answer

WPA2-Enterprise uses 802.1X authentication, which requires a RADIUS server to centralize authentication, authorization, and accounting (AAA). The RADIUS server validates user credentials (e.g., against Active Directory or LDAP) and distributes the Pairwise Master Key (PMK) to the access point, enabling per-user, per-session encryption keys. Without a RADIUS server, the enterprise authentication framework cannot function.

Exam trap

The trap here is that candidates confuse WPA2-Enterprise with WPA2-Personal and assume a pre-shared key is required, or they overgeneralize the role of a certificate authority, thinking it is mandatory for all enterprise Wi-Fi deployments when it is only required for specific EAP methods like EAP-TLS.

Why the other options are wrong

B

WPA2-Enterprise uses 802.1X authentication, which requires a RADIUS server for centralized authentication, not a pre-shared key. A pre-shared key is used in WPA2-Personal, not Enterprise.

C

WPA2-Enterprise uses 802.1X authentication, which requires a RADIUS server, not a certificate authority. While certificates may be used in the authentication process, the CA is not a mandatory component for WPA2-Enterprise; the RADIUS server handles authentication.

When would these options actually be correct?

B

A pre-shared key would be correct for a question about WPA2-Personal or WPA3-Personal, where a shared passphrase is used for authentication without a RADIUS server.

C

A certificate authority would be the correct answer for a question about configuring EAP-TLS authentication within WPA2-Enterprise, where client and server certificates are required and must be issued by a trusted CA.

Why candidates pick the wrong answer

B

Candidates may confuse WPA2-Enterprise with WPA2-Personal, assuming a shared key is always required, or they may not understand the role of 802.1X and RADIUS in enterprise authentication.

C

Candidates may confuse the role of certificates in some EAP methods (like EAP-TLS) with the overall requirement for WPA2-Enterprise, assuming a CA is always needed, but WPA2-Enterprise can also use other EAP methods that do not require certificates.

83
MCQmedium

An organization uses a AAA server for network device authentication. The security team requires that all authentication traffic be fully encrypted and that authorization commands be logged per user. Which protocol is best suited for this requirement?

A.RADIUS with EAP-TLS
B.TACACS+
C.LDAP over SSL
D.Kerberos
AnswerB

TACACS+ is the correct choice for network device administration because it encrypts the entire authentication, authorization, and accounting (AAA) packet, not just the password. This robust encryption protects sensitive administrative data during transit. Furthermore, TACACS+ uniquely provides granular, per-command authorization, allowing administrators to define precisely which commands a user can execute on a network device, and logs these actions for comprehensive auditing. Its separation of AAA functions makes it highly flexible and scalable for complex network environments.

Why this answer

TACACS+ is the best choice because it encrypts the entire authentication packet (including username, password, and all other fields) and supports per-user command authorization logging. This meets the requirement for fully encrypted authentication traffic and detailed audit trails for each user's commands.

Exam trap

The trap here is that candidates often confuse RADIUS's partial encryption (password only) with full encryption, or assume LDAP over SSL can handle device AAA, but TACACS+ is the only protocol that fully encrypts all traffic and logs per-user commands for network device administration.

Why the other options are wrong

A

RADIUS with EAP-TLS encrypts only the authentication traffic (EAP within RADIUS), but the RADIUS protocol itself does not encrypt the entire session, and it does not log authorization commands per user. TACACS+ is required for full encryption and per-command logging.

C

LDAP over SSL encrypts authentication traffic but does not provide per-user command authorization logging, which is a key requirement for this question. TACACS+ is specifically designed for device administration with full encryption and command logging.

D

Kerberos does not encrypt authorization commands or log per-user commands; it is designed for single sign-on and mutual authentication, not for detailed command accounting on network devices.

When would these options actually be correct?

A

A question that asks for a protocol that provides strong authentication encryption for wireless or remote access, where per-command authorization logging is not required, and the focus is on secure authentication using certificates.

C

An organization needs to centralize user authentication and authorization for directory services (e.g., Active Directory) with encrypted transmission. The question would specify 'user authentication for accessing network resources' and 'directory service integration' without requiring command-level logging.

D

An exam question that asks for a protocol providing mutual authentication and single sign-on in a Windows domain environment, without requiring per-command authorization logging.

Why candidates pick the wrong answer

A

Candidates may know that EAP-TLS provides strong encryption for authentication and mistakenly assume that RADIUS with EAP-TLS meets all requirements, overlooking TACACS+'s superior command logging and full session encryption.

C

Candidates may confuse LDAP over SSL with a protocol that handles both authentication and authorization for network devices, or they may think encryption alone satisfies the requirement without considering the need for per-user command logging.

D

Candidates may confuse Kerberos's strong encryption and authentication capabilities with the need for command-level authorization and logging, assuming it covers all AAA functions.

84
MCQmedium

A network technician is troubleshooting communication between two switches. The trunk link between them is up, and both switches have the same list of allowed VLANs. However, devices in VLAN 10 on one switch cannot communicate with devices in VLAN 10 on the other switch. What is the MOST likely cause of this issue?

A.Native VLAN mismatch
B.Speed or duplex mismatch
C.Spanning Tree Protocol blocking the port
D.VLAN 10 is not created on one of the switches
AnswerA

A native VLAN mismatch occurs when the untagged VLAN configured on one end of an 802.1Q trunk link differs from the untagged VLAN on the other end. This causes untagged frames, including those from the native VLAN and potentially control traffic, to be misidentified and assigned to the wrong VLAN upon reception. Consequently, traffic for the specific native VLAN fails to communicate correctly across the trunk, while other VLANs that are explicitly tagged continue to function normally, precisely matching a problem affecting only one VLAN.

Why this answer

A native VLAN mismatch is the most likely cause because when two switches have different native VLANs configured on a trunk, they will incorrectly tag or fail to tag frames for that VLAN. In this scenario, devices in VLAN 10 cannot communicate because the native VLAN frames (which are sent untagged) are being dropped or misinterpreted by the receiving switch, even though both switches list VLAN 10 as allowed. The trunk is up and the allowed VLAN list matches, so the issue points directly to a mismatch in the native VLAN configuration.

Exam trap

CompTIA often tests the native VLAN mismatch scenario by presenting a trunk that is up and has matching allowed VLANs, leading candidates to overlook the native VLAN configuration and incorrectly choose options like STP blocking or VLAN not created.

Why the other options are wrong

B

A speed or duplex mismatch would cause connectivity issues at Layer 1, such as packet loss or link instability, but the trunk link is up and both switches have the same allowed VLANs. The symptom of VLAN-specific communication failure points to a Layer 2 problem like native VLAN mismatch, not a physical mismatch.

C

Spanning Tree Protocol blocking the port would prevent all traffic on the trunk, not just VLAN 10 traffic. Since the trunk is up and other VLANs may work, STP is not the issue.

D

The question states both switches have the same list of allowed VLANs, so VLAN 10 is allowed on the trunk. If VLAN 10 were not created on one switch, it would not appear in the allowed list, contradicting the given condition.

When would these options actually be correct?

B

A speed or duplex mismatch would be the correct answer if the question described symptoms like intermittent connectivity, high error rates, or a link that is up but flapping, and the trunk link is not stable. For example: 'Two switches are connected via a trunk, but the link frequently goes up and down. What is the most likely cause?'

C

In a scenario where a switch port is in a blocking state due to STP, causing no communication at all on that port, and the question specifies that the port is administratively up but no data passes, STP blocking would be the correct answer.

D

A question where a trunk is configured with allowed VLANs, but one switch lacks the VLAN definition (e.g., 'no vlan 10'), causing traffic to be dropped even though the VLAN is in the allowed list.

Why candidates pick the wrong answer

B

Candidates may confuse Layer 1 issues (speed/duplex) with Layer 2 trunking problems, especially when the trunk is up but traffic fails. They might think physical mismatch could cause VLAN-specific issues, but it typically affects all traffic equally.

C

Candidates may confuse STP blocking with a VLAN-specific issue, or they might think STP could selectively block a VLAN, which is not the case.

D

Candidates may confuse 'allowed VLANs on trunk' with 'VLAN existence on the switch', assuming a missing VLAN definition could cause communication failure despite the trunk configuration.

85
MCQmedium

A network engineer is installing a WLAN in a warehouse with many metal shelves and racks. During a site survey, the engineer notices significant signal degradation in certain areas. Which wireless propagation phenomenon is most likely causing the issue?

A.Refraction
B.Diffraction
C.Reflection
D.Absorption
AnswerC

In a warehouse filled with metal shelves, Wi-Fi signals frequently encounter these highly conductive surfaces. This causes the electromagnetic waves to bounce off, similar to light off a mirror, leading to multiple signal paths arriving at the receiver. This phenomenon, known as multipath interference, can result in significant signal degradation, dead zones, and reduced data throughput due to constructive and destructive interference.

Why this answer

In a warehouse with many metal shelves and racks, the primary cause of signal degradation is reflection. Metal surfaces act as RF reflectors, causing the wireless signal to bounce off them, which leads to multipath interference and dead zones where the signal cancels out or becomes too weak to be usable. This is a common issue in environments with high metal density, as the reflected waves interfere with the direct path signal.

Exam trap

CompTIA often tests the trap where candidates confuse reflection with diffraction, thinking that signal bending around metal edges (diffraction) is the main issue, but in dense metal environments, reflection off flat metal surfaces is the dominant cause of signal degradation and dead zones.

Why the other options are wrong

A

Refraction involves the bending of radio waves as they pass through media of different densities, such as air to glass. In a warehouse with metal shelves and racks, the primary issue is signal bouncing off metal surfaces, not bending through different materials.

B

Diffraction involves waves bending around obstacles, but the primary issue with metal shelves and racks is signal bouncing off these surfaces, causing multipath interference, not bending around them.

D

Absorption occurs when wireless signals are absorbed by materials like water or concrete, converting energy to heat. In this warehouse, metal shelves and racks primarily cause signal reflection, not absorption, as metal reflects rather than absorbs RF energy.

When would these options actually be correct?

A

A network engineer is troubleshooting a WLAN in a building with large glass windows and observes signal distortion near the windows. Which phenomenon is most likely causing the issue?

B

A network engineer notices signal coverage behind a thick concrete pillar in a warehouse. The correct answer would be diffraction, as the signal bends around the obstacle to reach the shadowed area.

D

Absorption would be correct in a scenario where a WLAN is installed in a building with thick concrete walls or a greenhouse with high moisture content, where signal strength is reduced due to energy absorption by the dense or wet materials.

Why candidates pick the wrong answer

A

Candidates may confuse refraction with reflection because both involve changes in wave direction, and they might think metal surfaces cause bending rather than bouncing.

B

Candidates may confuse diffraction with reflection because both involve obstacles, but diffraction is often associated with signal reaching behind barriers, which might seem similar to the shadowing caused by metal racks.

D

Candidates may think that any obstacle causes signal loss, and 'absorption' sounds like a general term for signal degradation. They might not distinguish between reflection (bouncing off metal) and absorption (energy conversion in other materials).

86
MCQmedium

A router receives a packet destined for 10.0.0.15. It has the following routes in the routing table: 10.0.0.0/8 via 192.168.1.1, 10.0.0.0/16 via 192.168.2.1, 0.0.0.0/0 via 192.168.3.1. Which route will be used?

A.Default route (0.0.0.0/0)
B.10.0.0.0/16 via 192.168.2.1
C.10.0.0.0/8 via 192.168.1.1
D.None; the packet is dropped
AnswerB

Routers prioritize routes based on the longest prefix match principle. The destination IP address 10.0.0.15 falls squarely within the 10.0.0.0/16 network because the first 16 bits of the destination IP match the network address. Since this route offers a more specific match (16 bits) compared to other available routes, it will be selected by the router to forward the packet towards the next hop, 192.168.2.1.

Why this answer

The router will use the route 10.0.0.0/16 via 192.168.2.1 because it has the longest prefix match (16 bits) for the destination 10.0.0.15. The /16 route is more specific than the /8 route and the default route, so it is preferred regardless of administrative distance or metric.

Exam trap

The trap here is that candidates often assume administrative distance or metric determines the route selection, but the longest prefix match always takes precedence over these metrics when multiple routes match the destination.

Why the other options are wrong

A

The destination 10.0.0.15 matches the 10.0.0.0/16 route with a longer prefix length (16) than the default route (0), so the router will use the more specific route, not the default.

C

The route 10.0.0.0/8 has a longer prefix length than the default route but a shorter prefix length than 10.0.0.0/16. Since the destination 10.0.0.15 falls within both 10.0.0.0/8 and 10.0.0.0/16, the router selects the most specific match, which is 10.0.0.0/16.

D

The router has a default route (0.0.0.0/0) and two specific routes that match the destination 10.0.0.15. Since the longest prefix match rule applies, the route with the most specific prefix (10.0.0.0/16) is used, so the packet is not dropped.

When would these options actually be correct?

A

If the destination IP did not match any other route in the routing table (e.g., 10.1.0.15 with only 10.0.0.0/8 and 10.0.0.0/16 present, but not matching), the default route would be used to forward the packet.

C

This option would be correct if the routing table did not contain the 10.0.0.0/16 route, or if the destination address was outside the 10.0.0.0/16 range (e.g., 10.1.0.15) but still within 10.0.0.0/8. In such cases, the longest prefix match would be 10.0.0.0/8.

D

If the routing table had no matching routes (e.g., only routes for different subnets) and no default route, then the packet would be dropped. For example, a router with only 192.168.0.0/16 and no default route receiving a packet for 10.0.0.1 would drop it.

Why candidates pick the wrong answer

A

Candidates may mistakenly think that the default route is always used as a catch-all, forgetting that more specific routes take precedence over the default route.

C

Candidates may mistakenly think that a shorter prefix (larger network) is preferred, or they may overlook the existence of the more specific /16 route, assuming the /8 route is the best match.

D

Candidates may mistakenly think that if no exact match exists, the router drops the packet, forgetting that a default route can be used as a catch-all.

87
MCQhard

A network administrator is configuring a monitoring system to collect metrics from network devices. The administrator needs to ensure that the monitoring system can automatically discover the devices and obtain detailed information about their configuration and status, such as interface descriptions and software versions. Which protocol is best suited for this purpose?

A.SNMP
B.LLDP
C.NetFlow
D.Syslog
AnswerA

SNMP (especially with SNMPv2c or v3) allows a management station to query device MIBs for detailed information such as interface descriptions, software versions, and status. It can also be used for discovery by polling known community strings.

Why this answer

SNMP (Simple Network Management Protocol) is the correct choice because it is specifically designed for network management and monitoring. It allows a management system to automatically discover devices (via SNMP walks or queries to MIBs) and retrieve detailed configuration and status information, such as interface descriptions and software versions, by reading OIDs from the device's MIB. This matches the requirement for automatic discovery and detailed data collection.

Exam trap

The trap here is that candidates often confuse LLDP's neighbor discovery capability with SNMP's management and monitoring functionality, mistakenly thinking LLDP can provide detailed device configuration and status information when it only advertises basic identity and capabilities.

Why the other options are wrong

B

LLDP is used for discovering directly connected neighbors and their capabilities, but it does not provide detailed configuration or status information like interface descriptions or software versions; SNMP is designed for that purpose.

C

NetFlow is designed for network traffic flow analysis and accounting, not for device discovery or retrieving configuration details like interface descriptions and software versions.

D

Syslog is used for collecting and forwarding log messages from network devices, not for automatic discovery or retrieving detailed configuration and status information like interface descriptions and software versions.

When would these options actually be correct?

B

A question asking which protocol allows network devices to advertise their identity and capabilities to directly connected neighbors for topology discovery, without requiring a management station to poll them.

C

A question asking which protocol is best for monitoring network traffic patterns, bandwidth usage, or flow-level statistics (e.g., 'A network administrator needs to analyze traffic flows to identify top talkers and application usage. Which protocol should be used?').

D

A question asking which protocol is best for centralized logging of events, errors, and alerts from network devices to a monitoring server for troubleshooting and security analysis.

Why candidates pick the wrong answer

B

Candidates may confuse LLDP's neighbor discovery capability with the broader device discovery and detailed information retrieval that SNMP provides.

C

Candidates may confuse NetFlow with SNMP because both are used for network monitoring, but NetFlow focuses on traffic data rather than device configuration and status.

D

Candidates may confuse Syslog with SNMP because both are used for monitoring, but Syslog focuses on log messages while SNMP provides structured data retrieval and discovery.

88
MCQeasy

A network administrator needs to schedule a firmware upgrade for a critical router. Which document should be used to formally communicate the change, seek approval, and track the implementation?

A.A) Change management request
B.B) Network diagram
C.C) Service level agreement (SLA)
D.D) Baseline performance report
AnswerA

A change management request is the formal, documented process used to propose, review, approve, and track modifications to IT infrastructure, such as scheduling a firmware upgrade for a critical router. This ensures that all potential impacts are assessed, necessary approvals are obtained, and a rollback plan is in place before any changes are implemented. It is essential for maintaining network stability, security, and compliance by preventing unauthorized or poorly planned modifications.

Why this answer

A change management request is the formal document used to communicate, seek approval, and track the implementation of a firmware upgrade on a critical router. This process ensures that the change is reviewed by stakeholders, risks are assessed, and a rollback plan is documented, which is essential for maintaining network stability and compliance with ITIL or organizational change control policies.

Exam trap

The trap here is that candidates may confuse a change management request with a network diagram or SLA, thinking that documenting the topology or contractual guarantees is sufficient for scheduling and approving a change, but only the formal change management process provides the required approval and tracking trail.

Why the other options are wrong

B

A network diagram is a visual representation of the network topology, not a formal document for communicating, approving, or tracking a change like a firmware upgrade.

C

A service level agreement (SLA) defines performance metrics and responsibilities between parties, but it is not used to formally communicate, seek approval, or track a specific change like a firmware upgrade.

When would these options actually be correct?

B

When a question asks which document is used to understand the physical or logical layout of the network before planning a change, such as identifying device connections and dependencies.

C

When a question asks which document outlines guaranteed uptime, response times, or penalties for a service provider, an SLA would be the correct answer.

Why candidates pick the wrong answer

B

Candidates may think a network diagram is needed to plan the upgrade, but the question specifically asks for the document to formally communicate, seek approval, and track the change, which is a change management request.

C

Candidates may confuse the formal approval process with contractual agreements, thinking an SLA governs all changes, but SLAs focus on service levels, not change management procedures.

89
MCQeasy

A client obtains an IP address from a DHCP server but cannot resolve hostnames. The client can ping the default gateway and external IP addresses successfully. What is the most likely cause?

A.Incorrect subnet mask
B.DNS server misconfiguration
C.Default gateway not set
D.Firewall blocking DNS
AnswerB

A DNS server misconfiguration means the client either has an incorrect DNS server IP address, or the assigned server is unreachable or non-functional. While the client can successfully obtain an IP address and establish basic IP connectivity (evidenced by pinging external IPs), it cannot translate human-readable hostnames (like www.example.com) into numerical IP addresses. This prevents web browsing or accessing resources by name, as the client doesn't know where to send the traffic for those hostnames.

Why this answer

The client can ping external IP addresses and the default gateway, confirming that IP connectivity and routing are functional. However, the inability to resolve hostnames points directly to a DNS resolution failure, which occurs when the DNS server address is misconfigured or unreachable. Since DHCP provided the IP address, the DNS server setting is likely incorrect or missing in the DHCP scope.

Exam trap

The N10-009 exam often tests the distinction between IP connectivity and name resolution, trapping candidates who assume that successful pings to external IPs imply DNS is working, when in fact DNS is a separate service that must be explicitly configured.

Why the other options are wrong

A

The client can ping external IP addresses successfully, which indicates that the subnet mask is correct; otherwise, routing to external IPs would fail.

C

The client can ping the default gateway and external IP addresses, which indicates the default gateway is correctly configured. The issue is name resolution, not routing.

D

The client can ping external IP addresses successfully, indicating that traffic to external networks is not blocked. A firewall blocking DNS would prevent DNS queries but not ICMP pings to external IPs; however, the ability to ping external IPs suggests no general firewall blocking of outbound traffic. The issue is specifically name resolution, not packet filtering.

When would these options actually be correct?

A

In a scenario where a client obtains an IP address but cannot communicate with any devices outside its local subnet, including the default gateway, an incorrect subnet mask would be the likely cause.

C

A client obtains an IP address but cannot ping the default gateway or any external IP addresses. The client can only communicate within its own subnet.

D

A firewall blocking DNS would be correct if the client could not ping external IP addresses or the default gateway, but could obtain an IP address via DHCP. For example, if the firewall is configured to allow DHCP but block all other traffic except specific ports, and DNS (port 53) is explicitly blocked.

Why candidates pick the wrong answer

A

Candidates may confuse symptoms of DNS failure with subnet mask issues, or incorrectly assume that an IP address obtained from DHCP implies a correct subnet mask.

C

Candidates may confuse symptoms of DNS failure with gateway issues, or assume that hostname resolution requires a correctly set gateway.

D

Candidates may think that if DNS is not working, a firewall must be blocking it, overlooking that successful pings to external IPs indicate general network connectivity is intact. They confuse name resolution failure with a firewall issue without considering the evidence of successful external pings.

90
MCQmedium

A user reports that they can access the internet but cannot connect to an internal file server at IP address 192.168.1.50. The technician successfully pings the file server's IP address from the user's workstation. The file server is on the same subnet as the user. What is the most likely cause of this issue?

A.The file server has an incorrect default gateway configured.
B.The user's workstation has an incorrect DNS server configured.
C.The file server's firewall is blocking the file-sharing protocol while allowing ICMP.
D.The user's workstation has a duplicate IP address assigned.
AnswerC

The scenario describes successful internet access and successful ping to the file server, but failure to connect to an internal file share. This indicates that basic network connectivity (Layer 3) is present, as evidenced by ICMP (ping) working. However, the application-layer protocol for file sharing (e.g., SMB on TCP port 445 for Windows shares) is being blocked. A firewall on the file server itself is designed to filter traffic at higher layers, allowing specific protocols like ICMP while denying others, such as file-sharing protocols, thereby preventing the connection despite successful pings.

Why this answer

The technician can ping the file server (ICMP success) but the user cannot connect to it using the file-sharing protocol (e.g., SMB on TCP/445). This indicates network-layer reachability is fine, but the application-layer service is blocked. The most likely cause is the file server's host-based firewall (e.g., Windows Defender Firewall) allowing ICMP Echo Requests while blocking inbound SMB traffic, which is a common misconfiguration.

Exam trap

The trap here is that candidates assume a successful ping guarantees full connectivity, but ICMP and application traffic use different protocols and ports, so a firewall can block one while allowing the other.

Why the other options are wrong

A

The user can ping the file server's IP, indicating layer-3 connectivity. An incorrect default gateway on the file server would prevent traffic from leaving its subnet, but since both are on the same subnet, the gateway is not needed for local communication.

B

The user can access the internet, which requires DNS resolution, so the DNS server configuration is correct. The issue is with internal file server access, not name resolution.

D

A duplicate IP address would cause intermittent connectivity or complete loss of network access, but the user can access the internet and ping the file server, which rules out an IP conflict.

When would these options actually be correct?

A

A user on a different subnet cannot reach the file server, but can ping other external hosts. The file server's default gateway is misconfigured, preventing return traffic from routing back to the user's subnet.

B

A user reports they can access the internet by IP address but cannot browse websites by domain name. The workstation has a static IP with an incorrect DNS server IP, preventing name resolution.

D

A user reports intermittent connectivity and cannot access any network resources. The technician finds that the workstation's IP address conflicts with another device on the network, causing packet loss and disconnections.

Why candidates pick the wrong answer

A

Candidates often associate connectivity issues with gateway misconfiguration, overlooking that same-subnet communication does not require a gateway.

B

Candidates often associate connectivity issues with DNS, especially when symptoms involve accessing resources by name versus IP, but here the user can access the internet (which uses DNS) and the file server is accessed by IP.

D

Candidates may confuse symptoms of IP conflicts (e.g., connectivity issues) with the specific scenario where only file sharing fails, overlooking that ping works fine.

91
MCQmedium

A network administrator is creating documentation for a new data center. Which type of diagram is BEST for showing the logical relationships between VLANs and their associated subnets?

A.Physical topology diagram
B.Logical topology diagram
C.Wiring diagram
D.Rack elevation diagram
AnswerB

A logical topology diagram is essential for documenting a new data center because it visually represents the abstract relationships between network components, independent of their physical locations. This type of diagram clearly illustrates network segments, virtual LANs (VLANs), IP addressing schemes, and routing protocols, making it perfect for understanding how different subnets and VLANs interact and how data flows logically through the network. It provides a high-level view of the network's functional design, crucial for configuration and troubleshooting.

Why this answer

A logical topology diagram is the correct choice because it illustrates how devices communicate across the network, including the mapping of VLANs to their associated IP subnets. This type of diagram abstracts away physical cabling and device locations to focus on Layer 2 and Layer 3 relationships, such as VLAN IDs, subnet masks, and default gateways. It is essential for documenting network segmentation and troubleshooting inter-VLAN routing.

Exam trap

The trap here is that candidates often confuse 'logical topology' with 'physical topology,' assuming that a physical diagram can show VLANs because VLANs are configured on physical switches, but VLANs are a Layer 2 abstraction that must be documented separately.

Why the other options are wrong

A

A physical topology diagram shows the physical layout of devices and cabling, not logical relationships like VLAN-to-subnet mappings.

C

A wiring diagram shows physical cable connections and paths, not logical relationships like VLAN-to-subnet mappings.

D

A rack elevation diagram shows the physical placement of equipment in racks, not logical relationships between VLANs and subnets.

When would these options actually be correct?

A

When the question asks for the best diagram to show the physical placement of servers, switches, and cabling paths in a data center.

C

When documenting physical cable runs between patch panels and switches in a data center, a wiring diagram is the best choice.

D

When the question asks for the physical arrangement of servers, switches, and other hardware within racks in a data center, a rack elevation diagram is the best choice.

Why candidates pick the wrong answer

A

Candidates may confuse 'logical' with 'physical' or think VLANs are tied to physical connections, overlooking that VLANs are logical constructs.

C

Candidates may confuse 'wiring' with 'logical connections' because VLANs are often associated with switch configurations that involve cabling.

D

Candidates may associate data center documentation with rack layouts and mistakenly think rack elevation diagrams include logical network information.

92
MCQmedium

A user reports that they can access internal websites but cannot access any external websites. Other users in the same subnet can access external sites. The user's IP configuration shows a correct IP, subnet mask, and default gateway. What is the most likely cause?

A.The DNS server is not reachable.
B.The proxy server settings are incorrect.
C.The default gateway is misconfigured.
D.The web browser has a corrupted cache.
AnswerB

If a client's web browser or operating system is configured to use a proxy server for internet access, but the proxy settings are incorrect (e.g., wrong IP address, port, or authentication), all external web requests will fail. However, many network configurations include exceptions or bypass rules for internal network addresses, allowing direct access to internal websites without going through the misconfigured proxy. This precise behavior, where internal access works but external fails, directly aligns with incorrect proxy server configuration.

Why this answer

The user can access internal websites but not external ones, while other users in the same subnet have no issues. This points to a client-specific configuration problem rather than a network-wide issue. Incorrect proxy server settings on the user's machine can prevent external HTTP/HTTPS traffic from being routed correctly, even though internal traffic (which may bypass the proxy) works fine.

Exam trap

CompTIA often tests the distinction between network-layer issues (like default gateway or DNS) and application-layer issues (like proxy configuration), leading candidates to incorrectly choose DNS or gateway problems when the symptom is isolated to a single user with correct IP settings.

Why the other options are wrong

A

The user can access internal websites, which typically rely on internal DNS, and other users in the same subnet can access external sites, indicating the DNS server is reachable and functional. The issue is isolated to this user, not a network-wide DNS problem.

C

The default gateway is correctly configured because the user can access internal websites, which require the gateway to route within the subnet, and other users in the same subnet can access external sites, indicating the gateway is functional.

D

A corrupted browser cache typically causes issues like outdated content or display errors, but it would not prevent access to all external websites while internal sites remain accessible. The symptom of being unable to reach any external site points to a network or proxy configuration problem, not a local browser cache issue.

When would these options actually be correct?

A

A user cannot access any websites (internal or external) while other users on the same subnet can, and the IP configuration shows correct IP, subnet mask, and default gateway. This would indicate a DNS resolution failure, likely due to an unreachable or misconfigured DNS server.

C

A user cannot access any external websites, and other users in the same subnet also cannot access external sites. The user's IP configuration shows an incorrect default gateway address, such as a non-existent or wrong IP.

D

A user reports that a specific external website displays outdated content or fails to load correctly, while other websites work fine. Clearing the browser cache resolves the issue. In this scenario, a corrupted cache is the most likely cause.

Why candidates pick the wrong answer

A

Candidates often associate internet access issues with DNS problems, but here the user can access internal sites, which typically use the same DNS server, so DNS is not the likely cause.

C

Candidates often associate external access issues with the default gateway, overlooking that internal access works and other users are unaffected, which rules out a gateway problem.

D

Candidates may think that a corrupted cache can block website access entirely, confusing cache corruption with more severe connectivity issues. They might also recall that clearing the cache often fixes browsing problems, leading them to overestimate its impact.

93
MCQmedium

In the OSI model, which layer is responsible for establishing, managing, and terminating sessions between applications, as well as providing checkpoints and recovery?

A.Transport layer
B.Session layer
C.Network layer
D.Data link layer
AnswerB

The Session layer (Layer 5) is precisely responsible for establishing, managing, and terminating communication sessions, or 'dialogues,' between applications on different hosts. It handles dialogue control, determining whose turn it is to transmit, and provides synchronization points for data exchange, enabling checkpointing and recovery in case of failures. This ensures that if a connection is interrupted, the session can resume from the last known good point, rather than restarting entirely.

Why this answer

The Session layer (Layer 5) of the OSI model is explicitly responsible for establishing, managing, and terminating sessions between applications, as well as providing checkpointing and recovery mechanisms. This layer uses protocols like NetBIOS, RPC, and PPTP to coordinate dialog control, synchronization points, and session restoration after failures, ensuring that long-lived transactions can resume from a checkpoint rather than restarting entirely.

Exam trap

The N10-009 exam often tests the Session layer by describing its functions in a way that sounds like Transport-layer reliability (e.g., 'checkpoints and recovery'), leading candidates to mistakenly choose the Transport layer because they associate recovery with TCP's retransmission, but TCP only recovers lost segments, not application sessions.

Why the other options are wrong

A

The Transport layer handles end-to-end communication, segmentation, and flow control, but not session establishment, management, termination, checkpoints, or recovery.

C

The Network layer (Layer 3) is responsible for routing and forwarding packets across networks, not for session management, checkpoints, or recovery.

D

The data link layer (Layer 2) handles node-to-node data transfer, error detection, and framing, not session management, checkpoints, or recovery.

When would these options actually be correct?

A

A question asking which layer provides reliable data transfer, error recovery, and flow control between hosts would make the Transport layer correct.

C

A question asking which layer handles logical addressing and path determination between different networks would have the Network layer as the correct answer.

D

A question asking which OSI layer is responsible for framing, MAC addressing, and error detection in local network communication would have the data link layer as the correct answer.

Why candidates pick the wrong answer

A

Candidates may confuse session management with the reliable delivery and recovery features of the Transport layer, especially TCP's connection establishment and recovery mechanisms.

C

Candidates may confuse the Network layer's role in establishing connections (e.g., virtual circuits in connection-oriented networks) with session management functions.

D

Candidates may confuse the data link layer's error detection and flow control with the session layer's checkpoint and recovery functions, or they might mistakenly think session management occurs at lower layers.

94
MCQeasy

A company wants to prevent unauthorized devices from connecting to the corporate network. The policy requires that only specific MAC addresses are permitted on switch ports. Which security feature should be implemented on the switches?

A.802.1X authentication
B.MAC filtering / Port security
C.VLAN hopping prevention
D.DHCP snooping
AnswerB

Port security, often referred to as MAC filtering at the port level, is a Layer 2 security feature implemented on network switches. It enables an administrator to configure a specific switch port to allow traffic only from a predefined list of MAC addresses, or to dynamically learn a limited number of MAC addresses. If an unauthorized device with a different MAC address attempts to connect to that port, the switch can be configured to take action, such as shutting down the port, restricting traffic, or sending an alert, effectively preventing unauthorized device access.

Why this answer

MAC filtering, also known as port security, is the correct feature because it allows the switch to restrict access to a port based on the source MAC address of incoming frames. By configuring a list of allowed MAC addresses, the switch will drop traffic from any unauthorized device, directly enforcing the policy that only specific MAC addresses are permitted on switch ports.

Exam trap

The N10-009 exam often tests the distinction between MAC-based port security and 802.1X authentication, where candidates mistakenly choose 802.1X because it is a more robust access control method, but the question specifically asks for a feature that permits only specific MAC addresses, which is exactly what port security does.

Why the other options are wrong

C

VLAN hopping prevention is a security measure to prevent traffic from jumping between VLANs, not to control which devices connect based on MAC addresses. The question specifically requires restricting unauthorized devices by MAC address, which is not addressed by VLAN hopping prevention.

D

DHCP snooping is a security feature that filters untrusted DHCP messages and builds a DHCP snooping binding table, but it does not restrict which MAC addresses can connect to a switch port; it prevents rogue DHCP servers, not unauthorized devices.

When would these options actually be correct?

C

A question asks: 'Which security feature prevents an attacker from using double-tagging or switch spoofing to access a different VLAN?' In that context, VLAN hopping prevention (e.g., disabling DTP, setting native VLAN to unused) would be the correct answer.

D

A company wants to prevent rogue DHCP servers from assigning IP addresses on the network and ensure only authorized DHCP servers can provide IP configurations. In that scenario, DHCP snooping would be the correct answer.

Why candidates pick the wrong answer

C

Candidates may confuse VLAN hopping prevention with access control, thinking it restricts device connectivity, or they may not clearly distinguish between layer 2 attacks and MAC-based port security.

D

Candidates may confuse DHCP snooping with MAC-based access control because both involve MAC addresses, but DHCP snooping focuses on DHCP message validation, not port-level device authorization.

95
MCQhard

A company wants to prevent unauthorized users from plugging into network jacks and gaining access to the wired network. Which of the following security mechanisms should be implemented at the switch level?

A.MAC address filtering
B.Port security
C.802.1X
D.Dynamic ARP Inspection
AnswerC

802.1X is a port-based network access control protocol. It prevents unauthorized access by requiring authentication (typically using EAP over LAN, EAPOL) from a connecting device or user before the switch port is fully activated and allowed to pass traffic. This authentication is validated against an external authentication server, like RADIUS, ensuring only authorized entities gain network access. If authentication fails, the port remains in an unauthorized state, effectively blocking network connectivity.

Why this answer

802.1X is a port-based Network Access Control (NAC) standard (IEEE 802.1X) that authenticates devices before granting full network access. When a device plugs into a switch port, the switch (as the authenticator) blocks all traffic except EAPoL (Extensible Authentication Protocol over LAN) frames until the device successfully authenticates via a RADIUS server. This prevents unauthorized users from gaining network access simply by connecting to a live jack.

Exam trap

The trap here is that candidates confuse port security (which only limits MAC addresses) with 802.1X (which provides actual authentication), leading them to pick port security because it sounds like it 'secures the port' at the switch level.

Why the other options are wrong

A

MAC address filtering only restricts traffic based on MAC addresses, but it does not authenticate users or prevent unauthorized devices from connecting if the MAC address is spoofed or allowed. It also does not enforce per-user authentication at the switch port level.

B

Port security limits the number of MAC addresses per port but does not authenticate users; it can be bypassed by spoofing allowed MAC addresses, so it does not prevent unauthorized users from plugging in.

D

Dynamic ARP Inspection (DAI) is used to prevent ARP spoofing attacks by validating ARP packets against a trusted database, not to control physical access to network jacks. It does not authenticate users or devices attempting to connect to the switch.

When would these options actually be correct?

A

A company wants to allow only specific devices (e.g., known printers or servers) to connect to certain switch ports, and the network is small with static MAC assignments. The question would specify that MAC spoofing is not a concern and that dynamic authentication is not required.

B

A question asks: 'Which switch feature prevents MAC flooding attacks by limiting the number of MAC addresses learned on a port?' or 'Which security mechanism blocks traffic from unknown MAC addresses on a port?'

D

A company wants to prevent ARP spoofing attacks on its network where an attacker sends fake ARP messages to intercept traffic. Implementing Dynamic ARP Inspection on switches would validate ARP packets and drop invalid ones, mitigating the attack.

Why candidates pick the wrong answer

A

Candidates often confuse MAC address filtering with port security, thinking that filtering MACs is sufficient to prevent unauthorized access, but they overlook that 802.1X provides stronger, user-based authentication.

B

Candidates confuse port security with user authentication, thinking that restricting MAC addresses is sufficient to prevent unauthorized access, but it lacks per-user authentication and can be easily spoofed.

D

Candidates may confuse DAI with a security mechanism that controls network access because it involves inspecting packets at the switch level, but it specifically addresses ARP-related threats, not physical port access.

96
MCQmedium

A network administrator is connecting two switches and wants to increase the bandwidth between them while also providing redundancy in case one link fails. Which technology should be configured on the switch ports?

A.Spanning Tree Protocol (STP)
B.Link Aggregation Control Protocol (LACP)
C.VLAN trunking (802.1Q)
D.Power over Ethernet (PoE)
AnswerB

Link Aggregation Control Protocol (LACP), defined by IEEE 802.3ad, is a standard protocol that dynamically negotiates and manages the bundling of multiple physical Ethernet links into a single logical channel, often called a port channel or EtherChannel. This aggregation significantly increases the total available bandwidth between the two switches by distributing traffic across all active links. Furthermore, LACP provides automatic failover; if one physical link within the bundle fails, traffic is seamlessly redistributed among the remaining operational links, ensuring continuous connectivity and enhanced redundancy.

Why this answer

Link Aggregation Control Protocol (LACP) allows multiple physical links between two switches to be combined into a single logical link, increasing aggregate bandwidth and providing redundancy: if one physical link fails, traffic continues over the remaining links. This directly meets the requirement for both higher bandwidth and link-level fault tolerance.

Exam trap

The trap here is that candidates confuse STP's loop prevention with redundancy, but STP actively blocks redundant links to avoid loops, whereas LACP allows all links to forward traffic simultaneously while still providing failover.

Why the other options are wrong

A

STP prevents loops but does not increase bandwidth or provide active link redundancy; it blocks redundant links rather than using them for load balancing.

C

VLAN trunking (802.1Q) is used to carry multiple VLANs over a single link, not to increase bandwidth or provide link redundancy between switches.

D

PoE provides power over Ethernet cables to devices like IP cameras or phones, but does not increase bandwidth or provide link redundancy between switches.

When would these options actually be correct?

A

When the question asks for preventing broadcast storms and loops in a redundant switched network, STP is the correct answer.

C

A network administrator needs to connect two switches and allow traffic from multiple VLANs to traverse the same link. The correct technology would be VLAN trunking (802.1Q).

D

A network administrator needs to power multiple IP cameras connected to a switch without running separate power cables. PoE would be the correct technology to configure on the switch ports.

Why candidates pick the wrong answer

A

Candidates confuse loop prevention with link redundancy, thinking STP's ability to failover to a blocked link is the same as active redundancy and bandwidth aggregation.

C

Candidates may confuse the need for redundancy with the concept of trunking, or think that trunking inherently provides failover capabilities.

D

Candidates may confuse PoE with a technology that enhances link capabilities, or mistakenly think it can aggregate power to improve performance, overlooking its sole purpose of power delivery.

97
MCQhard

An NOC technician observes that the CPU usage on a core switch has been consistently above 90% for the past hour. Which SNMP operation should the technician use to monitor the CPU load over time with minimal network overhead?

A.SNMP GET
B.SNMP GETNEXT
C.SNMP WALK
D.SNMP TRAP
AnswerD

SNMP traps are unsolicited messages from the agent to the NMS when certain events occur (e.g., CPU threshold exceeded). They reduce overhead because the NMS does not need to poll; the agent sends data only when necessary.

Why this answer

D is correct because SNMP TRAP is an unsolicited notification sent from the agent (the switch) to the NMS, which allows the NOC to receive CPU load alerts only when a threshold is exceeded, minimizing network overhead by avoiding continuous polling. In this scenario, the technician wants to monitor CPU load over time with minimal overhead, and traps provide event-driven reporting rather than periodic requests, reducing bandwidth and processing load on both the switch and the network.

Exam trap

The trap here is that candidates often confuse SNMP TRAP with SNMP GET, assuming that polling is necessary for monitoring, but the question explicitly asks for minimal network overhead, which traps achieve by eliminating the need for repeated requests.

Why the other options are wrong

A

SNMP GET is a poll-based operation that retrieves a single OID value at a time, requiring repeated requests to monitor CPU load over time, which increases network overhead compared to a trap-based approach.

B

SNMP GETNEXT is used to sequentially retrieve the next variable in a MIB tree, not for continuous monitoring with minimal overhead. It requires repeated polling, which increases network traffic, whereas SNMP TRAP allows the device to send unsolicited alerts only when thresholds are exceeded, reducing overhead.

C

SNMP WALK retrieves a large set of OID values sequentially, generating significant network overhead and CPU load on the device, which is counterproductive for monitoring high CPU usage with minimal overhead.

When would these options actually be correct?

A

An SNMP GET would be correct if the technician needs to check the current CPU usage value at a specific moment, such as when verifying a one-time reading after a configuration change.

B

A technician needs to discover all interfaces on a router by walking through the ifTable MIB. Using GETNEXT in a loop (or as part of an SNMP walk) is the correct method to retrieve the next OID value iteratively until the end of the table is reached.

C

When a technician needs to discover the entire structure of a MIB or retrieve all variables under a specific OID subtree, such as when initially configuring monitoring for a new device model, SNMP WALK is appropriate despite higher overhead.

Why candidates pick the wrong answer

A

Candidates often associate SNMP GET with monitoring because it is the most basic operation for retrieving data, overlooking that traps are more efficient for continuous monitoring.

B

Candidates may confuse GETNEXT with a method for continuous monitoring, thinking that repeatedly issuing GETNEXT requests can track CPU load over time, without realizing that this polling approach generates more overhead than event-driven traps.

C

Candidates may think SNMP WALK is efficient for monitoring because it can retrieve multiple values in one operation, overlooking that it generates more traffic than a single GET and is not designed for ongoing low-overhead monitoring.

98
MCQhard

A network security administrator is configuring authentication for network devices and wants to use a protocol that supports separate encryption of the entire authentication packet. Which of the following protocols is designed to encrypt the entire authentication packet and is commonly used with AAA services?

A.RADIUS
B.TACACS+
C.LDAP
D.Kerberos
AnswerB

TACACS+ is a robust AAA protocol that significantly enhances security by encrypting the entire payload of the authentication packet. Unlike other protocols that might only encrypt specific fields, TACACS+ ensures that all authentication-related data, including usernames, command parameters, and other attributes, remains confidential during transit. This comprehensive encryption provides superior protection against eavesdropping and unauthorized access to sensitive network administration information, making it ideal for securing device management.

Why this answer

TACACS+ is the correct answer because it encrypts the entire authentication packet, including the username, password, and all other fields, using a shared secret key. This full-packet encryption is a key differentiator from RADIUS, which only encrypts the password field. TACACS+ is commonly used with AAA services to provide separate authentication, authorization, and accounting processes.

Exam trap

The N10-009 exam often tests the misconception that RADIUS encrypts the entire packet because it uses a shared secret, but in reality, only the password is encrypted, whereas TACACS+ encrypts the full payload.

Why the other options are wrong

A

RADIUS encrypts only the password in the authentication packet, not the entire packet, so it does not meet the requirement for encrypting the entire authentication packet.

C

LDAP is a directory access protocol, not an authentication protocol designed to encrypt entire authentication packets for AAA services. It does not natively encrypt the entire authentication packet; it typically relies on external encryption like TLS.

When would these options actually be correct?

A

When the question asks for a protocol that encrypts only the password and is widely used for network access (e.g., 802.1X) or when the requirement is for a protocol that uses UDP for transport and combines authentication and authorization.

C

A question asking which protocol is used for querying and modifying directory services (e.g., Active Directory) to authenticate users or retrieve user attributes, especially when integration with AAA is not the primary focus.

Why candidates pick the wrong answer

A

Candidates often associate RADIUS with AAA services and may overlook the specific encryption detail, assuming RADIUS encrypts the entire packet like TACACS+.

C

Candidates may confuse LDAP with authentication protocols because LDAP is often used in authentication processes (e.g., LDAP bind), leading them to think it encrypts the entire authentication packet like TACACS+.

99
Drag & Dropmedium

Drag and drop the steps for a disaster recovery procedure after a server failure into the correct order.

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

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

Why this order

The correct disaster recovery order begins with assessing the damage to understand the scope of the failure. Next, rebuild the server (hardware/OS), then restore data from backup. After restoration, apply any necessary patches to bring the system up to date, and finally test functionality to confirm successful recovery.

This sequence ensures data integrity and minimizes downtime.

100
MCQeasy

Which layer of the OSI model is responsible for logical addressing and routing of packets between networks?

A.Data Link layer
B.Network layer
C.Transport layer
D.Application layer
AnswerB

The Network layer (Layer 3) is uniquely responsible for logical addressing, primarily through IP addresses, which enables devices to communicate across different network segments. It also handles routing, determining the best path for data packets to travel from source to destination across interconnected networks. This layer's functions are crucial for internetworking, allowing global communication beyond a single local area network by abstracting the underlying physical topology.

Why this answer

The Network layer (Layer 3) is responsible for logical addressing (e.g., IPv4/IPv6 addresses) and routing packets between different networks by determining the best path using routing protocols such as OSPF, BGP, or static routes. Unlike the Data Link layer, which handles physical addressing (MAC) within a single network segment, the Network layer enables end-to-end delivery across multiple hops.

Exam trap

The N10-009 exam often tests the distinction between logical addressing (Layer 3) and physical addressing (Layer 2), leading candidates to mistakenly choose the Data Link layer because they associate 'addressing' with MAC addresses rather than IP addresses.

Why the other options are wrong

A

The Data Link layer (Layer 2) handles node-to-node data transfer, error detection, and MAC addressing, not logical addressing or routing between networks, which are functions of the Network layer (Layer 3).

C

The Transport layer (Layer 4) is responsible for end-to-end communication, segmentation, and flow control, not for logical addressing or routing between networks.

D

The Application layer (Layer 7) provides network services to end-user applications, such as HTTP, FTP, and SMTP. It does not handle logical addressing or routing, which are functions of the Network layer.

When would these options actually be correct?

A

A question asking which OSI layer is responsible for framing, MAC addressing, and error detection on a single network segment would have the Data Link layer as the correct answer.

C

A question asking which OSI layer provides reliable data transfer, error recovery, and flow control between hosts would make the Transport layer correct.

D

A question asking 'Which OSI layer provides services for email, file transfer, and web browsing?' would make the Application layer the correct answer, as it directly supports application-level protocols.

Why candidates pick the wrong answer

A

Candidates often confuse the Data Link layer's MAC addressing with logical addressing, or they mistakenly think routing occurs at Layer 2 due to switches operating at that layer.

C

Candidates may confuse the Transport layer's role in managing data segments and ports with the Network layer's routing and logical addressing functions.

D

Candidates may confuse the Application layer with the Network layer because both involve 'addressing' in a broad sense—Application layer uses URLs or email addresses, leading to a mistaken belief it handles routing.

101
MCQmedium

A user reports that they can connect to the internet by IP address but cannot access any websites by domain name. Which command-line tool should a technician use first to isolate the issue?

A.ping
B.nslookup
C.tracert
D.netstat
AnswerB

The `nslookup` (Name Server Lookup) command-line utility is specifically designed to query Domain Name System (DNS) servers directly. It allows users to test the functionality of DNS by attempting to resolve hostnames to IP addresses, or vice-versa, and can even specify which DNS server to query. This makes `nslookup` the ideal tool for diagnosing issues where a client can successfully reach the internet by IP address but fails to access resources by domain name, pinpointing a problem with name resolution.

Why this answer

The user can reach the internet by IP address but not by domain name, which indicates a DNS resolution failure. The `nslookup` command queries DNS servers directly to test name resolution, making it the correct first step to isolate whether the issue is with the DNS server, the client's DNS configuration, or a network path to the DNS server.

Exam trap

The trap here is that candidates often choose `ping` first because it is the most familiar troubleshooting tool, but the symptom of working IP connectivity with failed domain resolution specifically points to DNS, making `nslookup` the targeted diagnostic command.

Why the other options are wrong

C

The user can connect by IP but not by domain name, indicating a DNS resolution issue. tracert traces the route to a destination but does not test DNS resolution, so it cannot isolate the problem.

D

netstat displays network connections, routing tables, and interface statistics, but it does not test DNS resolution. Since the user can connect by IP but not by domain name, the issue is likely DNS-related, and netstat cannot diagnose that.

When would these options actually be correct?

C

tracert would be correct if the user reported that they cannot connect to a specific website at all (even by IP) and the technician needs to identify where packets are being dropped along the network path.

D

A technician needs to identify which application is listening on a specific port or to check for active TCP connections to troubleshoot a service that is not responding. For example, 'Which command shows all listening ports and their associated processes?'

Why candidates pick the wrong answer

C

Candidates may think tracert can help identify where connectivity fails, but they overlook that the issue here is DNS, not routing.

D

Candidates may think netstat can show DNS-related issues because it displays network connections, but they overlook that it does not perform or test DNS lookups.

102
MCQeasy

Which transport layer protocol is used by VoIP and streaming video because it provides low latency and does not require retransmission?

A.TCP
B.UDP
C.ICMP
D.IGMP
AnswerB

User Datagram Protocol (UDP) is a connectionless transport layer protocol that prioritizes speed and low latency over guaranteed delivery. It does not establish a session, perform error checking, or retransmit lost packets, which significantly reduces overhead. This makes UDP ideal for real-time applications like Voice over IP (VoIP) and video streaming, where occasional packet loss is preferable to the delays introduced by retransmission and flow control mechanisms. The continuous flow of media data benefits from UDP's minimal processing requirements.

Why this answer

VoIP and streaming video use UDP (User Datagram Protocol) because it is connectionless and provides low-latency transmission without retransmission of lost packets. This is critical for real-time applications where a slight delay is more disruptive than occasional packet loss.

Exam trap

CompTIA often tests the misconception that 'reliable delivery is always better,' leading candidates to choose TCP, but the trap is that real-time applications prioritize low latency over guaranteed delivery, making UDP the correct choice.

Why the other options are wrong

A

TCP provides reliable, connection-oriented delivery with retransmission of lost packets, which increases latency and is unsuitable for real-time applications like VoIP and streaming video that prioritize low latency over reliability.

C

ICMP is a network layer protocol used for error reporting and diagnostics (e.g., ping), not for transporting VoIP or streaming video data. It does not provide the low-latency, connectionless transport required for real-time media.

D

IGMP (Internet Group Management Protocol) is used for managing multicast group memberships, not for transporting VoIP or streaming video data. It operates at the network layer, not the transport layer, and does not handle low-latency data delivery or retransmission.

When would these options actually be correct?

A

For a question asking which transport layer protocol ensures reliable, ordered delivery of data (e.g., for file transfers, web pages, or email), TCP would be the correct answer because it guarantees retransmission and error checking.

C

ICMP would be correct for a question asking: 'Which protocol is used by the ping command to test network connectivity and report errors?' or 'Which protocol is used by routers to send error messages about unreachable destinations?'

D

A question asking: 'Which protocol is used by a host to join a multicast group to receive streaming video?' would have IGMP as the correct answer, as it manages group membership for multicast traffic.

Why candidates pick the wrong answer

A

Candidates may associate TCP with all internet traffic due to its prevalence in HTTP, FTP, and email, overlooking that real-time media requires a protocol with lower overhead and no retransmission delays.

C

Candidates may confuse ICMP with UDP because both are connectionless and used in network diagnostics, but ICMP is not a transport layer protocol and does not carry application data like VoIP.

D

Candidates may confuse IGMP with UDP because both are associated with multicast streaming, but IGMP is for group management, not data transport.

103
MCQmedium

A network administrator is configuring a trunk link between two switches. The link is up, but devices on VLAN 30 cannot communicate across the trunk. Devices on VLAN 10 and 20 can communicate. What should the administrator verify?

A.Ensure the native VLAN is the same on both switches
B.Verify that VLAN 30 is included in the allowed VLAN list on both switches
C.Check the trunk encapsulation type on both switches
D.Confirm that port security is not enabled on the trunk interfaces
AnswerB

This is the most direct and common reason for a single VLAN's traffic failing to traverse an otherwise operational trunk link. Trunk ports are often explicitly configured with a list of allowed VLANs that are permitted to send and receive traffic across the link. If VLAN 30 is inadvertently excluded from this allowed list on either switch, its tagged frames will be dropped, preventing communication for that specific VLAN while others may function correctly.

Why this answer

The trunk link is operational for VLANs 10 and 20 but not for VLAN 30, which indicates that VLAN 30 is likely not permitted on the trunk. By default, a trunk allows all VLANs, but if an administrator has manually configured an allowed VLAN list, VLAN 30 may have been omitted. Verifying that VLAN 30 is included in the allowed VLAN list on both switches will resolve the issue.

Exam trap

The trap here is that candidates often confuse native VLAN mismatch (which causes spanning-tree or BPDU issues) with a missing allowed VLAN, or they assume encapsulation must be checked even though the trunk is already operational for other VLANs.

Why the other options are wrong

A

The native VLAN mismatch would cause issues with untagged traffic, but the problem is specific to VLAN 30, which is a tagged VLAN. Since VLANs 10 and 20 work, the trunk is operational; the issue is that VLAN 30 is not allowed on the trunk.

C

The trunk encapsulation type (e.g., 802.1Q vs ISL) must match on both ends for trunking to work at all. Since VLANs 10 and 20 already communicate, the trunk is operational, so encapsulation mismatch is not the issue.

D

Port security restricts traffic based on MAC addresses, but the issue is VLAN-specific communication across a trunk. Since VLANs 10 and 20 work, port security is not blocking the trunk; the problem is VLAN 30 not being allowed on the trunk.

When would these options actually be correct?

A

This would be correct if devices on all VLANs (including native VLAN) cannot communicate across the trunk, or if there are symptoms like unexpected behavior with untagged frames, such as VLAN hopping or management access issues.

C

A network administrator configures a trunk link between two switches, but no VLAN traffic passes across the link. The link is up, but all VLANs fail to communicate. In that case, verifying the trunk encapsulation type on both switches would be appropriate.

D

A network administrator configures a trunk link between two switches. After enabling port security on the trunk interfaces, devices on all VLANs cannot communicate across the trunk. The administrator should confirm that port security is not enabled on the trunk interfaces.

Why candidates pick the wrong answer

A

Candidates often confuse native VLAN configuration with allowed VLAN lists, assuming that a mismatch in native VLANs can cause specific VLAN communication failures, but native VLAN issues affect untagged traffic, not tagged VLANs like VLAN 30.

C

Candidates may confuse trunk encapsulation with allowed VLAN lists, or assume that any trunk issue involves encapsulation mismatch, especially when only some VLANs fail.

D

Candidates may think port security could block VLAN traffic, but it operates at the port level, not per VLAN. The symptom of only one VLAN failing points away from port security.

104
MCQmedium

A network administrator wants to centrally monitor the status of all network devices and receive alerts when an interface goes down. Which protocol and feature combination should the administrator use?

A.SNMP with traps
B.SNMP with polling
C.Syslog with severity levels
D.NetFlow with flow logs
AnswerA

SNMP traps are unsolicited notification messages sent by an SNMP agent on a network device to a designated SNMP manager immediately when a specific, predefined event occurs, such as an interface transitioning to an operational 'down' state. This push-based mechanism provides real-time, event-driven alerts about critical device status changes, enabling proactive network management and rapid response to issues. It directly fulfills the requirement for centrally monitoring device status and receiving immediate notifications without constant polling.

Why this answer

SNMP traps provide unsolicited, asynchronous notifications from network devices to the management station when specific events occur, such as an interface going down. This allows the administrator to receive immediate alerts without continuously polling each device, making it the ideal protocol and feature combination for real-time status monitoring and alerting.

Exam trap

CompTIA often tests the distinction between SNMP traps (event-driven) and SNMP polling (request-response), where candidates mistakenly choose polling because they think it provides continuous monitoring, but traps are the correct choice for immediate alerting on specific events like interface down.

Why the other options are wrong

B

SNMP polling requires the administrator to repeatedly query devices, which is not efficient for real-time alerts when an interface goes down; traps provide immediate unsolicited notifications.

C

Syslog is used for logging messages from devices, not for real-time status monitoring or alerting on interface state changes. SNMP traps are designed for immediate event notification, whereas syslog requires parsing logs and does not natively trigger alerts for interface down events.

D

NetFlow is designed for traffic flow analysis and accounting, not for real-time device status monitoring or interface down alerts. It does not provide immediate notifications when an interface goes down.

When would these options actually be correct?

B

A network administrator needs to collect historical performance metrics (e.g., bandwidth utilization over time) from all devices. In this case, SNMP polling is used to periodically retrieve data for trend analysis and capacity planning.

C

A network administrator needs to centralize log collection from multiple devices and filter critical errors (e.g., interface flapping) by severity. Syslog with severity levels would be correct when the goal is to aggregate and analyze log messages for troubleshooting, not real-time status monitoring.

D

A network administrator wants to analyze bandwidth usage patterns and identify top talkers on the network. Which protocol should be used? In this scenario, NetFlow with flow logs is the correct answer.

Why candidates pick the wrong answer

B

Candidates may confuse polling with traps, thinking that regular polling can detect interface status changes quickly enough, or they may not fully understand the difference between active polling and event-driven traps.

C

Candidates may confuse syslog's severity levels with alerting capabilities, thinking that setting a severity threshold can trigger notifications for interface down events, but syslog itself does not generate alerts—it only stores logs.

D

Candidates may confuse NetFlow's monitoring capabilities with device health monitoring, or think that flow logs can be used to detect interface failures by observing traffic cessation, but NetFlow lacks real-time alerting for such events.

105
MCQhard

A security analyst is reviewing DHCP server logs and notices that a single MAC address is sending an extremely high number of DHCP discover packets. The DHCP server is responding, but the client never sends a DHCP request. Which type of attack is most likely occurring?

A.A) DHCP starvation
B.B) ARP poisoning
C.C) MAC flooding
D.D) DNS spoofing
AnswerA

DHCP starvation is an attack where a malicious actor rapidly sends numerous DHCP Discover messages to the DHCP server, each containing a spoofed MAC address. This malicious activity aims to exhaust the server's entire pool of available IP addresses, preventing legitimate clients from obtaining network configurations. As a result, new clients attempting to join the network will be unable to receive an IP address, effectively denying them service and causing a network outage for new connections.

Why this answer

A DHCP starvation attack works by flooding the DHCP server with DHCPDISCOVER packets from spoofed MAC addresses, exhausting the server's IP address pool. In this scenario, a single MAC address sending excessive DHCPDISCOVER packets without completing the DORA handshake (no DHCPREQUEST) is a classic indicator of a starvation attack, as the attacker aims to consume all available leases and cause a denial of service for legitimate clients.

Exam trap

The trap here is confusing DHCP starvation with MAC flooding, as both involve 'flooding' and MAC addresses, but MAC flooding targets switch CAM tables at Layer 2, while DHCP starvation targets the DHCP server at Layer 7 (application layer) using DHCP protocol messages.

Why the other options are wrong

B

ARP poisoning involves sending fake ARP replies to associate a malicious MAC address with a legitimate IP, not flooding DHCP discover packets without completing the handshake. The described behavior is classic DHCP starvation.

C

MAC flooding targets switch MAC tables to force flooding of frames, not DHCP servers. The described behavior—high DHCP Discover packets without Request—is characteristic of DHCP starvation, not MAC flooding.

D

DNS spoofing involves corrupting DNS responses to redirect traffic, not exhausting DHCP IP address pools. The described behavior of high DHCP discover packets without requests is characteristic of a DHCP starvation attack.

When would these options actually be correct?

B

A question describing a scenario where an attacker sends forged ARP replies to redirect traffic, causing man-in-the-middle attacks or network eavesdropping, would make ARP poisoning the correct answer.

C

A question describing a switch receiving many frames with random source MAC addresses, causing the CAM table to overflow and the switch to flood traffic out all ports, would make MAC flooding the correct answer.

D

A user reports being redirected to a fake banking website despite typing the correct URL. The network team finds that DNS queries for the bank's domain return an incorrect IP address. In this scenario, DNS spoofing would be the correct answer.

Why candidates pick the wrong answer

B

Candidates may confuse DHCP starvation with ARP poisoning because both involve MAC addresses and network layer attacks, but they target different protocols (DHCP vs. ARP).

C

Candidates may confuse 'flooding' in MAC flooding with the high volume of DHCP Discover packets, or mistakenly think any flood of packets is MAC flooding without considering the protocol layer.

D

Candidates may confuse DHCP starvation with DNS spoofing because both involve malicious manipulation of network services, but they target different protocols (DHCP vs. DNS).

106
MCQhard

A network administrator configures a router to send syslog messages to a central log server. The administrator can ping the server from the router, but the server is not receiving any logs. What is the most likely cause?

A.The syslog server is using the wrong protocol (TCP instead of UDP)
B.UDP port 514 is blocked between the router and the server
C.The syslog service on the server is not running
D.The router's clock is not synchronized with the server
AnswerB

Syslog, by default, transmits log messages using the User Datagram Protocol (UDP) on port 514. Although the router can successfully ping the server, indicating basic network layer connectivity, a firewall or Access Control List (ACL) along the path could be specifically configured to block UDP traffic on port 514. Since UDP is connectionless, the router will send the packets, but they will be dropped before reaching the server's syslog daemon, preventing log delivery. This is a common network security configuration issue.

Why this answer

Syslog messages are sent via UDP port 514 by default. Since the administrator can ping the server (ICMP works), but no logs arrive, the most likely cause is that a firewall or ACL is blocking UDP port 514 between the router and the server. This is a classic connectivity issue where Layer 3 reachability exists but the specific transport-layer port is filtered.

Exam trap

The trap here is that candidates see 'ping works' and assume full connectivity, forgetting that syslog uses a specific UDP port that may be filtered even when ICMP is permitted.

Why the other options are wrong

A

Syslog messages are sent via UDP by default, not TCP. The question states the server is not receiving logs despite successful ping, indicating a network filtering issue rather than a protocol mismatch.

C

The administrator can ping the server, indicating network connectivity, but the server is not receiving logs. If the syslog service were not running, the server would still receive the UDP packets but would not process them; however, the question states the server is not receiving any logs, implying the packets are not reaching the server, which points to a firewall blocking UDP port 514 rather than a service issue.

D

The router can ping the server, indicating basic IP connectivity. Syslog uses UDP port 514 by default; if the server were not running the syslog service, the router would still send messages, but they would be dropped at the server. The issue is more likely a firewall blocking UDP 514, as the server not running would not prevent the router from sending (it would just not process them).

When would these options actually be correct?

A

If the question specified that the syslog server is configured to receive logs over TCP (e.g., for reliable delivery) and the router is sending UDP, then the protocol mismatch would be the cause.

C

This option would be correct in a scenario where the administrator can ping the server and the firewall allows UDP 514, but logs are still not appearing. For example, if the syslog daemon on the server has crashed or is misconfigured to listen on a different port, the server would not receive logs despite network connectivity.

D

In a scenario where the syslog server is receiving logs but they contain incorrect timestamps, the most likely cause would be that the router's clock is not synchronized with the server. For example, if logs show events from the future or past, NTP misconfiguration would be the primary suspect.

Why candidates pick the wrong answer

A

Candidates may confuse syslog's default UDP transport with other services that use TCP, or assume that a protocol mismatch is a common cause of connectivity issues.

C

Candidates may think that if the service is not running, logs cannot be received, overlooking that the question states the server is not receiving any logs (packets not arriving) rather than logs arriving but not being processed. They also might assume a service issue is more common than a firewall block.

D

Candidates may think that clock synchronization is critical for syslog to function at all, confusing timestamp accuracy with the ability to receive logs. They might also assume that a ping response implies full network path availability, overlooking that ping uses ICMP while syslog uses UDP, which can be blocked separately.

107
MCQmedium

A network technician notices that a switch port connected to a user's computer is showing a high number of CRC errors and late collisions. The link is operating at 100 Mbps, full duplex according to the switch. Which of the following is the most likely cause of these errors?

A.Cable length exceeds 100 meters
B.Duplex mismatch
C.Faulty switch port
D.Electromagnetic interference
AnswerB

A duplex mismatch occurs when two connected network devices operate at different duplex settings, such as one at half-duplex and the other at full-duplex. This configuration error causes the full-duplex device to transmit without listening for collisions, while the half-duplex device attempts to transmit only when the line is clear. When both transmit simultaneously, the half-duplex device detects a collision late in its transmission, leading to late collisions and an increase in CRC errors, which are hallmark symptoms.

Why this answer

CRC errors and late collisions in a full-duplex link are classic symptoms of a duplex mismatch. When one side is set to full duplex and the other to half duplex, the half-duplex side does not sense the carrier before transmitting, leading to collisions that are detected late in the frame. The switch reports full duplex, so the user's NIC is likely stuck at half duplex, causing these errors.

Exam trap

The N10-009 exam often tests the misconception that CRC errors alone indicate a cabling issue, but the presence of late collisions alongside CRC errors is the key indicator of a duplex mismatch, not a cable length problem.

Why the other options are wrong

A

CRC errors and late collisions are not typically caused by cable length exceeding 100 meters; that would more likely cause attenuation and signal loss, not late collisions, especially in full-duplex mode where collisions should not occur.

D

Electromagnetic interference (EMI) typically causes CRC errors but not late collisions, which are a hallmark of duplex mismatch. In full-duplex mode, collisions should not occur, so late collisions indicate a duplex mismatch rather than EMI.

When would these options actually be correct?

A

A question describing symptoms like intermittent connectivity, high error rates, or link loss on a 100BASE-TX link operating at half-duplex or with no duplex specified would make cable length the likely cause, as exceeding 100 meters degrades signal integrity.

D

A question where a network cable runs near heavy machinery or power lines, and the symptoms are CRC errors without late collisions, and the link is operating at 100 Mbps half-duplex or auto-negotiation is enabled. EMI would be the likely cause.

Why candidates pick the wrong answer

A

Candidates often associate CRC errors with physical layer issues like cable problems, and the 100-meter limit is a well-known Ethernet rule, leading them to overlook that late collisions and full-duplex operation point to a duplex mismatch instead.

D

Candidates may associate CRC errors with signal degradation from interference, overlooking that late collisions specifically point to duplex mismatch. EMI is a common cause of CRC errors in general, making it a plausible but incorrect choice here.

108
MCQeasy

A network administrator needs to ensure that all changes to network devices are properly reviewed, approved, and tracked. Which process should the administrator implement?

A.Change management
B.Incident management
C.Problem management
D.Asset management
AnswerA

Change management is a structured ITIL process designed to control the lifecycle of all changes, from initiation to closure. It ensures that proposed modifications to network devices, configurations, or services are thoroughly assessed for potential risks and impacts, formally approved by stakeholders, and meticulously documented. This systematic approach minimizes service disruption and maintains network stability by requiring proper review and authorization before implementation.

Why this answer

Change management is the formal process for requesting, reviewing, approving, implementing, and documenting changes to network devices. It ensures that all modifications are authorized, tracked, and have a rollback plan, which directly meets the requirement for review, approval, and tracking.

Exam trap

CompTIA often tests the distinction between change management (proactive, planned) and incident management (reactive, unplanned), leading candidates to confuse the two when the question emphasizes 'tracking' and 'approval'.

Why the other options are wrong

B

Incident management focuses on restoring normal service after an unplanned interruption, not on reviewing, approving, and tracking planned changes to network devices.

C

Problem management focuses on identifying and resolving the root causes of incidents to prevent recurrence, not on reviewing, approving, and tracking changes to network devices.

D

Asset management focuses on tracking hardware and software inventory, not on reviewing, approving, and tracking changes to network devices.

When would these options actually be correct?

B

A network administrator needs to document, prioritize, and resolve a sudden network outage caused by a misconfigured switch. Implementing incident management would be correct to restore service quickly and track the resolution.

C

A network administrator notices recurring outages caused by a faulty switch configuration. Which process should be used to identify and eliminate the root cause?

D

A question asking which process ensures that all network devices are inventoried, their configurations documented, and their lifecycle tracked would have asset management as the correct answer.

Why candidates pick the wrong answer

B

Candidates may confuse 'tracking changes' with 'tracking incidents' because both involve logging and monitoring, but they serve different purposes.

C

Candidates may confuse problem management with change management because both involve analyzing issues, but problem management deals with underlying causes rather than the change lifecycle.

D

Candidates may confuse asset management with change management because both involve tracking, but asset management deals with inventory and lifecycle, not change approval workflows.

109
MCQhard

Users in VLAN 10 cannot obtain IP addresses from the DHCP server located in VLAN 20. The router interface for VLAN 10 has an ip helper-address 192.168.20.5 command configured, and users can ping the DHCP server IP (192.168.20.5) from the router. However, users receive APIPA addresses. What is the most likely cause?

A.The DHCP server does not have a scope configured for the 192.168.1.0/24 subnet (VLAN 10)
B.The router's ip helper-address is configured on the wrong interface
C.The switch port connecting users is configured as a trunk instead of an access port
D.The router's ACL is blocking DHCP offers from the server
AnswerA

When a DHCP relay agent (router) forwards a DHCP Discover broadcast from VLAN 10 users, it encapsulates it into a unicast packet and sets the 'giaddr' (gateway IP address) field to the IP address of the VLAN 10 interface (e.g., 192.168.1.1). The DHCP server uses this 'giaddr' to identify the originating subnet and select the appropriate IP address scope. If no scope exists on the DHCP server for the 192.168.1.0/24 network, the server will not find a matching pool of addresses and will consequently fail to generate a DHCP Offer, leaving users without an IP address.

Why this answer

The ip helper-address command on the router correctly forwards DHCPDISCOVER broadcasts from VLAN 10 to the DHCP server at 192.168.20.5. Since users can ping the server from the router, Layer 3 connectivity exists. However, the DHCP server must have a scope (or address pool) for the subnet of the requesting clients (192.168.1.0/24) to offer an IP address; without it, the server ignores the request, and clients fall back to APIPA (169.254.x.x).

Exam trap

CompTIA often tests the misconception that ip helper-address alone guarantees DHCP success, but the trap is that the DHCP server must have a scope matching the client's subnet (identified by the giaddr) to issue an address.

Why the other options are wrong

B

The router interface for VLAN 10 already has the ip helper-address configured, and users can ping the DHCP server, indicating the helper address is correctly placed and reachable. The issue is that the DHCP server lacks a scope for VLAN 10's subnet, so it cannot assign addresses.

C

Users in VLAN 10 can ping the DHCP server, so connectivity exists. The issue is that the DHCP server lacks a scope for VLAN 10's subnet, not that the switch port is misconfigured as a trunk.

D

The router can ping the DHCP server (192.168.20.5), indicating no ACL is blocking traffic. DHCP offers are unicast to the relay agent (router), which then forwards them to the client; an ACL on the router would also block the ping if it blocked DHCP offers.

When would these options actually be correct?

B

This would be correct if the ip helper-address were configured on the VLAN 20 interface instead of VLAN 10, or if it were missing on VLAN 10 entirely. For example, a question where clients in VLAN 10 cannot get IPs and the helper is on VLAN 20's interface would make B the answer.

C

A question where users in VLAN 10 cannot reach the DHCP server at all (e.g., no ping), and the switch port connecting users is configured as a trunk, causing the client's VLAN tag to be mismatched or dropped, preventing DHCP communication.

D

In a scenario where the router can ping the DHCP server but clients cannot obtain IP addresses, and the router's ACL is configured to deny UDP ports 67/68 or the server's IP, this would be the cause. For example, an ACL applied inbound on the VLAN 10 interface blocking DHCP replies.

Why candidates pick the wrong answer

B

Candidates may assume that if DHCP fails, the helper-address must be on the wrong interface, especially when they know it's configured but overlook that the server needs a matching scope.

C

Candidates may confuse trunk vs. access port issues with DHCP relay problems, assuming that a trunk port could cause VLAN mismatch and block DHCP broadcasts.

D

Candidates may think ACLs are a common cause of DHCP failures, but they overlook that the ip helper-address uses unicast forwarding, and a successful ping suggests no ACL blocking the server.

110
MCQeasy

A network administrator needs to schedule a firmware upgrade for a critical switch during a maintenance window. After the upgrade is completed and verified, which document should the administrator update to reflect the new firmware version?

A.Incident response plan
B.Network topology diagram
C.Configuration baseline document
D.Change request form
AnswerC

A configuration baseline document serves as the authoritative snapshot of a device's approved and stable configuration, including critical details like firmware versions, operating system patches, and specific settings. After scheduling and completing a firmware upgrade for a critical switch, this document must be meticulously updated to reflect the new, current, and verified firmware version. This ensures an accurate reference point for future audits, troubleshooting, and maintaining consistent network operations.

Why this answer

The configuration baseline document records the approved configuration of a network device, including firmware versions. After a firmware upgrade is verified, updating this document ensures that the baseline reflects the current, known-good state for change management and troubleshooting. The administrator must update the baseline to maintain configuration consistency and audit compliance.

Exam trap

The trap here is that candidates confuse the configuration baseline document with the network topology diagram, but the topology diagram only shows device interconnections, not the software version running on each device.

Why the other options are wrong

A

The incident response plan documents procedures for handling security incidents or network outages, not routine firmware version updates. Updating firmware is a standard maintenance task, not an incident response activity.

B

The network topology diagram shows physical and logical connections, not firmware versions. Updating it after a firmware upgrade does not document the new version; that is the role of the configuration baseline document.

D

The change request form documents the request and approval for a change, but it is not updated after the change is completed to reflect the new firmware version; that is the purpose of the configuration baseline document.

When would these options actually be correct?

A

This option would be correct if the question asked: 'After a security breach is contained, which document should be updated to include lessons learned and revised response procedures?'

B

A network administrator adds a new switch to the network and needs to document its connections and placement. Updating the network topology diagram would be correct to reflect the new device and its links.

D

A network administrator submits a request to upgrade firmware on a critical switch. After the change is approved and completed, which document should be updated to close out the change process?

Why candidates pick the wrong answer

A

Candidates may confuse 'firmware upgrade' with a security-related change, assuming any change to a critical switch requires updating the incident response plan.

B

Candidates may think that any change to a network device should be reflected in the topology diagram, confusing device configuration details with network layout documentation.

D

Candidates may confuse the change management process with configuration management, thinking the change request form is updated with results, but it is typically a static record of the request and approval, not the configuration details.

111
MCQmedium

A network administrator is configuring a router-on-a-stick to route between two VLANs (VLAN 10 and VLAN 20). The router has two subinterfaces: GigabitEthernet0/1.10 with encapsulation dot1Q 10 and IP 10.10.10.1/24, and GigabitEthernet0/1.20 with encapsulation dot1Q 20 and IP 10.10.20.1/24. The switch port connected to the router is configured as an access port in VLAN 10. Hosts in VLAN 10 can ping the router's VLAN 10 interface, but hosts in VLAN 20 cannot ping the router's VLAN 20 interface. What is the most likely cause?

A.The router subinterface for VLAN 20 is not enabled.
B.The switch port connecting to the router should be configured as a trunk.
C.The hosts in VLAN 20 do not have a default gateway configured.
D.The router's VLAN 20 subinterface has an incorrect IP address.
AnswerB

For a "router on a stick" configuration to function, the single physical link between the switch and the router must carry traffic for multiple VLANs. This requires the switch port connected to the router to be configured as an 802.1Q trunk port. A trunk port allows frames from different VLANs, identified by their respective VLAN tags, to traverse the same physical link, enabling the router's subinterfaces to receive and send tagged traffic for each configured VLAN. Without this, the switch would treat the port as an access port for a single VLAN, blocking traffic from other VLANs.

Why this answer

The router-on-a-stick design requires the switch port connecting to the router to be configured as a trunk port, not an access port. An access port only carries traffic for a single VLAN (VLAN 10 in this case), so frames from VLAN 20 are dropped at the switch port before reaching the router. Configuring the port as a trunk with allowed VLANs 10 and 20 would enable the router's subinterfaces to receive and forward traffic for both VLANs.

Exam trap

CompTIA often tests the distinction between access and trunk ports in router-on-a-stick scenarios, trapping candidates who assume that configuring subinterfaces alone is sufficient without ensuring the switch port is set to trunk mode.

Why the other options are wrong

C

The hosts in VLAN 20 cannot ping the router's VLAN 20 interface because the switch port is an access port in VLAN 10, so frames from VLAN 20 are not received by the router. Even if hosts lacked a default gateway, they could still ping the router's directly connected interface IP if Layer 2 connectivity existed.

D

The router's VLAN 20 subinterface IP address (10.10.20.1/24) is correct for the VLAN 20 network. The issue is that the switch port is an access port in VLAN 10, so VLAN 20 traffic never reaches the router, making the IP configuration irrelevant.

When would these options actually be correct?

C

In a scenario where hosts in a VLAN can ping other hosts in the same VLAN but cannot reach devices in other VLANs or the internet, and the router's subinterface is correctly configured and trunking is verified, the likely cause is that the hosts lack a default gateway pointing to the router's subinterface IP.

D

In a scenario where hosts in VLAN 20 cannot ping the router, but the switch port is correctly configured as a trunk, and the router subinterface encapsulation is correct, an incorrect IP address on the subinterface (e.g., 10.10.30.1/24) would prevent routing. This would be the correct answer if the IP address does not match the VLAN's subnet.

Why candidates pick the wrong answer

C

Candidates often assume that inter-VLAN routing issues are due to missing default gateways, overlooking Layer 2 misconfigurations like trunking. They may not realize that direct ping to the router's interface IP does not require a default gateway.

D

Candidates may assume that if hosts cannot reach the router, the IP address must be wrong, overlooking the more fundamental trunking issue. They focus on IP configuration because it's a common misconfiguration, but here the problem is at Layer 2.

112
MCQmedium

A network administrator needs to schedule a firmware update for several switches during a maintenance window. Which of the following documents should be updated immediately after the changes are complete?

A.Network diagram
B.Change management request
C.Performance baseline
D.Service level agreement
AnswerB

The change management request is a critical document that initiates, tracks, and concludes any planned alteration to the IT infrastructure. It details the proposed change, its justification, potential impact, rollback plan, and required approvals before implementation. After a firmware update is completed, updating the change management request with the actual results, any encountered issues, and verification of successful implementation is a mandatory step to formally close the change, ensuring proper auditing and historical record-keeping.

Why this answer

The change management request is the correct document to update immediately after completing the firmware update because it serves as the official record that the change was implemented, tested, and closed. This ensures audit compliance, rollback documentation, and approval tracking, which are critical in ITIL-based change management processes. Updating the network diagram or performance baseline may be done later as part of post-change verification, but the change management request must be updated first to formally close the change window.

Exam trap

The N10-009 exam often tests the misconception that updating the network diagram is the most immediate post-change task, but the change management request must be updated first to formally close the change window and satisfy audit requirements.

Why the other options are wrong

A

The network diagram is a static representation of the network topology and should be updated when physical or logical changes occur, not immediately after a firmware update that does not alter the topology.

C

A performance baseline is a snapshot of normal network performance used for comparison after changes; it should be established before the change, not updated immediately after completing a firmware update.

D

The service level agreement (SLA) defines the expected level of service between parties and is not updated after a firmware change; it is a contractual document that remains static unless renegotiated.

When would these options actually be correct?

A

A question asks: 'After adding new switches to the network, which document should be updated to reflect the new topology?' In that scenario, the network diagram is the correct answer because it needs to show the new devices and connections.

C

When a question asks which document should be updated after a network change to reflect new performance metrics, such as after optimizing a WAN link or upgrading hardware, updating the performance baseline would be correct.

D

A question asks: 'A network provider needs to document a new guaranteed uptime percentage after upgrading infrastructure. Which document should be updated?' In that case, the SLA would be updated to reflect the new performance commitments.

Why candidates pick the wrong answer

A

Candidates may think any change requires updating the network diagram, but firmware updates don't change the diagram; they only change software versions.

C

Candidates may think that after a firmware update, the network's performance might change, so they should update the baseline to reflect the new normal, but the baseline is typically taken before the change to measure impact.

D

Candidates may confuse SLA with operational documents, thinking that any change affecting service performance requires updating the SLA, but SLAs are contractual and not modified for routine maintenance.

113
MCQmedium

A company's wireless network currently uses WPA2-PSK with a shared passphrase. A security audit identifies that the passphrase is weak and shared among all employees. Which of the following would provide the MOST secure wireless access while addressing the shared passphrase issue?

A.Implement WPA2-Enterprise with 802.1X
B.Upgrade to WPA3-Personal with a strong passphrase
C.Disable SSID broadcast
D.Enable MAC address filtering
AnswerA

Implementing WPA2-Enterprise with 802.1X is the most robust solution for a corporate environment. This method leverages a centralized authentication server, typically RADIUS, to authenticate individual users or devices using unique credentials, rather than a single shared key. It provides dynamic, per-user encryption keys and strong access control, significantly mitigating the risks associated with a compromised shared passphrase by ensuring individual accountability and secure key distribution.

Why this answer

WPA2-Enterprise with 802.1X eliminates the shared passphrase by using a RADIUS server to authenticate each user individually, typically via EAP methods such as PEAP or EAP-TLS. This provides per-user credentials (e.g., username/password or certificates), so compromising one user's credentials does not expose the entire network. It also supports dynamic per-session encryption keys, making it far more secure than any shared-passphrase solution.

Exam trap

The trap here is that candidates often assume upgrading to WPA3-Personal (with SAE) is sufficient, but the question specifically requires addressing the 'shared passphrase' issue, which only per-user authentication (802.1X) can solve.

Why the other options are wrong

B

WPA3-Personal still uses a shared passphrase, which does not address the security audit's finding that the passphrase is shared among all employees. The goal is to eliminate the shared passphrase, not just strengthen it.

C

Disabling SSID broadcast only hides the network name from beacon frames, but the weak shared passphrase remains unchanged, so it does not address the core security issue of shared credentials.

D

MAC address filtering does not address the shared passphrase issue; it only restricts access based on device MAC addresses, which can be spoofed and does not improve authentication security.

When would these options actually be correct?

B

If the question asked for the most secure wireless access for a small office/home office (SOHO) environment where 802.1X infrastructure is unavailable, and the primary concern was protecting against brute-force attacks on the passphrase, then upgrading to WPA3-Personal with a strong passphrase would be the best option.

C

A question asks for a method to reduce casual unauthorized access attempts or network discovery, with no requirement to address authentication weaknesses. For example: 'Which of the following would make a wireless network less visible to casual users?'

D

When the question asks for a method to prevent unauthorized devices from connecting to a small, static network where device control is feasible, and the primary concern is not authentication strength but basic access restriction.

Why candidates pick the wrong answer

B

Candidates may think that upgrading to a newer, more secure protocol (WPA3) automatically solves all security issues, overlooking that WPA3-Personal still relies on a shared passphrase, which is the core problem identified in the audit.

C

Candidates may think hiding the SSID adds a layer of security by making the network 'invisible,' but it is easily bypassed and does not fix authentication flaws.

D

Candidates may think MAC filtering adds a layer of security by allowing only approved devices, overlooking that it is easily bypassed and does not solve the weak shared passphrase problem.

114
MCQmedium

A company wants to allow inbound HTTPS traffic to a web server located in the DMZ from the Internet. The firewall has three interfaces: Inside (corporate network), Outside (Internet), and DMZ (web server). Which of the following firewall rules is required?

A.Allow traffic from Outside to DMZ on port 443
B.Allow traffic from DMZ to Outside on port 443
C.Allow traffic from Inside to DMZ on port 443
D.Allow traffic from Outside to Inside on port 443
AnswerA

This firewall rule explicitly permits inbound connections originating from the "Outside" network (representing the public internet) to destination IP addresses within the "DMZ" (Demilitarized Zone). By specifying port 443, the rule exclusively allows HTTPS traffic, which is the standard secure protocol for web communication. This directly fulfills the requirement to allow secure web access to a server hosted in the DMZ from external users.

Why this answer

The correct rule is to allow traffic from the Outside (Internet) interface to the DMZ interface on TCP port 443 (HTTPS). This permits inbound web requests to reach the web server while keeping the corporate Inside network isolated. The firewall must explicitly permit this traffic because the default implicit deny rule would otherwise block all inbound connections from the Outside zone.

Exam trap

The trap here is that candidates often confuse the direction of the traffic flow, mistakenly thinking the rule should allow traffic from the DMZ to the Outside (Option B) because they focus on the server sending responses, rather than the client initiating the connection.

Why the other options are wrong

B

The question asks for a rule to allow inbound HTTPS traffic from the Internet to the web server in the DMZ. Option B allows traffic from DMZ to Outside, which is outbound, not inbound, and does not permit the initial connection from the Internet.

C

The question specifies inbound HTTPS traffic from the Internet to a web server in the DMZ, so the rule must allow traffic from Outside to DMZ, not from Inside to DMZ.

D

The question specifies the web server is in the DMZ, not the Inside network. Allowing traffic from Outside to Inside on port 443 would bypass the DMZ and expose the internal corporate network to inbound internet traffic, violating security best practices.

When would these options actually be correct?

B

This option would be correct if the question required allowing the web server in the DMZ to initiate outbound HTTPS connections to the Internet, for example, to download updates or access external APIs.

C

This option would be correct if the question asked for a rule to allow internal corporate users (Inside) to access a web server in the DMZ for management or internal applications.

D

This rule would be correct if the web server were located on the Inside interface (corporate network) and the company wanted to allow inbound HTTPS from the internet directly to that internal server, though this is generally discouraged due to security risks.

Why candidates pick the wrong answer

B

Candidates may confuse the direction of traffic or think that allowing return traffic from the DMZ is necessary for the inbound connection, not realizing that stateful firewalls automatically permit return traffic for established connections.

C

Candidates may confuse the direction of traffic or think that internal users need access to the DMZ web server, overlooking that the question explicitly states traffic originates from the Internet.

D

Candidates may confuse the DMZ with the Inside network or assume that HTTPS traffic should be allowed to any internal server, overlooking the specific placement of the web server in the DMZ as stated in the question.

115
MCQeasy

At which layer of the OSI model does a device provide flow control, error detection, and recovery for end-to-end communication?

A.A: Transport layer
B.B: Network layer
C.C: Data Link layer
D.D: Session layer
AnswerA

The Transport layer, specifically through protocols like TCP, provides end-to-end flow control to manage the rate of data transmission between a sending and receiving application. It prevents a faster sender from overwhelming a slower receiver by using a sliding window mechanism, where the receiver advertises its available buffer space. This ensures that the sender only transmits data up to the receiver's advertised window size, dynamically adjusting the data flow to match the receiver's processing capabilities and preventing buffer overflows.

Why this answer

The Transport layer (Layer 4) is responsible for end-to-end communication between source and destination hosts. It provides flow control (e.g., TCP's sliding window mechanism), error detection (via checksums in TCP and UDP headers), and recovery (through TCP retransmission of lost segments). These functions ensure reliable data delivery across the network, distinguishing it from lower layers that handle hop-by-hop or link-local tasks.

Exam trap

The N10-009 exam often tests the distinction between hop-by-hop (Data Link) and end-to-end (Transport) responsibilities, tricking candidates into confusing link-layer error detection (e.g., Ethernet CRC) with end-to-end recovery, which is exclusively a Transport layer function.

Why the other options are wrong

B

The Network layer (Layer 3) handles routing and logical addressing, but flow control, error detection, and recovery for end-to-end communication are functions of the Transport layer (Layer 4).

C

The Data Link layer provides flow control, error detection, and recovery only for direct node-to-node links, not for end-to-end communication across multiple network segments.

D

The Session layer (Layer 5) manages sessions, dialog control, and synchronization, but does not provide flow control, error detection, or recovery for end-to-end communication; those functions belong to the Transport layer.

When would these options actually be correct?

B

A question asking 'At which layer does a device provide logical addressing and routing between networks?' would have the Network layer as the correct answer.

C

A question asking: 'At which layer of the OSI model does a device provide flow control, error detection, and recovery for communication between two directly connected nodes?' would make the Data Link layer correct.

D

A question asking: 'At which OSI layer does a device manage dialog control, session establishment, and checkpointing?' would make the Session layer the correct answer.

Why candidates pick the wrong answer

B

Candidates may confuse the Network layer's end-to-end delivery of packets with the Transport layer's end-to-end communication services, or they may associate error detection with IP checksums.

C

Candidates may confuse the Data Link layer's local error control with the Transport layer's end-to-end responsibilities, especially since both layers perform similar functions but at different scopes.

D

Candidates may confuse session management with end-to-end communication services, or incorrectly associate 'recovery' with session checkpointing rather than transport-layer retransmission.

116
MCQeasy

A junior network technician asks which device operates at Layer 2 of the OSI model and uses MAC addresses to forward frames. Which device is the technician describing?

A.Hub
B.Switch
C.Router
D.Firewall
AnswerB

Switches operate primarily at Layer 2 (Data Link Layer) of the OSI model. They intelligently forward data frames based on the destination Media Access Control (MAC) address found in the frame header. By learning MAC addresses and storing them in a MAC address table, switches create dedicated collision domains for each port, significantly improving network efficiency compared to hubs. This targeted forwarding ensures data only reaches the intended recipient, reducing unnecessary network traffic.

Why this answer

A switch operates at Layer 2 (Data Link layer) of the OSI model and uses MAC addresses to make forwarding decisions. It builds a MAC address table by learning source MAC addresses from incoming frames and then forwards frames only to the specific port associated with the destination MAC address, reducing collision domains and improving network efficiency.

Exam trap

The N10-009 exam often tests the distinction between Layer 2 and Layer 3 devices by asking about forwarding decisions based on MAC vs. IP addresses, and the trap here is that candidates may confuse a switch with a router because both can connect multiple devices, but only the switch operates purely at Layer 2 using MAC addresses.

Why the other options are wrong

A

Hubs operate at Layer 1 (Physical layer) and simply repeat electrical signals to all ports; they do not use MAC addresses to forward frames.

C

Routers operate at Layer 3 (Network layer) and use IP addresses to forward packets, not MAC addresses to forward frames.

D

A firewall operates at Layers 3 and 4 (and sometimes higher) of the OSI model, using IP addresses and ports to filter traffic, not MAC addresses to forward frames.

When would these options actually be correct?

A

A question asking 'Which device operates at Layer 1 of the OSI model and regenerates signals?' would have Hub as the correct answer.

C

A question asking 'Which device operates at Layer 3 of the OSI model and uses IP addresses to route packets between networks?' would make Router the correct answer.

D

A question asking 'Which device is used to filter traffic based on IP addresses and ports to protect a network from unauthorized access?' would have firewall as the correct answer.

Why candidates pick the wrong answer

A

Candidates may confuse hubs with switches because both have multiple ports and are used in LANs, but hubs lack the intelligence to process MAC addresses.

C

Candidates may confuse the functions of switches and routers, especially if they recall that routers forward traffic but forget the layer distinction.

D

Candidates may confuse firewalls with switches because both are network devices that filter traffic, but they operate at different layers and use different addressing.

117
MCQeasy

A network monitoring system uses SNMP to poll interface statistics from switches every 5 minutes. This polling is causing high CPU utilization on the switches. Which of the following actions would BEST reduce the CPU load on the switches while still providing monitoring data?

A.Use SNMP traps instead of polling
B.Increase the SNMP community string
C.Disable SNMP on unused interfaces
D.Change the SNMP version to v1
AnswerA

SNMP polling requires the network monitoring system to periodically query devices, consuming CPU cycles on both the polling station and the polled device for each request and response. In contrast, SNMP traps are unsolicited notifications sent by the device *only* when a specific event or threshold is met, such as an interface going down or high utilization. This event-driven communication significantly reduces the constant overhead associated with continuous polling, thereby lowering CPU load on network devices and the monitoring system.

Why this answer

SNMP traps are push-based notifications sent by the switch only when a significant event occurs (e.g., link up/down, threshold crossing), eliminating the need for the NMS to poll every 5 minutes. This reduces CPU load because the switch no longer processes periodic GET requests, which require CPU cycles to gather interface statistics from the MIB. Traps still provide monitoring data by alerting the NMS to changes, though they may not offer the same granularity as polling for all counters.

Exam trap

The trap here is that candidates often confuse 'reducing the scope of polling' (like disabling unused interfaces) with 'eliminating the polling mechanism itself,' but the correct answer targets the fundamental shift from pull-based (polling) to push-based (traps) communication to reduce CPU load.

Why the other options are wrong

B

Increasing the SNMP community string does not reduce CPU load; it only changes the authentication string for access control. The CPU load is caused by the polling frequency, not the community string.

C

Disabling SNMP on unused interfaces reduces the amount of data polled, but the primary cause of high CPU is the polling frequency (every 5 minutes) and the polling process itself, not the number of interfaces. Traps shift the workload to the switches only when events occur, which is more effective.

D

Changing SNMP version to v1 would not reduce CPU load; v1 is less efficient and lacks security, potentially increasing processing overhead due to lack of bulk retrieval.

When would these options actually be correct?

B

This option would be correct in a scenario where the question asks for improving SNMP security, such as preventing unauthorized access to SNMP data, and the current community string is weak or default.

C

This would be correct in a scenario where the network monitoring system polls all interfaces, including many that are administratively down or not connected, causing unnecessary SNMP queries. Disabling SNMP on those unused interfaces reduces the number of OIDs polled, lowering CPU usage.

D

A question asks which SNMP version is most compatible with legacy devices that only support v1, and security is not a concern.

Why candidates pick the wrong answer

B

Candidates may mistakenly think that a longer or more complex community string reduces processing overhead, or they confuse it with other performance-related settings like SNMP timeouts or retries.

C

Candidates may think that reducing the number of interfaces polled directly reduces CPU load, overlooking that the polling interval and the polling mechanism itself are the main contributors. They might also confuse 'unused interfaces' with 'unnecessary polling data'.

D

Candidates may think older versions are simpler and thus less resource-intensive, but SNMPv1 actually requires more polling cycles due to lack of GetBulkRequest.

118
MCQmedium

A security administrator discovers that an attacker has intercepted data between two legitimate hosts by redirecting traffic through a rogue device. Which type of attack is this?

A.ARP poisoning
B.DNS poisoning
C.Man-in-the-middle
D.Replay attack
AnswerC

A Man-in-the-Middle (MITM) attack occurs when an attacker secretly intercepts and potentially alters the communication between two parties who believe they are directly communicating with each other. The attacker positions themselves in the data path, effectively becoming an intermediary that can eavesdrop on, capture, or even manipulate the data in real-time without either legitimate party being aware of the compromise. This direct interception of data between two hosts perfectly matches the scenario described.

Why this answer

This is a classic man-in-the-middle (MITM) attack, where the attacker intercepts and potentially alters communication between two legitimate hosts by inserting a rogue device into the data path. The key characteristic is the redirection of traffic through the attacker's device, which allows them to capture, inspect, or modify packets in transit.

Exam trap

CompTIA often tests the distinction between the attack type (MITM) and the technique used to achieve it (ARP poisoning), leading candidates to choose the method rather than the broader category.

Why the other options are wrong

A

ARP poisoning is a technique used to associate an attacker's MAC address with the IP address of a legitimate host, enabling traffic interception. However, the question describes redirecting traffic through a rogue device, which is the definition of a man-in-the-middle attack, not specifically ARP poisoning.

B

DNS poisoning involves corrupting DNS records to redirect traffic to malicious sites, not intercepting traffic between two hosts via a rogue device.

D

A replay attack involves capturing and retransmitting valid data to produce an unauthorized effect, but it does not inherently involve redirecting traffic through a rogue device; the question describes traffic redirection, which is characteristic of a man-in-the-middle attack.

When would these options actually be correct?

A

A question that asks: 'An attacker sends forged ARP messages to associate their MAC address with the IP address of a default gateway. Which type of attack is this?' would make ARP poisoning the correct answer.

B

A question describing an attacker modifying DNS cache entries to redirect users to a fake login page for credential harvesting would make DNS poisoning the correct answer.

D

An exam question might describe an attacker capturing a valid authentication packet and retransmitting it later to gain unauthorized access, without any mention of traffic redirection or a rogue device. In that scenario, replay attack would be the correct answer.

Why candidates pick the wrong answer

A

Candidates may confuse ARP poisoning with man-in-the-middle because ARP poisoning is a common method used to achieve a man-in-the-middle position, but the question describes the broader attack type, not the specific technique.

B

Candidates may confuse DNS poisoning with ARP poisoning or think any redirection attack is DNS-related, overlooking the specific mechanism of traffic interception via a rogue device.

D

Candidates may confuse replay attacks with man-in-the-middle because both involve intercepting data, but replay focuses on reusing captured data rather than actively redirecting and modifying traffic in real time.

119
MCQmedium

A network administrator wants to allow wireless clients to seamlessly roam between access points without re-authenticating to the RADIUS server for each transition. Which IEEE standard should be implemented?

A.802.11r
B.802.11k
C.802.11w
D.802.1X
AnswerA

IEEE 802.11r, also known as Fast BSS Transition (FT), is specifically designed to enable seamless and rapid roaming for wireless clients between access points within the same Extended Service Set (ESS). It achieves this by allowing clients to pre-authenticate with target APs or by using a faster key exchange mechanism, significantly reducing the authentication latency that would otherwise disrupt real-time applications like VoIP. This standard minimizes the time a client is disconnected during a handoff, ensuring a smooth user experience.

Why this answer

802.11r, also known as Fast BSS Transition (FT), enables wireless clients to roam between access points without re-authenticating to the RADIUS server by using a cached Pairwise Master Key (PMK) and performing a faster, over-the-air or over-the-DS key exchange. This reduces the time required for roaming handoffs, which is critical for real-time applications like VoIP.

Exam trap

CompTIA often tests the distinction between 802.11k (which helps clients decide where to roam) and 802.11r (which speeds up the actual authentication process), leading candidates to confuse 'neighbor reports' with 'fast roaming authentication'.

Why the other options are wrong

B

802.11k provides neighbor reports and radio resource management to assist roaming decisions, but it does not eliminate the need for re-authentication to the RADIUS server during transitions.

C

802.11w is designed for management frame protection, not for seamless roaming or reducing re-authentication overhead. It does not address the requirement of avoiding RADIUS re-authentication during roaming.

D

802.1X is an authentication framework used for port-based network access control, not a standard for seamless roaming. It requires re-authentication when transitioning between access points, which contradicts the goal of avoiding re-authentication.

When would these options actually be correct?

B

A network administrator wants to improve client roaming efficiency by enabling clients to discover nearby access points and optimize channel selection. Which IEEE standard should be implemented?

C

A question asks: 'Which IEEE standard enhances wireless security by protecting management frames from forgery and eavesdropping?' In that context, 802.11w (Protected Management Frames) would be the correct answer.

D

A question asking for the standard that provides port-based network access control for both wired and wireless networks, typically used with EAP methods for authentication, would have 802.1X as the correct answer.

Why candidates pick the wrong answer

B

Candidates may confuse 802.11k's roaming assistance features with the fast roaming capabilities of 802.11r, assuming it handles authentication offload.

C

Candidates may confuse 802.11w with roaming-related standards because both involve wireless client transitions, or they might think 'w' stands for 'wireless' or 'wandering'.

D

Candidates may confuse 802.1X with the roaming standards because it is commonly used in wireless security, leading them to think it handles roaming transitions.

120
MCQhard

Two routers are configured with OSPF in the same area, but they do not form an adjacency. Router A shows OSPF state EXSTART, and Router B shows state EXSTART. Which of the following is the most likely cause?

A.The OSPF Hello and Dead intervals are mismatched
B.The OSPF area IDs are different
C.The MTU is mismatched between the two routers
D.The network type is misconfigured (e.g., one side is broadcast, the other is point-to-point)
AnswerC

During the OSPF ExStart state, routers exchange Database Description (DBD) packets to negotiate the master/slave relationship and synchronize their link-state databases. If the Maximum Transmission Unit (MTU) values on the connected interfaces are mismatched, one router might send a DBD packet larger than the other router's configured MTU. The receiving router will then drop these oversized packets, preventing the successful exchange and acknowledgment of DBDs, thereby causing the adjacency to remain perpetually stuck in the ExStart state. This critical mismatch prevents progression to the Exchange state.

Why this answer

When OSPF routers are stuck in the EXSTART state, it indicates that they have progressed past the 2-Way and ExStart phases but are unable to exchange Database Description (DBD) packets. The most common cause is an MTU mismatch, because OSPF will not proceed to the Exchange state if a DBD packet exceeds the interface MTU of the neighbor. This causes the routers to continuously renegotiate the master/slave relationship without completing the exchange.

Exam trap

CompTIA often tests the MTU mismatch trap by having candidates confuse it with Hello/Dead interval mismatches, but the key clue is that both routers are stuck in EXSTART, not in INIT or 2-Way.

Why the other options are wrong

A

In this scenario, both routers are stuck in EXSTART state, which indicates a problem with the Database Description (DD) packet exchange. MTU mismatch is the classic cause of this issue, whereas Hello/Dead interval mismatches typically prevent the routers from reaching the 2-WAY state, not EXSTART.

B

In OSPF, mismatched area IDs prevent routers from forming an adjacency because they would be in different areas, but the question states both routers are in the same area. The EXSTART state indicates they have passed the 2-way state, which requires matching area IDs, so area ID mismatch cannot be the cause.

D

In this scenario, both routers are stuck in EXSTART, which indicates a problem during the database description (DD) packet exchange. A network type mismatch typically prevents the routers from reaching the 2-WAY state, not EXSTART.

When would these options actually be correct?

A

A question where routers show OSPF state INIT or DOWN, or where they never progress past the 2-WAY state, would make Hello/Dead interval mismatch the correct answer. For example: 'Two OSPF routers in the same area are configured with different Hello intervals. Which state will they remain stuck in?'

B

This option would be correct in a scenario where two OSPF routers are configured with different area IDs (e.g., one in area 0 and the other in area 1) and fail to form an adjacency, with states stuck at INIT or 2-WAY, not EXSTART.

D

If the question described routers stuck in the INIT or 2-WAY state, or failing to form an adjacency entirely, a network type mismatch (e.g., one side broadcast, the other point-to-point) would be the most likely cause, as it affects Hello packet handling and neighbor discovery.

Why candidates pick the wrong answer

A

Candidates often confuse the symptoms of different OSPF issues. Since Hello/Dead intervals are a common misconfiguration, they assume it can cause any adjacency problem, including the EXSTART state, without understanding the specific state progression.

B

Candidates know that OSPF requires matching area IDs for adjacency, so they may jump to this answer without noticing that the EXSTART state implies area IDs already matched.

D

Candidates may confuse the symptoms of network type mismatch (failure to reach 2-WAY) with those of MTU mismatch (stuck in EXSTART), as both involve OSPF adjacency formation issues.

121
MCQmedium

A network administrator notices that several workstations on the network are receiving IP addresses from an unknown source, causing intermittent connectivity issues. The DHCP server is located in the server room and is the only authorized DHCP server. Which security feature should be implemented on the access switches to prevent rogue DHCP servers from distributing IP addresses?

A.DHCP Snooping
B.Dynamic ARP Inspection
C.IP Source Guard
D.Port Security
AnswerA

DHCP Snooping is a crucial Layer 2 security feature implemented on network switches to prevent unauthorized DHCP servers from distributing IP addresses and configurations. It operates by classifying switch ports as either trusted (where legitimate DHCP servers are connected) or untrusted. The switch then filters DHCP server messages, specifically DHCPOFFER and DHCPACK, on untrusted ports, dropping any that originate from there, thereby ensuring clients only receive valid IP configurations from authorized sources.

Why this answer

DHCP Snooping is the correct security feature because it filters untrusted DHCP messages on access switches. By configuring ports connected to end-user workstations as untrusted, the switch drops DHCP server responses (OFFER, ACK) received on those ports, preventing rogue DHCP servers from distributing IP addresses. This ensures only the authorized DHCP server in the server room can provide IP configurations.

Exam trap

The N10-009 exam often tests the distinction between DHCP Snooping and Dynamic ARP Inspection, where candidates mistakenly choose DAI because they confuse DHCP spoofing with ARP spoofing, but DHCP Snooping is the specific mechanism to block rogue DHCP servers.

Why the other options are wrong

B

Dynamic ARP Inspection (DAI) validates ARP packets to prevent ARP spoofing, not DHCP server unauthorized distribution. The question specifically asks about rogue DHCP servers, which DHCP Snooping addresses by filtering DHCP messages on untrusted ports.

C

IP Source Guard is used to prevent IP spoofing by filtering traffic based on the DHCP snooping binding table, but it does not directly prevent rogue DHCP servers from distributing IP addresses. The question specifically asks for a feature to block unauthorized DHCP servers, which is DHCP Snooping.

D

Port Security limits the number of MAC addresses per port but does not inspect DHCP messages or block rogue DHCP servers. It cannot prevent unauthorized DHCP offers from being forwarded.

When would these options actually be correct?

B

A network administrator notices intermittent connectivity and ARP cache poisoning attacks on the LAN. Which security feature should be implemented on switches to validate ARP packets and prevent man-in-the-middle attacks?

C

A network administrator wants to prevent devices from spoofing IP addresses on the network. IP Source Guard would be the correct answer when the question asks for a security feature that filters IP traffic on a per-port basis using the DHCP snooping binding table to block unauthorized IP source addresses.

D

Port Security would be correct in a scenario where the question asks how to prevent unauthorized devices from connecting to the network by limiting the number of MAC addresses allowed on a switch port, such as in a high-security environment to prevent rogue laptops or switches from plugging in.

Why candidates pick the wrong answer

B

Candidates may confuse DAI with DHCP Snooping because both are security features that rely on DHCP Snooping binding tables and are often implemented together, leading to the mistaken belief that DAI directly prevents rogue DHCP servers.

C

Candidates may confuse IP Source Guard with DHCP Snooping because both rely on the DHCP snooping binding table and are often implemented together, leading to the mistaken belief that IP Source Guard also prevents rogue DHCP servers.

D

Candidates may think Port Security can block rogue servers because it controls device access, but it operates at Layer 2 and does not filter DHCP traffic specifically.

122
MCQhard

A network administrator is creating a performance baseline for a new VoIP application. Which metric is most critical to monitor in order to ensure good voice quality for end users?

A.Bandwidth utilization
B.Latency
C.Jitter
D.Packet loss
AnswerB

Latency, the total time delay for a packet to travel from its source to its destination, is the most critical factor for establishing a performance baseline for real-time VoIP communication. Excessive one-way latency, particularly exceeding 150 milliseconds, severely degrades the user experience by creating noticeable gaps and overlaps in conversation, making natural interaction extremely difficult. Ensuring low, consistent latency is paramount for any network supporting interactive voice applications.

Why this answer

Latency is the most critical metric for VoIP voice quality because it directly impacts the conversational flow. High latency (above 150 ms one-way, per ITU-T G.114) causes noticeable delays that disrupt natural conversation, leading to user dissatisfaction. While jitter and bandwidth are important, latency is the primary factor that degrades the interactive experience.

Exam trap

The N10-009 exam often tests the misconception that jitter is the most critical metric because it causes choppy audio, but the trap is that jitter can be corrected with a buffer, whereas latency is a cumulative, uncorrectable delay that directly breaks real-time interactivity.

Why the other options are wrong

A

While bandwidth utilization is important, the most critical metric for VoIP voice quality is latency, as excessive delay disrupts real-time conversation. Bandwidth utilization alone does not directly cause poor voice quality if latency and jitter are within acceptable ranges.

C

While jitter is critical for VoIP quality, the question asks for the 'most critical' metric. Latency directly impacts real-time conversation flow; excessive latency causes talker overlap and delays that degrade user experience more fundamentally than jitter, which can be mitigated with jitter buffers.

D

While packet loss degrades voice quality, the question asks for the most critical metric for a performance baseline. Latency is more critical because VoIP is highly sensitive to delays, and excessive latency directly causes conversational gaps and echo, whereas moderate packet loss can be masked by codecs.

When would these options actually be correct?

A

In a scenario where the network is experiencing congestion and the question asks for the metric that indicates whether the link has sufficient capacity for VoIP traffic, bandwidth utilization would be the correct answer.

C

In a scenario where the network has low latency but variable delay, and the VoIP system lacks a jitter buffer, jitter becomes the most critical metric to monitor because it causes packet arrival time variations that lead to gaps or overlaps in audio playback.

D

In a scenario where the VoIP application uses a codec with no packet loss concealment (e.g., G.711 without PLC) and the network has high loss rates, packet loss becomes the most critical metric to monitor for ensuring intelligible voice.

Why candidates pick the wrong answer

A

Candidates often assume that VoIP requires high bandwidth and therefore monitoring utilization is key, overlooking that latency and jitter are more directly responsible for perceived voice quality issues.

C

Candidates often confuse jitter with latency or overestimate its impact because VoIP is sensitive to delay variation, but they forget that jitter buffers can compensate for moderate jitter, whereas latency cannot be easily mitigated.

D

Candidates know packet loss causes audio gaps and distortion, so they may assume it is the primary concern, overlooking that latency is the first threshold to be exceeded in typical VoIP deployments.

123
MCQhard

A company wants to implement network access control that requires users to authenticate before gaining access to the network. The NAC solution uses a policy that checks for antivirus updates and OS patches. Which component enforces the policy?

A.Supplicant
B.Authenticator
C.Authentication server
D.Policy server
AnswerB

The authenticator (e.g., a switch) enforces the policy by controlling the port state based on the authentication result.

Why this answer

The Authenticator (typically a switch or wireless access point) is the component that enforces the NAC policy by controlling access to the network port or SSID. It receives the authentication result from the Authentication Server and applies the policy (e.g., placing the endpoint in a quarantine VLAN if antivirus or OS patch checks fail). This enforcement is defined in IEEE 802.1X, where the Authenticator acts as the gatekeeper between the Supplicant and the network.

Exam trap

The trap here is that candidates often confuse the Authentication Server (which makes the decision) with the Authenticator (which enforces the decision), especially when the question emphasizes 'policy checks' like antivirus updates, leading them to incorrectly select the server.

Why the other options are wrong

A

The supplicant is the client software that requests access, not the component that enforces the policy. Enforcement is done by the authenticator (e.g., switch or wireless controller) which applies the policy after authentication.

C

The authentication server (e.g., RADIUS) validates credentials and checks policy compliance but does not enforce the policy by controlling network access; enforcement is done by the authenticator (e.g., switch or wireless controller) that applies the result.

D

The policy server defines and stores policies but does not enforce them; enforcement is done by the authenticator (e.g., switch or wireless controller) that applies the policy to the endpoint.

When would these options actually be correct?

A

In a question asking 'Which component requests network access and provides credentials?', the supplicant would be correct, as it is the client-side entity that initiates authentication.

C

In a scenario where the question asks which component stores and evaluates the access policies (e.g., 'Which component defines the rules for network access?'), the authentication server or policy server would be correct.

D

A question asking 'Which component stores and manages the NAC policies?' or 'Which component defines the access rules based on endpoint compliance?' would make the policy server the correct answer.

Why candidates pick the wrong answer

A

Candidates may confuse the supplicant's role in authentication with policy enforcement, thinking the client-side software enforces the checks, when in fact it only reports its status.

C

Candidates often confuse the authentication server's role in validating credentials and policies with the enforcement action, assuming the server that checks compliance also enforces access.

D

Candidates confuse the role of the policy server with enforcement because the term 'policy' implies control, leading them to think it enforces the rules it defines.

124
MCQhard

A security analyst is investigating a user's complaint that their wireless connection keeps disconnecting. The analyst uses a wireless scanning tool and discovers two access points broadcasting the same SSID 'CorpNet' with different BSSIDs. One is the legitimate company AP on channel 1, and the other is on channel 11 with a strong signal and security set to 'Open'. Which of the following attacks is most likely occurring?

A.War driving
B.Rogue access point
C.Evil twin
D.Bluesnarfing
AnswerC

An evil twin attack involves an attacker setting up a malicious access point (AP) that mimics a legitimate Wi-Fi network's Service Set Identifier (SSID). This imposter AP often broadcasts with a stronger signal or open security to entice users to connect, allowing the attacker to intercept network traffic, harvest credentials, or inject malware. The scenario's description of two APs with the same SSID, one strong and open, perfectly matches this deceptive impersonation technique.

Why this answer

The presence of two access points broadcasting the same SSID 'CorpNet' with different BSSIDs, where the second AP is on channel 11 with a strong signal and security set to 'Open', is characteristic of an evil twin attack. The attacker sets up a fraudulent AP with the same SSID as the legitimate network but without encryption, tricking users into connecting to it and exposing their credentials or traffic. This differs from a rogue AP, which typically mimics the corporate network but may not necessarily use an open security setting or a different channel to lure victims.

Exam trap

The N10-009 exam often tests the distinction between a rogue AP (an unauthorized device plugged into the wired network) and an evil twin (a standalone malicious AP that mimics the SSID without being connected to the corporate infrastructure), so candidates must remember that the key differentiator is the open security and different channel used to lure clients away from the legitimate AP.

Why the other options are wrong

A

War driving is the act of searching for Wi-Fi wireless networks by a person in a moving vehicle, using a portable device. It does not involve setting up a fake access point to intercept connections, which is what the scenario describes.

B

A rogue access point is an unauthorized AP connected to the network, but the question describes an AP broadcasting the same SSID with an open security setting, which is characteristic of an evil twin attack, not a rogue AP.

D

Bluesnarfing is an attack against Bluetooth devices, not Wi-Fi networks. The question describes a wireless disconnection issue involving two access points with the same SSID, which is a Wi-Fi attack scenario.

When would these options actually be correct?

A

War driving would be correct if the question described an attacker driving around a city to map wireless networks and identify vulnerable ones, without any mention of a fake AP or disconnection complaints.

B

A rogue access point would be correct if the question stated that an unauthorized AP was discovered connected to the company's wired network, potentially allowing bypass of security controls, without mention of spoofing the SSID or open security.

D

A user reports that their Bluetooth headset has been paired with an unknown device and they are experiencing audio dropouts. A security analyst discovers that an attacker is using a Bluetooth vulnerability to access the headset's contact list and call history. Bluesnarfing would be the correct answer.

Why candidates pick the wrong answer

A

Candidates may confuse war driving with any wireless attack involving scanning, because the scenario mentions using a wireless scanning tool, which is also used in war driving.

B

Candidates may confuse 'rogue access point' with any unauthorized wireless device, but the key distinction is that a rogue AP is physically connected to the network, whereas an evil twin merely mimics the SSID without network access.

D

Candidates may confuse 'Bluetooth' with 'wireless' or think that any wireless attack involving unauthorized access is bluesnarfing, without recognizing that bluesnarfing specifically targets Bluetooth connections.

125
MCQeasy

Which of the following best describes the purpose of the TCP three-way handshake?

A.To establish a reliable connection between two hosts
B.To terminate a connection gracefully
C.To resolve an IP address to a MAC address
D.To encrypt data between two devices
AnswerA

The TCP three-way handshake is fundamental for initiating a reliable, full-duplex connection between a client and a server. It involves the exchange of SYN, SYN-ACK, and ACK packets to synchronize initial sequence numbers, ensuring that both hosts agree on where data transmission will begin. This process reserves resources and establishes the necessary state for ordered and error-checked data transfer across the network.

Why this answer

The TCP three-way handshake is the process by which two hosts synchronize sequence numbers and establish a reliable connection before data transfer begins. It involves the exchange of SYN, SYN-ACK, and ACK segments, ensuring both sides are ready to communicate and agree on initial sequence numbers (ISNs) as defined in RFC 793.

Exam trap

The trap here is that candidates confuse the TCP three-way handshake with connection termination (the four-way handshake) or with lower-layer address resolution protocols like ARP, leading them to select the graceful termination or IP-to-MAC resolution options.

Why the other options are wrong

B

The TCP three-way handshake is used to establish a connection, not to terminate one. Termination uses a four-way handshake with FIN flags.

C

The TCP three-way handshake is used to establish a connection, not to resolve IP addresses to MAC addresses; that is the function of ARP (Address Resolution Protocol).

D

The TCP three-way handshake is used to establish a connection, not to encrypt data. Encryption is handled by protocols like TLS or IPsec, not by TCP itself.

When would these options actually be correct?

B

In a question asking 'Which process uses FIN flags to close a TCP session?', option B would be correct, as graceful termination involves exchanging FIN and ACK packets.

C

This option would be correct in a question asking: 'Which protocol is used to resolve an IP address to a MAC address in a local network?'

D

This option would be correct for a question like: 'Which of the following best describes the purpose of TLS?' or 'Which protocol provides encryption between two devices?'

Why candidates pick the wrong answer

B

Candidates may confuse the handshake process for termination because both involve multiple packet exchanges, or they may think 'handshake' applies to both establishment and termination.

C

Candidates may confuse the handshake's role in network communication with address resolution, or they might think the handshake involves address mapping because it occurs at the start of a session.

D

Candidates may confuse TCP with secure protocols that also involve handshakes (e.g., TLS handshake), or mistakenly think TCP provides security features like encryption.

126
MCQmedium

A network administrator wants to collect performance data from network devices over time and receive alerts when thresholds are exceeded. Which protocol should be used?

A.syslog
B.SNMP
C.NetFlow
D.ICMP
AnswerB

SNMP allows polling of MIB objects and sending traps when thresholds are exceeded.

Why this answer

SNMP (Simple Network Management Protocol) is designed to collect performance data from network devices by polling MIB (Management Information Base) objects and can generate traps or inform requests to send alerts when thresholds are exceeded. This makes it the correct choice for proactive monitoring and threshold-based alerting.

Exam trap

The trap here is that candidates confuse syslog (which can also send alerts via log messages) with SNMP's dedicated alerting mechanism (traps/informs), but syslog lacks the structured polling and MIB-based threshold monitoring that SNMP provides for performance data collection.

Why the other options are wrong

A

Syslog is used for collecting and forwarding log messages from network devices, not for polling performance metrics or setting threshold-based alerts. It lacks the structured data retrieval and alerting mechanisms that SNMP provides.

C

NetFlow is designed for traffic flow analysis and bandwidth monitoring, not for collecting performance metrics like CPU/memory usage or setting threshold-based alerts.

D

ICMP is used for network diagnostics like ping and traceroute, not for collecting performance data over time or setting threshold-based alerts.

When would these options actually be correct?

A

A network administrator needs to centralize log messages from multiple devices for security auditing and troubleshooting. In that scenario, syslog is the correct protocol because it is designed for log collection and forwarding.

C

A network administrator wants to analyze traffic patterns, identify top talkers, or troubleshoot bandwidth utilization over time. NetFlow would be the correct choice for flow-level traffic data collection.

D

A question asking which protocol is used to test basic connectivity or measure round-trip time between devices would make ICMP correct, e.g., 'Which protocol does the ping command use?'

Why candidates pick the wrong answer

A

Candidates may confuse syslog with SNMP because both are used for network monitoring, but syslog focuses on event logs while SNMP handles performance data and alerts.

C

Candidates may confuse NetFlow's monitoring capabilities with general performance monitoring, or think it can generate alerts based on traffic thresholds, which is not its primary function.

D

Candidates may confuse ICMP's role in network monitoring (e.g., ping for reachability) with the broader performance data collection and alerting capabilities of SNMP.

127
MCQmedium

A network administrator needs to collect detailed data about network traffic flows, including source/destination IP addresses, ports, and protocols, to analyze bandwidth usage patterns. Which technology should be used?

A.SNMP
B.NetFlow
C.Syslog
D.ICMP
AnswerB

NetFlow, developed by Cisco, is a network protocol used to collect IP traffic information as it enters or exits an interface. It aggregates packets into "flows" based on common characteristics like source/destination IP, ports, protocol, and ToS. This metadata provides deep visibility into network usage, top talkers, application performance, and security threats, making it ideal for detailed traffic flow analysis.

Why this answer

NetFlow is the correct choice because it is specifically designed to collect detailed metadata about network traffic flows, including source and destination IP addresses, ports, protocols, and byte counts. This granular flow-level data enables administrators to analyze bandwidth usage patterns, identify top talkers, and perform capacity planning. Unlike SNMP, which provides aggregate interface statistics, NetFlow exports flow records that contain the exact fields needed for deep traffic analysis.

Exam trap

The N10-009 exam often tests the distinction between SNMP (which provides aggregate interface statistics) and NetFlow (which provides per-flow metadata), and the trap here is that candidates mistakenly choose SNMP because they associate it with bandwidth monitoring, without realizing it lacks the detailed flow-level fields required for the scenario.

Why the other options are wrong

A

SNMP provides device-level statistics (e.g., interface utilization) but does not capture detailed flow data like source/destination IPs, ports, and protocols needed for bandwidth usage pattern analysis.

C

Syslog is used for logging system messages and events, not for collecting detailed network traffic flow data like source/destination IPs, ports, and protocols. It lacks the flow-level granularity needed for bandwidth usage analysis.

D

ICMP is used for diagnostic and error reporting (e.g., ping, traceroute), not for collecting detailed traffic flow data like IP addresses, ports, and protocols.

When would these options actually be correct?

A

A network administrator needs to monitor interface utilization and error rates on routers and switches over time to identify capacity issues. SNMP polling with MIBs would be the correct technology.

C

Syslog would be correct when the question asks for a method to centralize and analyze system logs from network devices, such as for security event monitoring or troubleshooting device errors, not traffic flows.

D

When the question asks for a protocol to test network connectivity or measure round-trip time (e.g., 'Which protocol does ping use?'), ICMP would be correct.

Why candidates pick the wrong answer

A

Candidates may confuse SNMP's monitoring capabilities with flow analysis, assuming it can provide traffic details when it only offers aggregate counters.

C

Candidates may confuse Syslog with NetFlow because both involve network data collection, but Syslog is more familiar for logging and they overlook that it doesn't capture flow-level details.

D

Candidates may confuse ICMP's role in network monitoring (e.g., ping for reachability) with the need for traffic flow analysis, assuming any network tool can provide detailed data.

128
MCQeasy

A network engineer needs to connect two buildings that are 200 meters apart with a 1 Gbps link. The path is outdoors and susceptible to lightning strikes. Which cable type is the most appropriate for this scenario?

A.Cat6a UTP
B.Multimode fiber optic
C.Cat5e UTP
D.Single-mode fiber optic
AnswerB

Multimode fiber, specifically using standards like 1000BASE-SX, is the optimal choice for a 1 Gbps connection over 200 meters. It reliably supports this speed over distances up to 550 meters, easily exceeding the requirement. Crucially, fiber optic cabling is completely immune to electromagnetic interference and lightning strikes, making it ideal for connecting separate buildings and ensuring robust, high-speed data transmission without electrical hazards.

Why this answer

Multimode fiber optic cable is the most appropriate choice because it supports 1 Gbps over distances up to 550 meters (using OM2/OM3 fiber) and is completely immune to electromagnetic interference (EMI) from lightning strikes. Unlike copper cabling, fiber uses light pulses for transmission, so it does not conduct electricity, making it ideal for outdoor runs between buildings where lightning is a risk.

Exam trap

The trap here is that candidates often choose Cat6a UTP because they focus on bandwidth and distance but forget the outdoor lightning risk, assuming that higher-category copper can handle longer distances, when in fact all UTP copper is limited to 100 meters for Ethernet and is conductive.

Why the other options are wrong

A

Cat6a UTP is limited to 100 meters for 1 Gbps and is not suitable for outdoor use due to susceptibility to lightning strikes and lack of protection against environmental interference.

C

Cat5e UTP supports only up to 100 meters for 1 Gbps, but the distance is 200 meters, exceeding its maximum segment length. Additionally, UTP is not suitable for outdoor use in lightning-prone areas as it can conduct electrical surges.

D

Single-mode fiber optic is designed for long-distance links (typically kilometers) and is overkill for a 200-meter run; multimode fiber is more cost-effective for this distance and still provides 1 Gbps.

When would these options actually be correct?

A

A network engineer needs to connect two devices within the same building, less than 100 meters apart, with a 10 Gbps link in a low-interference environment where cost is a primary concern.

C

A network engineer needs to connect two devices within the same building, less than 100 meters apart, for a 1 Gbps link in a low-interference indoor environment. Cat5e UTP would be the most cost-effective and appropriate choice.

D

A network engineer needs to connect two buildings 10 km apart with a 10 Gbps link, and the path is outdoors with lightning risk. Single-mode fiber optic would be correct because it supports longer distances and higher bandwidth than multimode.

Why candidates pick the wrong answer

A

Candidates may assume Cat6a supports higher speeds and distances, or overlook the outdoor and lightning constraints, focusing only on the 1 Gbps requirement.

C

Candidates may mistakenly think Cat5e is sufficient for 1 Gbps over longer distances or overlook the distance limitation, focusing only on the speed requirement. They might also underestimate the risks of outdoor and lightning exposure.

D

Candidates may assume single-mode is always superior to multimode, or they may confuse the distance limitations, thinking single-mode is required for any outdoor fiber run.

129
MCQeasy

A user can ping the default gateway (192.168.1.1) but cannot access the internet (e.g., ping 8.8.8.8 fails). The user's IP is correctly configured as 192.168.1.10/24. What should the technician check next?

A.Check the PC's DNS server settings
B.Verify the subnet mask on the PC
C.Check the router's default route configuration
D.Examine the switch port VLAN assignment
AnswerC

The ability to ping the default gateway confirms local network connectivity between the PC and the router. However, if the router lacks a configured default route (0.0.0.0/0), it will not know where to forward packets destined for networks beyond its directly connected interfaces, such as the internet. Consequently, all traffic intended for external destinations would be dropped by the router, preventing the user from reaching anything outside the local subnet.

Why this answer

Since the user can ping the default gateway (192.168.1.1), Layer 2 and Layer 3 connectivity within the local subnet is working, and the PC's IP configuration is correct. The failure to reach 8.8.8.8 indicates that the router does not have a valid path to external networks, which is typically provided by a default route (0.0.0.0/0). Checking the router's default route configuration is the logical next step because without it, the router cannot forward traffic destined for non-local networks.

Exam trap

The N10-009 exam often tests the distinction between local connectivity (pinging the gateway) and external connectivity (pinging a public IP), where candidates mistakenly jump to DNS or subnet mask issues instead of recognizing the router's lack of a default route as the root cause.

Why the other options are wrong

A

The user can ping the default gateway, indicating Layer 3 connectivity to the router, but cannot reach the internet. This points to a routing issue beyond the local subnet, not DNS, since ping uses IP addresses, not hostnames.

B

The user can ping the default gateway, indicating that the subnet mask is correctly configured for local network communication. A subnet mask issue would prevent pinging the gateway, so it is not the next step.

D

The user can ping the default gateway, indicating Layer 2 and Layer 3 connectivity within the local subnet. A switch port VLAN misconfiguration would typically prevent communication with the default gateway, so it is not the issue here.

When would these options actually be correct?

A

A user can ping the gateway and external IPs (e.g., 8.8.8.8) but cannot browse websites by name (e.g., www.google.com). In that scenario, DNS server settings would be the correct next check.

B

A user cannot ping any device on the local network, including the default gateway, despite having a valid IP address. The technician should verify the subnet mask to ensure it matches the network's subnet.

D

This option would be correct if the user could not ping the default gateway or any other device on the same subnet, suggesting a Layer 2 problem. For example, a question where a user with a static IP cannot communicate with any local host, and the switch port is in the wrong VLAN.

Why candidates pick the wrong answer

A

Candidates often associate internet access problems with DNS, but the question specifies ping to an IP address fails, which bypasses DNS, making this a red herring.

B

Candidates may think that internet access failure is often due to misconfigured subnet masks, but since the gateway is reachable, the subnet mask is likely correct.

D

Candidates may confuse symptoms of VLAN misconfiguration (no connectivity to gateway) with internet access issues, or they may think VLANs affect routing beyond the local network.

130
MCQmedium

An NOC technician observes that the average latency on a critical WAN link has risen sharply. To determine which applications are consuming the most bandwidth and contributing to the latency, which tool should the technician use?

A.A) NetFlow
B.B) SNMP
C.C) Syslog
D.D) Ping
AnswerA

NetFlow is a network protocol developed by Cisco that collects IP traffic information as it enters or exits a network interface. It creates "flow records" based on a set of key fields, including source/destination IP addresses, ports, protocol, and ToS byte. This data allows for detailed analysis of bandwidth consumption by specific applications, users, and conversations, making it ideal for identifying the root cause of latency related to application usage. It provides granular visibility into network traffic patterns and resource utilization.

Why this answer

NetFlow is the correct tool because it provides per-flow traffic analysis, allowing the technician to identify which applications (by protocol and port) are consuming the most bandwidth on the WAN link. Unlike simple bandwidth monitors, NetFlow exports detailed records of source/destination IPs, ports, and byte counts, enabling precise identification of bandwidth-hungry applications contributing to increased latency.

Exam trap

CompTIA often tests the distinction between SNMP (which shows aggregate bandwidth) and NetFlow (which shows per-application bandwidth), leading candidates to mistakenly choose SNMP because they associate it with bandwidth monitoring, even though it cannot identify specific applications.

Why the other options are wrong

B

SNMP is used for monitoring device health and traffic statistics via MIBs, but it does not provide per-application bandwidth usage or detailed flow analysis needed to identify which applications are consuming the most bandwidth.

C

Syslog is used for logging and monitoring system events, not for analyzing bandwidth usage per application. It does not provide traffic flow data needed to identify which applications consume the most bandwidth.

D

Ping only measures reachability and round-trip time; it cannot identify which applications are consuming bandwidth or contributing to latency.

When would these options actually be correct?

B

SNMP would be correct if the question asked for a tool to monitor overall interface utilization, CPU load, or memory usage on network devices, or to collect basic traffic volume counters over time.

C

Syslog would be correct when the question asks for a tool to centralize and analyze log messages from network devices to troubleshoot errors, security events, or configuration changes, such as 'Which tool should be used to collect and review router crash logs?'

D

When the question asks for a tool to verify basic connectivity or measure round-trip latency on a link, Ping is the correct answer.

Why candidates pick the wrong answer

B

Candidates may confuse SNMP's ability to monitor traffic volume with the deeper application-level visibility that NetFlow provides, assuming SNMP can identify specific applications.

C

Candidates may confuse Syslog as a network monitoring tool because it is commonly used alongside other monitoring systems, but it lacks the flow analysis capabilities required for bandwidth usage identification.

D

Candidates may think Ping can diagnose latency issues, but it lacks the application-level visibility needed to identify bandwidth consumption by specific applications.

131
MCQhard

A company wants to ensure that only authorized users can access the internal network by requiring both a password and a one-time code from a mobile app. This is an example of:

A.Two-factor authentication
B.Single sign-on
C.Biometric authentication
D.Multifactor authentication with three factors
AnswerA

Two-factor authentication (2FA) requires a user to present two distinct types of authentication factors to verify their identity. Typically, this involves something the user knows, like a password or PIN, combined with something the user possesses, such as a one-time code generated by a hardware token or sent to a mobile device. This combination significantly enhances security by making it much harder for unauthorized individuals to gain access, even if one factor is compromised, aligning with the need for a password and a code.

Why this answer

Two-factor authentication (2FA) requires exactly two distinct authentication factors from different categories: something you know (password) and something you have (one-time code from a mobile app). This matches the scenario precisely, as the password is a knowledge factor and the mobile app-generated code is a possession factor, satisfying the definition of 2FA.

Exam trap

CompTIA often tests the distinction between two-factor authentication and multifactor authentication, where candidates mistakenly think that using two different types of the same factor (e.g., two passwords) counts as 2FA, but the key is that the factors must come from different categories (knowledge, possession, inherence).

Why the other options are wrong

B

Single sign-on (SSO) allows a user to log in once and access multiple systems without re-entering credentials, but it does not inherently require a one-time code from a mobile app. The question describes two distinct authentication factors (password and one-time code), which is two-factor authentication, not SSO.

C

The question describes a password plus a one-time code from a mobile app, which are two different factors (something you know and something you have), not biometrics.

D

The scenario uses only two factors (password and one-time code), so it is two-factor authentication, not three-factor. Multifactor authentication with three factors would require three distinct categories, such as password, token, and biometric.

When would these options actually be correct?

B

An exam question might ask: 'A company wants users to authenticate once and then access multiple cloud applications without re-entering credentials. Which technology should they implement?' In that scenario, single sign-on (SSO) would be the correct answer.

C

A question that asks: 'A company implements fingerprint scanning to verify user identity before granting access. This is an example of what?' would make biometric authentication correct.

D

If the question described requiring a password, a one-time code from a mobile app, and a fingerprint scan, then it would be multifactor authentication with three factors (knowledge, possession, inherence).

Why candidates pick the wrong answer

B

Candidates may confuse SSO with the convenience of using a mobile app for authentication, or they might think that SSO always involves a second factor, when in fact SSO is about access management across systems, not about the number of authentication factors.

C

Candidates may confuse the one-time code from a mobile app as a biometric factor, or mistakenly think that any authentication method involving a mobile device is biometric.

D

Candidates may confuse 'multifactor' with 'multiple factors' and think that using two factors qualifies as multifactor with three factors, misunderstanding that the number of factors must match the label.

132
MCQhard

A network administrator must monitor network devices using SNMP. The security policy mandates strong encryption for both authentication and data integrity. Which SNMP version and security level should be implemented?

A.SNMPv1
B.SNMPv2c
C.SNMPv3 with noAuthNoPriv
D.SNMPv3 with authPriv
AnswerD

SNMPv3 with authPriv is the correct choice because it provides the highest level of security among the SNMP versions, fulfilling requirements for secure monitoring. This security level ensures both data integrity and confidentiality through strong authentication using HMAC-MD5 or HMAC-SHA algorithms, and robust encryption via DES, 3DES, or AES. This comprehensive protection prevents unauthorized access to sensitive network monitoring data and secures it against eavesdropping or tampering during transit.

Why this answer

SNMPv3 with authPriv is correct because it provides both authentication (to verify the source of messages) and encryption (to ensure data integrity and confidentiality). The security policy mandates strong encryption for both authentication and data integrity, which only the authPriv security level fulfills by using HMAC-SHA/MD5 for authentication and AES/DES for encryption.

Exam trap

The N10-009 exam often tests the misconception that SNMPv3 always provides encryption, but candidates must remember that noAuthNoPriv and authNoPriv are valid security levels that do not meet a 'strong encryption' mandate.

Why the other options are wrong

A

SNMPv1 does not support encryption or authentication, transmitting data in plaintext, which fails to meet the mandate for strong encryption and data integrity.

B

SNMPv2c uses community strings for authentication and does not support encryption, failing to meet the mandate for strong encryption of both authentication and data integrity.

C

SNMPv3 with noAuthNoPriv provides no authentication or encryption, violating the mandate for strong encryption of both authentication and data integrity.

When would these options actually be correct?

A

A question that asks for the simplest SNMP version for basic monitoring on a trusted, isolated network with no security requirements would make SNMPv1 correct.

B

In a scenario where the security policy only requires basic authentication and no encryption, and the network devices do not support SNMPv3, SNMPv2c would be the correct choice due to its simplicity and widespread support.

C

In a scenario where the security policy only requires monitoring without any authentication or privacy, and the network is isolated and trusted, SNMPv3 with noAuthNoPriv would be acceptable to reduce overhead.

Why candidates pick the wrong answer

A

Candidates may mistakenly think SNMPv1 is sufficient for basic monitoring without reading the security requirements, or they may be unfamiliar with SNMPv3's security features.

B

Candidates may be familiar with SNMPv2c from legacy environments and mistakenly believe it offers sufficient security, or they may overlook the specific encryption requirement in the question.

C

Candidates may think SNMPv3 inherently provides security regardless of the security level, overlooking that noAuthNoPriv offers no actual protection.

133
MCQmedium

A technician installs a new wireless access point that requires 25 watts of power using Power over Ethernet (PoE). The existing switch only supports 802.3af (15.4W per port). What is the most likely result?

A.The access point will power on but may not transmit at full power.
B.The access point will not power on.
C.The switch port will be damaged.
D.The access point will power on and function normally.
AnswerB

The access point requires 25W, but the switch port, adhering to 802.3af (PoE) standards, can only supply a maximum of 15.4W. This significant power deficit means the access point will not receive sufficient electrical current to complete its boot sequence and initialize its internal components. Consequently, the device will remain unpowered and completely unresponsive.

Why this answer

The existing switch supports only 802.3af (PoE), which provides a maximum of 15.4 watts per port. The access point requires 25 watts, which exceeds the 802.3af power budget. Since the switch cannot deliver the required power, the access point will not power on.

This is a strict power negotiation failure under IEEE 802.3 standards.

Exam trap

The trap here is that candidates often assume a device will 'work at reduced power' or 'negotiate down' when the power requirement exceeds the standard, but PoE standards enforce a strict power classification and will not power a device that cannot be fully supported.

Why the other options are wrong

A

802.3af (PoE) provides a maximum of 15.4W per port, but the access point requires 25W. The switch cannot supply enough power, so the AP will not power on at all; it will not operate at reduced power.

C

The switch port is designed to handle standard PoE power levels; drawing more than 15.4W from an 802.3af port will not damage the port because the switch detects the power class and will not supply power if the device requests more than the port can provide.

D

The access point requires 25W, but 802.3af provides only 15.4W per port. Insufficient power means the AP will not power on at all, not function normally.

When would these options actually be correct?

A

This option would be correct if the question described a PoE+ (802.3at) switch that can supply up to 30W, but the AP requires 25W and the switch negotiates a lower power class, allowing the AP to power on with limited functionality.

C

If a non-standard PoE injector or switch is used that forces power delivery without proper negotiation, or if a device with a short circuit or overcurrent condition is connected, the port could be damaged. For example, a question about using a passive PoE injector that supplies 24V without negotiation could lead to port damage.

D

If the question stated the switch supports 802.3at (PoE+) or higher, and the AP's power requirement is within that standard's limit (e.g., 25W on 802.3at), then the AP would power on and function normally.

Why candidates pick the wrong answer

A

Candidates may think that PoE devices can operate at lower power levels, similar to how some devices can throttle performance when power is insufficient, but 802.3af simply cannot meet the minimum power requirement for this AP.

C

Candidates may think that exceeding the power rating will cause overheating or electrical damage, similar to plugging a high-wattage appliance into a low-rated outlet, but PoE includes negotiation and protection mechanisms to prevent damage.

D

Candidates may assume that PoE is backward compatible and devices will simply operate at reduced power, or they overlook the specific power requirements of the AP versus the switch's capability.

134
MCQmedium

A company wants to ensure that only authorized devices that comply with security policies (such as updated antivirus and OS patches) are allowed to connect to the internal network. Both wired and wireless connections are used. Which of the following security solutions would best enforce this requirement?

A.VPN
B.Network Access Control (NAC)
C.Access control list (ACL)
D.Intrusion prevention system (IPS)
AnswerB

Network Access Control (NAC) is specifically designed to ensure that only authorized and compliant devices can connect to a network. It performs pre-admission checks, assessing an endpoint's security posture—such as antivirus status, patch levels, and presence of specific software—before granting access. Non-compliant devices can be quarantined, remediated, or denied access entirely, making it ideal for enforcing security policies at the point of connection.

Why this answer

Network Access Control (NAC) is the correct solution because it enforces security policies by inspecting the health and compliance of devices—such as checking for updated antivirus definitions and OS patches—before granting access to the network. NAC can operate on both wired (e.g., 802.1X) and wireless (e.g., WPA2-Enterprise with RADIUS) connections, blocking or quarantining non-compliant devices. This matches the requirement to ensure only authorized, policy-compliant devices connect.

Exam trap

The trap here is that candidates often confuse NAC with VPN or ACL, thinking VPN provides endpoint security or ACLs can enforce policy compliance, but NAC is the only solution that performs dynamic, policy-based admission control based on device health and authorization.

Why the other options are wrong

A

VPN creates encrypted tunnels for remote access but does not enforce endpoint compliance checks (e.g., antivirus status, OS patches) before granting network access. It only secures data in transit, not device authorization.

C

ACLs filter traffic based on IP addresses or ports but cannot assess device compliance (e.g., antivirus status, OS patches) before granting network access.

D

An IPS is designed to detect and block malicious traffic, not to enforce device compliance or control network access based on security posture.

When would these options actually be correct?

A

A company needs to allow remote employees to securely access internal resources over the internet. VPN would be correct when the requirement is encrypted remote connectivity, not device compliance enforcement.

C

An ACL would be correct if the requirement were to restrict traffic between specific network segments (e.g., block all traffic from the guest VLAN to the internal server subnet) based on IP addresses or protocols.

D

A company needs to monitor network traffic in real-time and automatically block malicious activities, such as exploit attempts or malware propagation, without requiring endpoint compliance checks.

Why candidates pick the wrong answer

A

Candidates confuse VPN's role in secure remote access with NAC's device compliance enforcement, assuming VPN can also verify endpoint security posture.

C

Candidates may confuse ACLs with NAC because both can control network access, but ACLs lack the endpoint posture assessment needed for compliance enforcement.

D

Candidates may confuse IPS with NAC because both involve security enforcement, but IPS focuses on threat detection rather than access control based on device health.

135
MCQmedium

A technician connects a user's workstation to a switch port. The cable passes a physical test, and the switch port LED is green, but the workstation cannot establish a network connection. What is the most likely cause?

A.Incorrect VLAN assignment on the switch port
B.Duplex mismatch between the workstation and the switch
C.The workstation has a static IP address in the wrong subnet
D.A faulty cable
AnswerB

A duplex mismatch occurs when one device operates in full-duplex mode while the other operates in half-duplex mode, or vice-versa, on the same link. This configuration error causes severe frame errors, excessive late collisions, and retransmissions, as devices attempt to transmit simultaneously without proper coordination or wait for a clear channel when the other device is transmitting. While the physical link may appear active with a green LED, indicating Layer 1 connectivity, successful Layer 2 communication is severely hampered, leading to extremely poor network performance or complete communication failure. This condition directly prevents successful data exchange despite a seemingly established physical connection.

Why this answer

A duplex mismatch occurs when one side of a link is set to full-duplex and the other to half-duplex, often due to a failed autonegotiation. Even though the cable passes a physical test and the switch port LED is green (indicating link at Layer 1), the mismatch causes excessive collisions and frame errors at Layer 2, preventing successful network communication. The workstation cannot establish a connection because the switch and NIC are not coordinating their transmission/reception timing correctly.

Exam trap

The N10-009 exam often tests duplex mismatch by pairing a green link LED (Layer 1 OK) with a complete lack of connectivity, tricking candidates into thinking the issue must be at Layer 3 (IP addressing) or Layer 2 (VLAN), when the real problem is a Layer 2 duplex negotiation failure that corrupts frames without breaking the physical link.

Why the other options are wrong

A

In this scenario, the switch port LED is green, indicating Layer 1 connectivity is established. Incorrect VLAN assignment would not prevent the link from coming up; the workstation would still get a link light but might not receive DHCP or communicate beyond the VLAN, but the question states 'cannot establish a network connection' which is more consistent with a duplex mismatch causing excessive errors.

C

The workstation cannot establish a network connection despite the switch port LED being green and the cable passing a physical test, indicating Layer 1 is functional. A static IP in the wrong subnet would still allow link-local communication and ARP, but the symptom here is no connection at all, which points to a Layer 2 issue like duplex mismatch.

D

The cable passed a physical test and the switch port LED is green, indicating the cable is functional and the link is established. A faulty cable would likely cause a physical layer issue, not allow the link to come up.

When would these options actually be correct?

A

A technician connects a workstation to a switch port. The cable passes a physical test, the switch port LED is green, but the workstation cannot communicate with any other device on the network, even though it can see its own MAC address in the ARP cache. What is the most likely cause?

C

In a scenario where a workstation has a static IP address and can communicate with some devices but not others, or can ping the gateway but not reach the internet, the most likely cause is an incorrect subnet mask or default gateway. This would be correct when the link is up and basic connectivity exists but routing fails.

D

A technician connects a workstation to a switch port, but the link LED is off or blinking, and a cable tester indicates a fault. In that scenario, a faulty cable is the most likely cause.

Why candidates pick the wrong answer

A

Candidates often associate VLAN misconfiguration with connectivity issues, and the green LED might mislead them into thinking Layer 1 is fine, so they look for Layer 2 problems like VLAN mismatch, overlooking duplex mismatch which also manifests at Layer 2 with a green LED.

C

Candidates often jump to IP configuration issues because network connectivity problems are frequently caused by incorrect IP settings. The green LED and cable test pass, so they assume Layer 1 is fine and look to Layer 3, overlooking that duplex mismatch can cause intermittent or no connectivity despite a link light.

D

Candidates often default to cable issues as the first troubleshooting step, overlooking that a green LED confirms the physical layer is working.

136
MCQeasy

A network administrator wants to ensure that only a specific laptop can connect to a particular switch port. The laptop's MAC address is known. Which security feature should be configured?

A.802.1X
B.Port security
C.DHCP snooping
D.BPDU guard
AnswerB

Port security is a Layer 2 control mechanism implemented on network switches. It enables an administrator to statically configure or dynamically learn specific MAC addresses that are permitted to transmit traffic on a given switch port. By limiting the number of allowed MAC addresses, or by specifying a single static MAC address, port security ensures that only the intended device, such as a particular laptop, can connect and communicate through that port, effectively preventing unauthorized devices from gaining network access.

Why this answer

Port security is the correct feature because it allows the administrator to statically configure the allowed MAC address on a specific switch port. Once configured, the switch will only forward traffic from that MAC address, dropping frames from any other source MAC. This directly fulfills the requirement to restrict access to a single known laptop.

Exam trap

The N10-009 exam often tests the distinction between port security (which controls MAC-level access on a single port) and 802.1X (which controls network access via authentication), leading candidates to mistakenly choose 802.1X because they associate it with 'security' and 'laptop access' without understanding the specific requirement of a static MAC binding.

Why the other options are wrong

A

802.1X is a network access control method that authenticates users or devices via an authentication server (e.g., RADIUS), but it does not restrict a specific switch port to a single known MAC address without additional configuration. The question explicitly asks for a feature that ensures only a specific laptop (by MAC address) can connect to a particular port, which is the function of port security, not 802.1X.

D

BPDU guard is used to protect against bridge loops by disabling ports that receive BPDUs, not to restrict access based on MAC address.

When would these options actually be correct?

A

802.1X would be correct in a scenario where the network administrator needs to authenticate users or devices before granting network access, typically using credentials or certificates, and the goal is to control access at the network edge based on identity rather than a static MAC address. For example: 'A company wants to require all employees to authenticate with their domain credentials before accessing the wired network.'

D

A network administrator wants to prevent unauthorized switches from being connected to access ports, ensuring STP stability. BPDU guard would be configured to disable a port if it receives a BPDU.

Why candidates pick the wrong answer

A

Candidates may confuse 802.1X with MAC-based authentication, as 802.1X can use MAC addresses as a form of identity (MAC authentication bypass), but it is not the simplest or most direct method for restricting a port to a single known MAC address. Port security is the straightforward answer for MAC address filtering on a switch port.

D

Candidates may confuse BPDU guard with port security because both involve protecting switch ports, but BPDU guard addresses loop prevention, not MAC-based access control.

137
MCQmedium

A company wants to enforce network access control such that only authenticated users can connect to the wired network. The authentication server will use RADIUS. Which IEEE standard should be implemented?

A.802.11i
B.802.1X
C.802.3af
D.802.1Q
AnswerB

802.1X provides robust port-based authentication for both wired and wireless networks, acting as a critical component for Network Access Control (NAC). It leverages an authenticator (like a switch or access point) to control network access based on successful authentication by an external server, typically RADIUS. This standard ensures that only authenticated and authorized devices or users can connect to the network, preventing unauthorized access at the network edge.

Why this answer

802.1X is the IEEE standard for port-based network access control (PNAC). It provides a framework for authenticating devices before granting access to a wired or wireless LAN, using an authentication server such as RADIUS. This directly meets the requirement to enforce network access control so that only authenticated users can connect to the wired network.

Exam trap

The trap here is that 802.11i sounds security-related and is often confused with 802.1X because both involve authentication, but 802.11i is strictly for wireless encryption (WPA2) and does not control port-based access on wired networks.

Why the other options are wrong

A

802.11i is a security standard for wireless networks (WPA2), not for wired network access control. The question specifies a wired network, making 802.1X the correct choice for port-based authentication.

C

802.3af is the Power over Ethernet (PoE) standard, which defines how power is delivered over Ethernet cabling. It does not provide network access control or authentication, so it is irrelevant to enforcing NAC with RADIUS.

When would these options actually be correct?

A

This option would be correct if the question asked about securing a wireless LAN (WLAN) with strong encryption and authentication, such as implementing WPA2-Enterprise on a Wi-Fi network.

C

802.3af would be the correct answer if the question asked about a standard for supplying power to devices like IP cameras or wireless access points over Ethernet cables, without needing separate power sources.

Why candidates pick the wrong answer

A

Candidates may confuse 802.11i with 802.1X because both involve authentication and security, but 802.11i is specific to wireless, while the question is about wired networks.

C

Candidates may confuse 802.3af with 802.1X because both are IEEE standards related to networking, and the 'af' suffix might be misremembered as an authentication-related standard.

138
MCQmedium

A network technician is troubleshooting an intermittent link between two switches connected via single-mode fiber. The interface logs show frequent 'link up / link down' events, sometimes several times per hour. The technician has verified that the SFPs are compatible and the fiber cable is within distance specifications. Which of the following is the most likely cause of the issue?

A.Electromagnetic interference (EMI) from nearby power cables
B.Dirty or contaminated fiber connectors
C.Mismatched VLAN configurations on the switches
D.Duplex mismatch between the two switch ports
AnswerB

Contamination on fiber end-faces can attenuate the optical signal, causing intermittent connections. Cleaning the connectors often resolves such issues.

Why this answer

Intermittent link flaps on single-mode fiber, despite compatible SFPs and correct distance, are most often caused by dirty or contaminated fiber connectors. Even microscopic dust or oil on the end face can scatter light, causing signal loss that triggers the switch's optical receiver to lose sync and flap the link. This matches the symptom of frequent 'link up / link down' events without any configuration mismatch.

Exam trap

The trap here is that candidates assume fiber is immune to physical-layer issues and jump to configuration problems like duplex mismatch or EMI, but CompTIA often tests the fact that fiber connectors are the most common source of intermittent link flaps due to contamination.

Why the other options are wrong

A

Single-mode fiber uses light, not electrical signals, so it is immune to electromagnetic interference (EMI). EMI affects copper cabling, not fiber optics.

C

Mismatched VLAN configurations cause connectivity issues for specific VLANs, not intermittent link flaps at the physical layer. The question describes frequent 'link up / link down' events, which are physical-layer problems, not logical configuration mismatches.

D

Duplex mismatch typically causes symptoms like CRC errors, late collisions, or poor performance, not frequent link flaps. The link up/down events described are more consistent with physical layer issues like dirty connectors.

When would these options actually be correct?

A

A question involving intermittent link issues between two switches connected via copper Ethernet (e.g., Cat6a) in an industrial environment with nearby high-voltage power cables or heavy machinery would make EMI the most likely cause.

C

This would be correct in a scenario where two switches are connected but devices in the same VLAN cannot communicate across the link, or when trunk port configuration errors (e.g., allowed VLAN lists) cause traffic to be dropped for certain VLANs without affecting the physical link state.

D

A question describing a link that is up but has high error rates (e.g., CRC errors, runts) and slow throughput, with no link flaps, would point to duplex mismatch. For example, a switch port set to full duplex connected to a device set to half duplex.

Why candidates pick the wrong answer

A

Candidates may confuse fiber with copper cabling or assume EMI can affect any type of cable, not realizing fiber optics are immune to electromagnetic interference.

C

Candidates may confuse VLAN misconfiguration with link issues because both can cause network connectivity problems, and they might not distinguish between physical-layer symptoms (link flaps) and logical-layer symptoms (traffic drops).

D

Candidates often associate any intermittent connectivity issue with duplex mismatch because it is a common cause of performance problems, but they overlook that link flaps specifically indicate a physical layer fault rather than a configuration mismatch.

139
MCQeasy

A user reports that they cannot connect to a file server on the same subnet. The technician checks the IP configuration and sees an IP address of 169.254.5.10. What is the most likely cause?

A.The DHCP server is unreachable
B.The default gateway is misconfigured
C.The DNS server is down
D.The file server is offline
AnswerA

When a client fails to obtain an IP address from a DHCP server, it automatically assigns itself an Automatic Private IP Addressing (APIPA) address from the 169.254.0.0/16 range. This self-assigned address allows for limited local network communication but prevents connectivity to resources requiring a routable IP, such as a file server that might be on the same subnet but requires proper network configuration to be reached reliably. Therefore, an unreachable DHCP server directly leads to APIPA and the inability to connect.

Why this answer

The IP address 169.254.5.10 is an Automatic Private IP Addressing (APIPA) address from the 169.254.0.0/16 range, which Windows assigns when a DHCP client fails to obtain a lease from a DHCP server. Since the user is on the same subnet as the file server, a missing default gateway or DNS server would not prevent local connectivity, but the inability to reach the DHCP server indicates a broader network issue that also prevents the client from obtaining a valid IP address.

Exam trap

The trap here is that candidates often confuse APIPA with a DNS or gateway issue, but APIPA specifically indicates a DHCP failure, and local subnet connectivity does not require a gateway or DNS to function.

Why the other options are wrong

C

A 169.254.x.x address is an Automatic Private IP Addressing (APIPA) address, assigned when DHCP fails. DNS being down would not cause this; it would affect name resolution but not IP address assignment.

D

The user's IP address (169.254.5.10) is an APIPA address, which indicates a failure to obtain an IP from a DHCP server. This occurs regardless of whether the file server is online or offline, so the file server's status is irrelevant to the symptom.

When would these options actually be correct?

C

If a user reports 'cannot connect to a file server by name' but can connect by IP, and the IP configuration shows a valid IP address, then a DNS server issue is the likely cause.

D

In a scenario where a user reports 'cannot connect to a file server' and the technician verifies that the client has a valid IP address (e.g., 192.168.1.10) but cannot ping the file server by name or IP, the most likely cause would be that the file server is offline or its service is stopped.

Why candidates pick the wrong answer

C

Candidates may confuse connectivity issues with name resolution problems, assuming DNS is needed for all network communication, or they may not understand that APIPA addresses indicate DHCP failure, not DNS failure.

D

Candidates may focus on the symptom 'cannot connect to a file server' and assume the file server itself is the problem, without recognizing that the APIPA address indicates a more fundamental network configuration issue.

140
Matchingmedium

Match each network device to its primary function.

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

Concepts
Matches

Forwards packets between different networks based on IP addresses

Forwards frames within the same network based on MAC addresses

Filters traffic based on security rules

Connects wireless clients to a wired network

Why these pairings

The correct matches are: Router → routes between networks, Switch → forwards within a LAN using MAC, Firewall → filters traffic by rules, Access Point → wireless connectivity. Common confusions include mixing router and modem functions, and hub vs switch.

141
MCQhard

A network engineer is troubleshooting connectivity issues between two data center switches that are configured to support jumbo frames with an MTU of 9000. The link is a 10 Gigabit Ethernet fiber connection. Large file transfers fail, but small transfers succeed. What is the most likely cause?

A.A
B.B
C.C
D.D
AnswerC

An intermediate device with a standard MTU will drop large frames, causing jumbo frame traffic to fail.

Why this answer

The most likely cause is that an intermediate device (such as a router or another switch) along the Layer 2 path is not configured for jumbo frames and has a standard MTU of 1500. Since both end switches support an MTU of 9000, large frames are sent but are dropped when they reach the intermediate device that cannot handle them. Small frames (≤1500 bytes) pass through successfully because they fit within the standard MTU.

Exam trap

The trap here is that candidates often assume a physical layer issue (like a bad cable or transceiver) when the symptom is selective failure based on packet size, but the real cause is an MTU mismatch, which is a Layer 2 configuration problem.

Why the other options are wrong

A

Option A is not a valid answer choice in this question; the actual options are not provided, but assuming 'A' refers to a common distractor like 'MTU mismatch', that would be incorrect because both switches are configured for jumbo frames with MTU 9000, so MTU mismatch is not the issue.

B

Option B is not specified, but assuming it refers to a common incorrect cause like 'CRC errors' or 'fiber attenuation', these would not selectively affect large transfers while allowing small ones; jumbo frame issues typically stem from MTU mismatch or switch configuration.

D

Option D is not provided in the question, so it cannot be analyzed. The correct answer is C, which likely refers to a mismatch in MTU settings or jumbo frame configuration across the path, causing large frames to be dropped.

When would these options actually be correct?

A

Option A would be correct in a scenario where one switch is configured for jumbo frames (MTU 9000) and the other is set to the default MTU (1500), causing large frame fragmentation or drops.

B

If the question described intermittent connectivity or errors on a fiber link with both small and large transfers failing, then fiber attenuation or dirty connectors could be the cause, making B correct.

D

In a scenario where a network engineer is troubleshooting intermittent connectivity and finds that disabling jumbo frames resolves the issue, option D (if it were 'Disable jumbo frames on both switches') would be correct to restore connectivity at the cost of performance.

Why candidates pick the wrong answer

A

Candidates often default to 'MTU mismatch' as a common cause of large file transfer failures, without verifying that both devices are consistently configured.

B

Candidates may confuse general physical layer issues with MTU-specific problems, or they might recall that fiber problems can cause packet loss, but fail to recognize that MTU mismatch only impacts large frames.

D

Without the actual text of option D, it's impossible to determine why it might be tempting. Typically, wrong options in such questions might suggest incorrect causes like faulty cables or duplex mismatches, which candidates might choose due to common troubleshooting experience.

142
MCQeasy

Which IPv6 address type is used for one-to-many communication and is similar to an IPv4 multicast address?

A.Multicast
B.Anycast
C.Unicast
D.Broadcast
AnswerA

IPv6 multicast addresses are specifically designed for one-to-many communication, allowing a single packet to be efficiently delivered from a source to multiple specific destinations simultaneously. Nodes join a designated multicast group to receive traffic destined for that group, ensuring that only interested hosts process the data. This mechanism is crucial for applications like streaming media, routing protocol updates, and service discovery, optimizing network bandwidth by avoiding redundant transmissions.

Why this answer

IPv6 multicast addresses (FF00::/8) are designed for one-to-many communication, where a single packet is delivered to multiple interfaces that have joined the multicast group. This directly parallels the behavior of IPv4 multicast addresses (224.0.0.0/4), making option A correct.

Exam trap

The trap here is that candidates confuse anycast with multicast because both involve groups of interfaces, but anycast delivers to only one member (the nearest), while multicast delivers to all members.

Why the other options are wrong

B

Anycast is used for one-to-nearest communication, where multiple hosts share the same address but only the closest one responds, not for one-to-many communication like multicast.

C

Unicast is used for one-to-one communication, not one-to-many. The question specifically asks for an address type similar to IPv4 multicast, which is one-to-many.

D

IPv6 does not have a broadcast address; broadcast functionality is replaced by multicast. The question asks for an IPv6 address type similar to IPv4 multicast, which is multicast in IPv6.

When would these options actually be correct?

B

A question asking 'Which IPv6 address type sends traffic to the nearest node among a group of nodes sharing the same address?' would make anycast the correct answer.

C

A question asking 'Which IPv6 address type is used for one-to-one communication?' would have unicast as the correct answer.

D

In a question about IPv4 addressing, such as 'Which IPv4 address type is used for one-to-all communication on a local network?', broadcast would be the correct answer.

Why candidates pick the wrong answer

B

Candidates may confuse anycast with multicast because both involve multiple destinations, but anycast delivers to only one (the nearest), not many.

C

Candidates may confuse unicast with multicast because both terms sound similar, or they may not fully understand that unicast is one-to-one while multicast is one-to-many.

D

Candidates may confuse IPv4 broadcast with IPv6 multicast because both serve one-to-many communication, but IPv6 eliminates broadcast in favor of multicast.

143
MCQmedium

A security analyst notices a large number of incoming TCP packets to a server with the FIN, PSH, and URG flags set. This pattern is characteristic of which type of network scan?

A.SYN scan
B.Xmas tree scan
C.Null scan
D.ACK scan
AnswerB

An Xmas tree scan is specifically characterized by setting the FIN (finish), PSH (push), and URG (urgent) flags simultaneously within a TCP packet. When a security analyst observes a high volume of incoming TCP packets with this particular flag combination, it is a definitive indicator of an Xmas tree scan in progress. This method attempts to elicit different responses from open versus closed ports, often bypassing simpler stateful firewalls due to its non-standard flag configuration, making it a stealthy reconnaissance technique.

Why this answer

An Xmas tree scan sends TCP packets with the FIN, PSH, and URG flags set (the packet 'lights up' like a Christmas tree). This is a stealth scan technique used to probe open or closed ports based on RFC 793 behavior: closed ports should respond with an RST packet, while open ports may ignore the packet (or respond differently depending on the OS). The pattern described—FIN, PSH, and URG all set—is the definitive signature of an Xmas tree scan.

Exam trap

CompTIA often tests the distinction between Xmas tree, Null, and SYN scans by focusing on the specific flag combinations, so the trap here is confusing the FIN/PSH/URG set (Xmas tree) with a Null scan (no flags) or a SYN scan (only SYN).

Why the other options are wrong

A

A SYN scan sends packets with only the SYN flag set, not the FIN, PSH, and URG flags. The described pattern of FIN, PSH, and URG flags is characteristic of an Xmas tree scan.

C

A null scan sends packets with no flags set (all flags off), whereas the question describes packets with FIN, PSH, and URG flags set, which is characteristic of an Xmas tree scan.

D

ACK scan sends packets with only the ACK flag set, not FIN, PSH, and URG. The question describes a scan with multiple flags set, which is characteristic of an Xmas tree scan.

When would these options actually be correct?

A

A SYN scan would be correct if the question described a scan that sends packets with only the SYN flag set to initiate a TCP handshake and determine open ports based on SYN-ACK responses.

C

A null scan would be the correct answer for a question describing a scan that sends TCP packets with no flags set (all flags zero), used to probe firewall rules or identify open ports based on RFC 793 behavior.

D

An ACK scan would be correct if the question described a scan that sends packets with only the ACK flag set to map firewall rules, as it can determine whether a port is filtered or unfiltered based on RST responses.

Why candidates pick the wrong answer

A

Candidates often confuse different scan types because SYN scans are very common and well-known, leading them to incorrectly associate any unusual flag pattern with a SYN scan.

C

Candidates may confuse null scans with other stealth scans like Xmas tree scans, as both are types of TCP flag scans used to evade detection, but they differ in which flags are set.

D

Candidates may confuse ACK scan with other scan types because they know ACK is used in TCP, and the mention of TCP packets might lead them to think of ACK without considering the specific flag combination.

144
MCQeasy

Which device operates at Layer 1 (Physical) of the OSI model and regenerates electrical signals to extend the distance of a network segment?

A.Switch
B.Router
C.Hub
D.Bridge
AnswerC

A hub is a fundamental Layer 1 device, functioning as a multi-port repeater that operates purely at the physical layer of the OSI model. It receives an incoming electrical signal on one port and regenerates it, broadcasting the signal to all other connected ports without any intelligence regarding data frames or MAC addresses. This action effectively extends the physical range of the network but creates a single, large collision domain for all connected devices.

Why this answer

A hub operates at Layer 1 (Physical) of the OSI model. It receives incoming electrical signals on one port and regenerates (repeats) those signals out to all other ports, effectively extending the physical reach of a network segment. Unlike switches or routers, it performs no frame inspection or forwarding decisions.

Exam trap

CompTIA often tests the distinction between a hub (Layer 1, signal regeneration) and a bridge/switch (Layer 2, frame forwarding), trapping candidates who confuse signal regeneration with MAC-based forwarding.

Why the other options are wrong

A

A switch operates at Layer 2 (Data Link) and uses MAC addresses to forward frames, not at Layer 1. It does not simply regenerate electrical signals; it makes forwarding decisions based on addressing.

B

Routers operate at Layer 3 (Network) and make forwarding decisions based on IP addresses, not by regenerating electrical signals at the physical layer.

D

A bridge operates at Layer 2 (Data Link) and uses MAC addresses to forward frames, not Layer 1 signal regeneration. It does not simply regenerate electrical signals to extend distance.

When would these options actually be correct?

A

A switch would be correct if the question asked: 'Which device connects multiple devices on a LAN, uses MAC addresses to forward frames, and reduces collision domains?'

B

A router would be correct for a question asking: 'Which device connects different networks and forwards packets based on logical addressing?'

D

A bridge would be correct in a question asking: 'Which device connects two network segments and filters traffic based on MAC addresses to reduce collisions?'

Why candidates pick the wrong answer

A

Candidates may confuse a switch with a hub because both connect multiple devices in a network, but they forget that switches operate at Layer 2 and do not merely regenerate signals.

B

Candidates may confuse a router's ability to extend network reach (via routing) with the physical signal regeneration function of a hub.

D

Candidates may confuse bridges with repeaters or hubs because both can extend network segments, but bridges operate at a higher layer and provide filtering.

145
MCQeasy

In a network, a collision domain is a network segment where which of the following is true?

A.A: Only one device can transmit at a time to avoid data collisions
B.B: All devices share the same IP subnet
C.C: Broadcast traffic is confined to that segment
D.D: MAC addresses are resolved to IP addresses
AnswerA

A collision domain is a network segment where all connected devices share the same physical medium, such as an Ethernet hub or a shared coaxial cable. In such an environment, only one device can successfully transmit data at any given moment. If two or more devices attempt to transmit simultaneously, their signals interfere, resulting in a data collision that corrupts the frames and necessitates retransmission. This fundamental limitation defines the boundaries of a collision domain.

Why this answer

In a collision domain, only one device can transmit at a time because if two or more devices transmit simultaneously, their signals collide, corrupting the data. This is a fundamental characteristic of half-duplex Ethernet segments, such as those using hubs or legacy bus topologies, where the medium is shared and CSMA/CD (Carrier Sense Multiple Access with Collision Detection) is used to manage access.

Exam trap

The trap here is that candidates often confuse collision domains with broadcast domains, mistakenly thinking that confining broadcast traffic or sharing an IP subnet defines a collision domain, when in fact collision domains are strictly about physical-layer contention for the medium.

Why the other options are wrong

B

A collision domain is defined by the possibility of frame collisions when multiple devices transmit simultaneously, not by IP subnet membership. Devices on different IP subnets can still be in the same collision domain if connected via a hub or repeater.

C

A collision domain is defined by the possibility of data collisions when multiple devices transmit simultaneously; broadcast confinement describes a broadcast domain, not a collision domain.

D

In a collision domain, the key issue is data collisions from simultaneous transmissions, not MAC-to-IP resolution. MAC-to-IP resolution is performed by ARP, which is unrelated to collision domains.

When would these options actually be correct?

B

This option would be correct for a question asking: 'What is a characteristic of devices in the same broadcast domain?' or 'In a VLAN, which of the following is true?' where all devices share the same IP subnet.

C

This option would be correct for a question asking: 'In a network, a broadcast domain is a network segment where which of the following is true?'

D

This option would be correct for a question like: 'Which protocol resolves MAC addresses to IP addresses?' or 'What is the function of ARP in a network?'

Why candidates pick the wrong answer

B

Candidates often confuse collision domains with broadcast domains or VLANs, mistakenly thinking that sharing an IP subnet implies sharing a collision domain, when in fact collision domains are layer 1 constructs.

C

Candidates often confuse collision domains with broadcast domains because both involve segmentation, and the term 'confined' seems similar to limiting collisions.

D

Candidates may confuse collision domains with address resolution concepts, thinking that resolving addresses is necessary to avoid collisions, or they may misremember the definition of a collision domain.

146
MCQeasy

Which of the following uniquely identifies a hardware network interface on a device?

A.MAC address
B.IP address
C.Subnet mask
D.Default gateway
AnswerA

A MAC address is a 48-bit hardware address assigned to each network interface card (NIC) for local network communications.

Why this answer

A MAC (Media Access Control) address is a hardware-embedded, globally unique identifier assigned to a network interface controller (NIC) by the manufacturer. It operates at Layer 2 (Data Link Layer) of the OSI model and is used for local network communication, ensuring that no two devices on the same broadcast domain have the same MAC address.

Exam trap

The trap here is that candidates often confuse the MAC address with the IP address, thinking the IP address is the hardware identifier, but CompTIA tests that the MAC address is the only Layer 2 permanent identifier, while IP addresses are logical and can be reassigned via DHCP or static configuration.

Why the other options are wrong

B

An IP address identifies a device on a network layer, not the hardware interface itself, and can change dynamically or be reassigned.

C

A subnet mask defines the network and host portions of an IP address, but it does not uniquely identify a hardware network interface; it is a logical parameter used for routing.

D

A default gateway is a router's IP address used for traffic outside the local subnet, not a unique identifier for a hardware network interface.

When would these options actually be correct?

B

When a question asks 'Which of the following identifies a device on a network for routing purposes?' or 'Which address is used for communication between networks?', IP address would be correct.

C

In a question asking 'Which value determines the network portion of an IP address?', the subnet mask would be the correct answer.

D

In a question asking 'Which IP address should be configured as the next-hop for traffic destined to the internet?', the default gateway would be the correct answer.

Why candidates pick the wrong answer

B

Candidates often confuse network-layer identification (IP) with hardware-layer identification (MAC), especially when thinking about 'identifying a device' on a network.

C

Candidates may confuse subnet masks with MAC addresses because both are associated with network configuration, or they might think the subnet mask is tied to the interface in some unique way.

D

Candidates may confuse the default gateway as a network identifier because it is a critical network setting often associated with a specific interface, but it does not uniquely identify the interface itself.

147
MCQmedium

A technician is troubleshooting a connectivity issue. A client can successfully ping its default gateway but cannot ping a server located on a different subnet. The router's routing table shows a valid route to the server's network. What should the technician check NEXT?

A.The ACL applied to the router interface
B.The DNS resolution for the server
C.The ARP cache on the client
D.The duplex settings on the client NIC
AnswerA

An Access Control List (ACL) applied to a router interface inspects packets *after* the routing table determines the next hop. If the client can ping its default gateway, routing to the local subnet is functional. However, a specific ACL rule could be blocking traffic destined for the server's IP address or port, while still permitting ICMP to the gateway or other general traffic, leading to selective connectivity issues. This scenario perfectly explains why some destinations are reachable and others are not, despite a valid route.

Why this answer

Since the client can ping its default gateway but not a server on a different subnet, Layer 3 routing is working (the router has a valid route). The most likely cause is an ACL on the router interface that is blocking traffic to the server's network. ACLs filter traffic based on source/destination IP, protocol, or port, and can permit or deny packets even when a valid route exists.

Exam trap

CompTIA often tests the misconception that a valid route in the routing table guarantees end-to-end connectivity, but ACLs can override routing decisions by filtering traffic at the interface level.

Why the other options are wrong

B

The client can ping the default gateway, indicating Layer 3 connectivity to the local subnet, and the router has a valid route to the server's network. DNS resolution is irrelevant because the issue is with IP connectivity, not name resolution.

C

The client can ping its default gateway, indicating Layer 3 connectivity to the local subnet. Since the router has a valid route to the server's network, the issue is likely at the router's outbound interface, such as an ACL blocking traffic, not the client's ARP cache.

D

The client can ping its default gateway successfully, indicating Layer 2 connectivity is functional. Duplex mismatch typically causes packet loss or poor performance, not a complete inability to reach a different subnet when the gateway is reachable.

When would these options actually be correct?

B

A client can ping the server by IP address but not by hostname. In this scenario, DNS resolution is the likely cause, and checking DNS settings would be the next step.

C

A technician would check the ARP cache on the client when the client cannot ping its default gateway or any other host on the same subnet, suggesting a missing or incorrect MAC address resolution for the gateway.

D

A technician would check duplex settings when a client experiences slow or intermittent connectivity, especially after hardware changes, and link errors are observed on the NIC or switch interface.

Why candidates pick the wrong answer

B

Candidates may confuse connectivity issues with name resolution problems, assuming that ping failures are often due to DNS when the real issue is at the network layer.

C

Candidates may think ARP is needed for cross-subnet communication, but ARP only resolves MAC addresses for hosts on the same subnet; the client already has the gateway's MAC to send packets off-subnet.

D

Candidates may confuse general connectivity issues with physical layer problems, assuming duplex mismatch can cause total loss of connectivity beyond the local subnet.

148
MCQhard

A network administrator needs to ensure high availability for a critical server that has two network interfaces connected to two different switches. Which configuration should be implemented to provide failover and load balancing at the network layer?

A.Link aggregation (LACP)
B.Virtual IP (VRRP/HSRP)
C.Spanning Tree Protocol (STP)
D.Port mirroring
AnswerA

Correct. LACP combines multiple links into one logical link, providing both redundancy and load balancing at Layer 2, which is appropriate for a server with two NICs connected to separate switches.

Why this answer

Link Aggregation (LACP) allows multiple physical network interfaces to be combined into a single logical link, providing both failover and load balancing at Layer 2. In this scenario, the server's two NICs are connected to two different switches; LACP can be configured across the two switches (if they support Multi-chassis Link Aggregation) or the NICs can be set up in an active/standby team for failover. This satisfies the requirement for high availability and load balancing at the network layer (Layer 2/3 boundary).

Virtual IP protocols like VRRP/HSRP are designed for gateway redundancy, not for server NIC failover.

Exam trap

Candidates often confuse Layer 2 link aggregation (LACP) with Layer 3 first-hop redundancy protocols (VRRP/HSRP). While VRRP/HSRP provide gateway failover, they are not designed for server NIC teaming. The server scenario requires a solution that operates at the interface level, making LACP the correct choice.

Why the other options are wrong

C

STP prevents loops at Layer 2, not failover or load balancing at Layer 3. It does not provide IP-level redundancy for a server with multiple interfaces.

D

Port mirroring is used for traffic monitoring and analysis, not for failover or load balancing. It duplicates packets from one port to another for inspection, but does not provide high availability or distribute traffic across interfaces.

When would these options actually be correct?

C

In a switched network with redundant paths, STP is correct when the question asks for preventing broadcast storms and MAC table instability due to loops, without requiring Layer 3 redundancy.

D

A network administrator needs to capture and analyze traffic from a critical server for troubleshooting or security monitoring. Port mirroring would be the correct answer when the question asks about duplicating traffic to a monitoring device without affecting the live network.

Why candidates pick the wrong answer

C

Candidates confuse loop prevention with failover, thinking STP's path redundancy also provides IP failover, but STP operates only at Layer 2 and does not handle IP address failover.

D

Candidates may confuse port mirroring with link aggregation or failover mechanisms, thinking that duplicating traffic could somehow provide redundancy or load distribution, but it only copies packets for observation.

149
MCQmedium

A network administrator wants to collect logs from multiple routers and switches to a central server for analysis. Which protocol should be configured on the devices to send logs to the server?

A.SNMP
B.Syslog
C.NetFlow
D.TFTP
AnswerB

Syslog is a standard protocol specifically designed for sending system log or event messages from network devices to a central server. Routers, switches, and other network components generate various operational messages, security alerts, and error notifications. By using Syslog, administrators can consolidate these diverse messages from multiple sources, enabling centralized log storage, analysis, and monitoring for efficient troubleshooting, security auditing, and compliance reporting.

Why this answer

Syslog (RFC 5424) is the standard protocol for sending event messages (logs) from network devices like routers and switches to a central log server. It uses UDP port 514 by default (or TCP 6514 for reliable delivery) and allows administrators to collect, store, and analyze system messages from multiple devices in one location.

Exam trap

The N10-009 exam often tests the distinction between SNMP traps (event alerts) and syslog (continuous log streaming), leading candidates to mistakenly choose SNMP because they think 'traps' are the same as sending logs.

Why the other options are wrong

A

SNMP is used for monitoring and managing network devices by polling or receiving traps, but it is not designed to collect and forward detailed log messages to a central server; syslog is the standard protocol for log collection.

C

NetFlow is designed for network traffic flow analysis and accounting, not for sending event logs from devices to a central server. It collects metadata about IP traffic flows, not system or event messages.

D

TFTP is a file transfer protocol used for transferring configuration files or firmware images, not for streaming log messages. It lacks the necessary mechanisms for reliable, timestamped log delivery.

When would these options actually be correct?

A

A network administrator needs to monitor device health metrics like CPU load and interface errors from routers and switches. Which protocol should be configured to allow a central server to poll these metrics?

C

A network administrator wants to monitor bandwidth usage and traffic patterns across the network to identify top talkers or detect anomalies. Which protocol should be configured on routers and switches to export traffic flow data to a collector?

D

A network administrator needs to back up router and switch configuration files to a central server. Which protocol should be used to transfer these files?

Why candidates pick the wrong answer

A

Candidates may confuse SNMP traps (which can send alerts) with syslog's log forwarding, or think SNMP's management capabilities include log collection.

C

Candidates may confuse NetFlow with syslog because both involve sending data to a central server, but NetFlow focuses on traffic statistics rather than log messages.

D

Candidates may confuse TFTP with syslog because both are UDP-based and used in network management, but TFTP is for file transfer, not log streaming.

150
MCQmedium

A company is deploying a wireless network in an office where employees move between floors. They want clients to authenticate once and maintain connectivity without re-authenticating when roaming between access points (APs). Which IEEE wireless standard provides this fast roaming capability?

A.802.11r
B.802.11i
C.802.11e
D.802.11n
AnswerA

IEEE 802.11r, also known as Fast BSS Transition (FT), significantly improves roaming performance for wireless clients moving between access points within the same network. It achieves this by allowing the client and the new access point to pre-authenticate and pre-establish security keys, thereby minimizing the re-authentication delay during a handoff. This rapid key exchange process ensures a near-seamless transition, crucial for latency-sensitive applications like Voice over IP.

Why this answer

802.11r, also known as Fast BSS Transition (FT), enables clients to roam between access points without re-authenticating at each new AP. It achieves this by using a cached Pairwise Master Key (PMK) and a four-way handshake that is optimized to reduce the time required for reassociation, typically completing in under 50 milliseconds. This ensures seamless connectivity for mobile users moving between floors.

Exam trap

The N10-009 exam often tests the distinction between 802.11i (security) and 802.11r (fast roaming), so the trap here is confusing the authentication protocol with the roaming optimization standard, leading candidates to pick 802.11i because it deals with keys and handshakes.

Why the other options are wrong

B

802.11i defines security standards (WPA2) for wireless networks, not fast roaming. The question specifically asks for fast roaming capability, which is provided by 802.11r.

C

802.11e defines Quality of Service (QoS) enhancements for wireless networks, not fast roaming or authentication. It does not address the requirement of maintaining connectivity without re-authenticating when roaming between APs.

D

802.11n is a high-throughput standard that increases data rates using MIMO and channel bonding, but it does not provide fast roaming or authentication caching. The question specifically asks for fast roaming capability, which is provided by 802.11r.

When would these options actually be correct?

B

A company wants to ensure secure wireless communication using strong encryption and authentication. Which IEEE standard defines security enhancements for wireless LANs?

C

802.11e would be the correct answer for a question asking which standard provides QoS support for time-sensitive applications like VoIP or video streaming over Wi-Fi, ensuring prioritization of traffic.

D

A company needs to upgrade their wireless network to support higher data rates for streaming video in a large conference room. Which IEEE standard should be used to achieve higher throughput?

Why candidates pick the wrong answer

B

Candidates may confuse 802.11i with 802.11r because both are related to authentication, but 802.11i focuses on security, not roaming speed.

C

Candidates may confuse 802.11e with 802.11r because both are amendments to the 802.11 standard that improve performance, but they focus on different aspects: QoS vs. fast roaming.

D

Candidates may confuse 802.11n with 802.11r because both are wireless standards, and 'n' is commonly associated with newer features, leading them to incorrectly assume it includes roaming improvements.

Page 1

Page 2 of 7

Page 3

All pages