Courseiva

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

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

Page 3

Page 4 of 7

Page 5
226
MCQmedium

A network administrator wants to be alerted immediately when any interface on a core router goes down. The administrator has already configured SNMP community strings. Which additional configuration is necessary to receive these alerts?

A.A) Configure the router to send SNMP traps to the NMS
B.B) Perform an SNMP walk of the interface OIDs
C.C) Use SNMP get to retrieve interface status periodically
D.D) Configure SNMP set to change interface parameters
AnswerA

Configuring a router to send SNMP traps to the Network Management System (NMS) is the correct method for receiving immediate alerts. SNMP traps are unsolicited notification messages sent by the network device (agent) to the NMS (manager) when a significant event, such as an interface going down, occurs. This push-based mechanism ensures real-time notification without requiring the NMS to constantly poll the device, making it highly efficient for critical event monitoring.

Why this answer

SNMP traps are unsolicited notifications sent from the managed device (the router) to the Network Management Station (NMS) when a specific event occurs, such as an interface going down. Since the administrator wants immediate alerts without polling, configuring the router to send SNMP traps to the NMS is the correct approach. The SNMP community strings are already set, so the missing piece is the trap destination and enabling trap generation for interface state changes.

Exam trap

CompTIA often tests the distinction between polling (SNMP get/walk) and event-driven notifications (traps), and candidates mistakenly choose periodic polling (Option C) thinking it provides 'immediate' alerts, not realizing that polling introduces latency and is not truly immediate.

Why the other options are wrong

B

Performing an SNMP walk retrieves all OID values from the router, but it does not configure the router to send unsolicited alerts. The administrator needs the router to proactively send notifications when an interface goes down, which requires configuring SNMP traps, not polling.

C

SNMP get retrieves data on demand, not automatically. The administrator wants immediate alerts when an interface goes down, which requires the router to proactively send traps, not periodic polling.

D

SNMP set is used to modify configuration parameters on a device, not to receive alerts. The question asks for receiving immediate notifications when an interface goes down, which requires traps, not set operations.

When would these options actually be correct?

B

This option would be correct if the question asked: 'A network administrator wants to audit all configurable parameters on a router to ensure no unauthorized changes have been made. Which SNMP operation should be used?' In that case, an SNMP walk would retrieve the entire MIB tree for review.

C

A network administrator needs to monitor interface utilization trends over time. By using SNMP get to periodically retrieve interface OIDs, the NMS can collect historical data for analysis and reporting.

D

In a scenario where a network administrator needs to remotely disable an interface on a router via SNMP to mitigate a security incident, configuring SNMP set would be necessary to change the interface status.

Why candidates pick the wrong answer

B

Candidates may confuse the act of monitoring (polling) with receiving alerts (traps). They might think that walking the interface OIDs will somehow trigger notifications, not realizing that traps require explicit configuration on the agent.

C

Candidates may confuse proactive alerting (traps) with reactive monitoring (polling). They might think that frequent polling can provide near-real-time alerts, but it cannot guarantee immediate notification and wastes bandwidth.

D

Candidates may confuse SNMP set with SNMP trap configuration, thinking that setting parameters is part of alert configuration, or they may not clearly distinguish between SNMP operations (get, set, trap) and their purposes.

227
MCQmedium

A small business uses a wireless network for employees and guests. The owner wants to ensure that guest devices cannot access internal resources such as file servers and printers. Which network security technique should be implemented?

A.VLAN segmentation with separate SSID for guests
B.MAC address filtering
C.WPA2 encryption
D.Disabling SSID broadcast
AnswerA

Implementing VLAN segmentation with a dedicated SSID for guests effectively isolates guest traffic from the internal employee network at Layer 2. This separation, often combined with firewall rules or Access Control Lists (ACLs) on the router or Layer 3 switch, prevents guest devices from accessing sensitive internal resources while still providing them internet connectivity. This robust security measure ensures that potential compromises on guest devices do not impact the business's operational network.

Why this answer

VLAN segmentation with a separate SSID for guests is the correct approach because it creates a logical network boundary that isolates guest traffic from internal resources. By assigning the guest SSID to a distinct VLAN, the network can enforce access control lists (ACLs) at the Layer 3 switch or firewall, preventing guest devices from reaching file servers, printers, or other internal subnets while still allowing internet access.

Exam trap

The trap here is that candidates often confuse encryption (WPA2) with network segmentation, assuming that securing the wireless link inherently protects internal resources, when in fact encryption only protects data in transit and does not control east-west traffic between devices on the same SSID.

Why the other options are wrong

B

MAC address filtering controls which devices can connect based on hardware addresses, but it does not prevent guest devices from accessing internal resources once connected; it also fails to isolate traffic between guest and internal networks.

C

WPA2 encryption secures wireless communication but does not prevent guest devices from accessing internal resources; it only protects data in transit.

When would these options actually be correct?

B

An exam question might ask: 'A company wants to prevent unauthorized devices from connecting to its Wi-Fi network by allowing only pre-approved devices. Which technique should be used?' In that context, MAC address filtering would be correct.

C

A question asking which security method prevents unauthorized wireless access to the network, with no mention of internal resource isolation, would make WPA2 encryption the correct answer.

Why candidates pick the wrong answer

B

Candidates may think MAC filtering provides strong access control, but they overlook that it does not segment network traffic and is easily bypassed by spoofing MAC addresses.

C

Candidates may confuse encryption with access control, thinking that encrypting the network also blocks internal resource access.

228
MCQmedium

A network engineer is designing a new switched network and needs to ensure that broadcast traffic from one department does not reach another department's workstations. The engineer plans to use VLANs. Which of the following must be configured on the switches to isolate broadcast domains as intended?

A.Configure all switch ports as trunk ports and use VLAN 1 for all departments.
B.Assign each department's workstations to a unique VLAN and configure their switch ports as access ports in that VLAN.
C.Place all workstations in the same VLAN and use a firewall to filter broadcast traffic between departments.
D.Configure each switch port as a trunk and use a different native VLAN for each department.
AnswerB

Assigning each department to a unique VLAN logically segments the network, creating separate broadcast domains for each department. Configuring switch ports as access ports ensures that each workstation's traffic is confined to its assigned VLAN, preventing direct Layer 2 communication and broadcast propagation between departments. This method effectively isolates departmental traffic, enhancing security, improving network performance, and reducing the potential for broadcast storms.

Why this answer

VLANs segment a switched network into separate broadcast domains at Layer 2. By assigning each department's workstations to a unique VLAN and configuring their switch ports as access ports in that VLAN, broadcast traffic from one VLAN is confined to that VLAN and cannot reach workstations in another VLAN. This achieves the isolation required without additional filtering devices.

Exam trap

The trap here is that candidates may think a firewall can filter Layer 2 broadcast traffic within the same VLAN, but firewalls operate at Layer 3 and above, so they cannot prevent broadcasts from flooding all ports in a single VLAN.

Why the other options are wrong

A

Configuring all switch ports as trunk ports and using VLAN 1 for all departments does not isolate broadcast domains; VLAN 1 is the default VLAN and all ports would still be in the same broadcast domain.

C

VLANs operate at Layer 2, and broadcast traffic is confined to the VLAN. A firewall filters at Layer 3 or above, so it cannot prevent Layer 2 broadcasts from reaching other departments if they are in the same VLAN.

D

Configuring each switch port as a trunk with a different native VLAN for each department does not isolate broadcast domains; trunk ports carry multiple VLANs and native VLANs are used for untagged traffic, not for separating broadcast domains. Broadcast isolation requires access ports assigned to unique VLANs.

When would these options actually be correct?

A

This option would be correct if the question asked for a scenario where all devices need to be in the same broadcast domain (e.g., a flat network) and trunk ports are needed to carry multiple VLANs over a single link, but VLAN 1 is used as the native VLAN for management traffic.

C

In a scenario where all workstations must be in the same broadcast domain (e.g., for legacy application discovery) but broadcast storms must be controlled, a firewall could be used to filter broadcast traffic at Layer 3 after routing, though this is inefficient and rarely recommended.

D

In a scenario where switches are connected via trunk links and each department's VLAN must be carried across multiple switches, configuring trunk ports with different native VLANs per department could be correct if the goal is to prevent VLAN hopping or to ensure untagged traffic on each trunk is associated with a specific VLAN.

Why candidates pick the wrong answer

A

Candidates may think trunk ports are necessary for VLANs and that VLAN 1 is a special VLAN, but they overlook that trunk ports carry multiple VLANs and VLAN 1 is the default, not isolating traffic.

C

Candidates may think firewalls can filter any traffic type, including broadcasts, and overlook that broadcasts are Layer 2 and not typically routed or filtered by firewalls.

D

Candidates may mistakenly think that using different native VLANs on trunk ports can isolate broadcast domains, confusing native VLAN assignment with VLAN membership, or they may overcomplicate the solution by applying trunk configurations where access ports are sufficient.

229
MCQmedium

A client and server are establishing a TCP connection. The client sends a SYN segment to the server. The server responds with a SYN-ACK segment. What is the next segment in the handshake?

A.ACK
B.RST
C.FIN
D.SYN
AnswerA

This is the third and final step of the TCP three-way handshake. After the client sends a SYN and the server responds with a SYN-ACK, the client must send an ACK segment. This final acknowledgment confirms the server's SYN-ACK, successfully establishing a full-duplex connection and making it ready for reliable data transfer. The ACK segment carries no data but signifies the completion of the connection setup.

Why this answer

The TCP three-way handshake requires the client to acknowledge the server's SYN-ACK by sending an ACK segment. This completes the handshake, establishing a full-duplex connection with synchronized sequence numbers. Without this final ACK, the server remains in a half-open state, unable to begin data transmission.

Exam trap

The N10-009 exam often tests the misconception that the handshake ends after the SYN-ACK, or that a FIN or RST could be used to complete the handshake, when in fact the final ACK is mandatory to transition the server's state from SYN-RECEIVED to ESTABLISHED.

Why the other options are wrong

B

In a TCP three-way handshake, after the server sends SYN-ACK, the client must send an ACK to complete the connection. RST is used to reset a connection, not to continue the handshake.

C

The TCP three-way handshake requires an ACK from the client after receiving SYN-ACK; FIN is used to terminate a connection, not to establish it.

D

In the TCP three-way handshake, after the server sends SYN-ACK, the client must send an ACK to complete the connection. Sending a SYN again would be redundant and violate the handshake sequence.

When would these options actually be correct?

B

A question asks: 'After a client sends a SYN to a closed port, the server responds with an RST. What is the next segment?' In that case, the server sends RST, not SYN-ACK, and the client does not send anything further.

C

In a question about TCP connection termination, after the server sends a FIN segment, the client would respond with an ACK (or the server might send FIN after receiving a FIN from the client).

D

A question asking about the first step of the TCP handshake: 'What does a client send to initiate a connection?' would have SYN as the correct answer.

Why candidates pick the wrong answer

B

Candidates may confuse RST with ACK or think that a reset is part of the normal handshake, especially if they recall that RST can be used to reject a connection attempt.

C

Candidates may confuse the connection establishment handshake with the termination handshake, where FIN is a key segment.

D

Candidates may confuse the handshake steps or think that the client needs to send another SYN to confirm, not realizing that the SYN-ACK already acknowledges the client's SYN.

230
MCQmedium

A network administrator needs to identify which hosts are generating the most traffic on the network and what types of traffic (e.g., HTTP, FTP). Which monitoring technology should be deployed?

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

Correct. NetFlow collects detailed flow data, allowing identification of top talkers, applications, and traffic patterns.

Why this answer

NetFlow is the correct choice because it provides detailed visibility into network traffic flows, including source/destination IPs, ports, protocols, and application-level information (e.g., HTTP, FTP). Unlike SNMP, which only gives aggregate interface statistics, or Syslog, which logs device events, NetFlow captures per-flow metadata that directly answers the question of which hosts are generating the most traffic and what types of traffic they are using.

Exam trap

The trap here is that candidates often confuse SNMP's ability to show interface utilization with the need to identify specific hosts and application types, leading them to pick SNMP when NetFlow is required for per-flow granularity.

Why the other options are wrong

A

SNMP is used for monitoring device health and status (e.g., CPU, memory, interface errors), not for identifying which hosts generate the most traffic or the types of traffic (e.g., HTTP, FTP). It lacks the flow-level detail required for traffic analysis.

C

Syslog is used for logging system events and messages, not for analyzing traffic volume or types like HTTP/FTP. It does not provide per-flow traffic statistics.

D

ICMP is used for network diagnostics (e.g., ping, traceroute) and cannot identify traffic volume or application types like HTTP or FTP.

When would these options actually be correct?

A

SNMP would be correct if the question asked: 'Which technology should be used to monitor the CPU utilization and interface errors on network devices?' or 'Which protocol is commonly used to collect performance metrics from routers and switches?'

C

A network administrator needs to centralize and analyze system logs from routers, switches, and servers for security auditing or troubleshooting. Syslog would be the correct choice for collecting and forwarding log messages.

D

When the question asks for a tool to test basic connectivity or measure round-trip time between hosts, ICMP (e.g., ping) would be correct.

Why candidates pick the wrong answer

A

Candidates often associate SNMP with network monitoring in general, not realizing it provides aggregate statistics rather than per-flow traffic details needed to identify top talkers and application types.

C

Candidates may confuse Syslog with monitoring tools because it is commonly used for network device monitoring, but it lacks traffic flow analysis capabilities.

D

Candidates may confuse ICMP with a monitoring tool because it is commonly used to check if hosts are reachable, but it lacks traffic analysis capabilities.

231
MCQeasy

A small office uses a wireless router that provides both wired and wireless connectivity. The router's LAN IP is 192.168.1.1. A new printer with a static IP of 192.168.1.50 cannot be reached from a laptop obtaining an IP via DHCP. The laptop's IP is 192.168.1.100. Which of the following is the most likely cause?

A.The printer is on a different VLAN
B.The subnet mask is incorrect
C.The default gateway is misconfigured
D.The DHCP scope is exhausted
AnswerB

If the printer is configured with a static subnet mask that is not /24 (e.g., /28 or /25), it will calculate that the laptop's IP is outside its local subnet. It will then try to send traffic to the default gateway instead of directly to the laptop, and if the gateway does not forward it (or the printer's gateway is wrong), communication fails.

Why this answer

The laptop obtains an IP address via DHCP, which typically assigns a subnet mask of 255.255.255.0 for a /24 network. If the printer has a static IP of 192.168.1.50 but is configured with an incorrect subnet mask (e.g., 255.255.255.252), the printer may believe it is on a different subnet than the laptop (192.168.1.100). This prevents the laptop from reaching the printer because the printer will not respond to ARP requests or will send traffic to its default gateway instead of directly to the laptop.

Exam trap

The N10-009 exam often tests the misconception that a misconfigured default gateway is the cause of local subnet communication failures, but the trap here is that the default gateway is irrelevant for same-subnet traffic; the real issue is the subnet mask, which determines whether the destination is considered local or remote.

Why the other options are wrong

A

The question states the router's LAN IP is 192.168.1.1 and the laptop and printer are on the same subnet (192.168.1.0/24). There is no mention of VLANs or a managed switch that would separate them into different VLANs, so VLAN misconfiguration is unlikely.

C

The default gateway is used for traffic destined outside the local subnet. Since both the laptop (192.168.1.100) and printer (192.168.1.50) are on the same subnet (assuming a /24 mask), the laptop does not need a gateway to reach the printer. A misconfigured gateway would not prevent local communication.

D

The DHCP scope is exhausted would prevent the laptop from obtaining an IP address, but the laptop already has IP 192.168.1.100, indicating DHCP is working. The issue is connectivity to a static IP printer, not IP address availability.

When would these options actually be correct?

A

A question where devices on the same physical network but with different VLAN assignments cannot communicate, e.g., a printer on VLAN 10 and a laptop on VLAN 20 with no inter-VLAN routing configured.

C

A question where devices are on different subnets and need to communicate through a router. For example: 'A workstation with IP 192.168.1.10 cannot reach a server at 10.0.0.5. The workstation can ping its own gateway.

Which is the most likely cause?'

D

A question where clients cannot obtain IP addresses and receive APIPA addresses (169.254.x.x) or fail to get an IP, with the DHCP server showing no available leases, would make DHCP scope exhaustion the correct answer.

Why candidates pick the wrong answer

A

Candidates may think that any connectivity issue between devices on the same router could be due to VLAN segmentation, especially if they have experience with managed networks where VLANs are common.

C

Candidates often associate connectivity issues with gateway misconfiguration, not realizing that local subnet communication does not require a gateway. They may overlook that the problem is within the same subnet.

D

Candidates may confuse IP assignment issues with connectivity problems, assuming that if a device cannot be reached, it must be due to DHCP exhaustion, especially when DHCP is involved in the scenario.

232
MCQeasy

Which of the following describes a unicast transmission?

A.One-to-one communication
B.One-to-many communication
C.One-to-all communication
D.Many-to-many communication
AnswerA

A unicast transmission establishes a direct, point-to-point communication channel between a single sending host and a single, specifically identified receiving host. Data packets are addressed to the unique network address (e.g., IP or MAC) of the intended destination, ensuring that only that particular device processes the transmitted information. This method is highly efficient for dedicated data exchange, such as web browsing, file transfers, or secure shell sessions, as network resources are not consumed by unintended recipients.

Why this answer

Unicast transmission is defined as one-to-one communication where a single source sends data to a single destination. In IPv4 networking, this is the standard method for most client-server interactions, such as a host sending an HTTP request to a web server. The destination MAC address in the Ethernet frame is the unique address of the target device, ensuring only that device processes the frame.

Exam trap

The trap here is that candidates often confuse unicast with multicast because both involve a single source, but they forget that unicast is strictly one-to-one, while multicast is one-to-many to a subscribed group.

Why the other options are wrong

B

Unicast transmission is defined as one-to-one communication, not one-to-many. One-to-many communication is multicast, where data is sent from one source to a specific group of recipients.

C

Unicast transmission is defined as one-to-one communication, not one-to-all. One-to-all communication is broadcast, where a single sender transmits to all devices on the network.

D

Unicast transmission is defined as one-to-one communication, not many-to-many. Many-to-many communication describes multicast or anycast in some contexts, but not unicast.

When would these options actually be correct?

B

This option would be correct for a question asking: 'Which of the following describes a multicast transmission?' or 'Which type of transmission sends data from one source to multiple specific recipients?'

C

This option would be correct if the question asked: 'Which of the following describes a broadcast transmission?' or 'Which term refers to sending data from one device to all devices on a network?'

D

In a question asking about a multicast or anycast transmission type, 'Many-to-many communication' could be correct if the exam defines multicast as a many-to-many model (e.g., in some older networking contexts).

Why candidates pick the wrong answer

B

Candidates may confuse unicast with multicast because both involve a single source, but they incorrectly assume 'one-to-many' is unicast due to misunderstanding the 'uni-' prefix as 'one source' rather than 'one destination'.

C

Candidates may confuse 'unicast' with 'broadcast' due to similar prefixes or misunderstand that 'uni-' means one sender, not one receiver.

D

Candidates may confuse unicast with other transmission types, mistakenly thinking that multiple senders and receivers are involved in unicast, or they may not clearly distinguish between unicast, multicast, and broadcast.

233
MCQmedium

A network engineer is designing a subnet to accommodate 50 devices in a single broadcast domain. The engineer uses a /26 subnet mask. How many usable host addresses are available?

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

A /26 subnet mask allocates 26 bits to the network portion, leaving 6 bits for host addresses (32 - 26 = 6). This configuration provides 2^6 = 64 total IP addresses within the subnet. After reserving two addresses for the network identifier and the broadcast address, 64 - 2 = 62 usable host addresses remain. This quantity is perfectly suitable for accommodating 50 devices while also providing a comfortable buffer for future network expansion.

Why this answer

A /26 subnet mask provides 2^(32-26) = 64 total addresses. Subtracting the network and broadcast addresses leaves 62 usable host addresses. This is sufficient for 50 devices in a single broadcast domain.

Exam trap

The trap here is that candidates often forget to subtract the network and broadcast addresses, or they confuse the total addresses (64) with usable addresses (62), leading them to pick 64 or misapply the formula for a different prefix length.

Why the other options are wrong

A

A /26 subnet provides 2^(32-26) = 64 total addresses, with 2 reserved for network and broadcast, leaving 62 usable. Option A (30) corresponds to a /27 subnet, not /26.

C

A /26 subnet mask provides 64 total addresses, with 62 usable host addresses (2^6 - 2 = 62). Option C (126) corresponds to a /25 subnet mask, which is not used in this question.

D

A /26 subnet mask provides 64 total addresses, with 62 usable host addresses (64 - 2 for network and broadcast). Option D (254) corresponds to a /24 subnet mask, not /26.

When would these options actually be correct?

A

This would be correct if the question specified a /27 subnet mask (255.255.255.224), which provides 32 total addresses minus 2 = 30 usable hosts.

C

This option would be correct if the question specified a /25 subnet mask (255.255.255.128) instead of /26. For example: 'A network engineer is designing a subnet to accommodate 100 devices. The engineer uses a /25 subnet mask.

How many usable host addresses are available?'

D

This option would be correct if the question specified a /24 subnet mask (e.g., 'How many usable host addresses are available with a /24 subnet mask?').

Why candidates pick the wrong answer

A

Candidates often miscalculate by subtracting 2 from 32 (thinking /26 gives 32 addresses) or confuse /26 with /27 due to common subnetting errors.

C

Candidates may mistakenly calculate 2^7 - 2 = 126, confusing the /26 subnet (6 host bits) with a /25 subnet (7 host bits), or they might forget to subtract the network and broadcast addresses.

D

Candidates may confuse subnet masks, thinking /26 provides 254 usable addresses due to misremembering the host bits or incorrectly applying the formula 2^(32-26)-2.

234
Matchingmedium

Match each OSI layer to its description.

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

Concepts
Matches

Data Link layer; handles MAC addressing and framing

Network layer; handles routing and logical addressing

Transport layer; handles reliable delivery and flow control

Application layer; provides network services to applications

Why these pairings

The correct matches are: Physical layer transmits raw bits, Network layer routes with logical addressing, and Application layer supports user applications. Common confusions involve swapping the roles of Data Link and Transport layers.

235
MCQmedium

A network administrator is setting up SNMPv3 on a router for secure monitoring. Which of the following is required for SNMPv3 authentication?

A.Community string
B.Username and password
C.Encryption key
D.Public key
AnswerB

SNMPv3 significantly enhances security over previous versions by introducing user-based security. For authentication, it mandates the configuration of a unique username along with an authentication password (or passphrase). This password is not transmitted directly but is used to generate a cryptographic hash, such as MD5 or SHA, which verifies the integrity and origin of the SNMP message, preventing unauthorized access and tampering.

Why this answer

SNMPv3 introduces a security model that requires a username and password (authentication passphrase) for authentication, moving away from the community-string-based model of SNMPv1/v2c. The password is used with an authentication protocol like MD5 or SHA to verify the identity of the manager before allowing access. Without a valid username and password combination, SNMPv3 will reject the request.

Exam trap

The trap here is that candidates confuse the community string (SNMPv1/v2c) with SNMPv3's username/password model, or they mistakenly think an encryption key alone satisfies authentication requirements, when in fact authentication and privacy are configured independently.

Why the other options are wrong

A

SNMPv3 uses a username and password for authentication, not a community string. Community strings are used in SNMPv1 and v2c, which lack security.

C

SNMPv3 authentication uses a username and password (or passphrase), not an encryption key. Encryption keys are used for SNMPv3 privacy (encryption), not authentication.

D

SNMPv3 authentication uses a username and password (or passphrase) via HMAC-MD5 or HMAC-SHA, not a public key. Public keys are used in asymmetric cryptography, which is not part of SNMPv3's authentication mechanism.

When would these options actually be correct?

A

In a question about configuring SNMPv2c for read-only access on a legacy device, the community string would be the correct authentication method.

C

A question asking 'Which of the following is required for SNMPv3 privacy?' would make encryption key the correct answer, as privacy ensures data encryption using a separate key.

D

A question about configuring SSH or TLS for secure device management, where public key authentication is required (e.g., 'Which of the following is needed for SSH key-based authentication?').

Why candidates pick the wrong answer

A

Candidates often confuse SNMPv3 with earlier versions, mistakenly thinking community strings are still used for authentication in v3.

C

Candidates may confuse authentication with encryption, thinking that a key is needed for both, or they may associate 'security' with encryption keys rather than authentication credentials.

D

Candidates may confuse SNMPv3's security features with other secure protocols that use public key cryptography, or assume that 'secure' always implies asymmetric encryption.

236
MCQhard

An engineer is configuring a network and needs to understand the default behavior of an IPv6 node. When an IPv6 interface is initialized, which type of address is automatically assigned without any configuration server?

A.Global unicast address
B.Unique local address
C.Link-local address
D.Multicast address
AnswerC

An IPv6 link-local address (fe80::/10) is automatically configured on every IPv6-enabled interface, serving as the essential address for communication only within the local network segment. It is derived either from the interface's MAC address using EUI-64 or through privacy extensions, ensuring immediate local connectivity without requiring a DHCPv6 server or manual configuration. This address is fundamental for Neighbor Discovery Protocol (NDP) operations and initial router solicitations.

Why this answer

When an IPv6 interface is initialized, it automatically generates a link-local address (fe80::/10) using Stateless Address Autoconfiguration (SLAAC) without requiring any external server (e.g., DHCPv6). This address is mandatory for neighbor discovery and other link-local communication, allowing the node to operate on the local network segment immediately.

Exam trap

The N10-009 exam often tests the misconception that a global unicast address is automatically assigned, but the trap here is that only the link-local address is generated by default, while global and unique local addresses require additional configuration or router presence.

Why the other options are wrong

A

Global unicast addresses require either manual configuration or DHCPv6 (stateful or stateless) to be assigned; they are not automatically generated upon interface initialization without a configuration server.

B

Unique local addresses (ULAs) are not automatically assigned upon interface initialization; they require manual configuration or DHCPv6. IPv6 nodes automatically generate a link-local address (fe80::/10) without any server.

D

A multicast address is not automatically assigned to an interface upon initialization; it is typically joined for specific protocols (e.g., all-nodes multicast FF02::1) but not generated as a unicast address for the interface itself.

When would these options actually be correct?

A

In a scenario where an IPv6 node is configured with a static global unicast address or receives one via DHCPv6 prefix delegation, and the question asks for the address type used for global reachability, global unicast would be correct.

B

A question asking which IPv6 address type is designed for local communication within a site, is not globally routable, and can be used without a global prefix assignment (e.g., 'Which address type is analogous to IPv4 private addresses?').

D

When asked which address type is used for one-to-many communication in IPv6, or which address is assigned to a multicast group that all IPv6 nodes must join (e.g., FF02::1).

Why candidates pick the wrong answer

A

Candidates may confuse the automatic generation of link-local addresses with the ability to form global addresses via SLAAC, but SLAAC still requires router advertisements, not automatic assignment without any server.

B

Candidates may confuse unique local addresses with link-local addresses because both are for local use, but ULAs are not automatically assigned and require configuration, unlike link-local addresses.

D

Candidates may confuse the automatic joining of the all-nodes multicast group with the automatic assignment of a unicast address, or think that multicast addresses are generated similarly to link-local addresses.

237
MCQhard

An organization's security policy requires that all remote access VPN connections use two-factor authentication and that the VPN clients are compliant with the latest patch levels before gaining network access. Which technology combination provides these capabilities?

A.SSL VPN with client certificate authentication
B.IPsec VPN using preshared keys
C.NAC integrated with a reverse proxy
D.VPN with RADIUS authentication and posture assessment
AnswerD

RADIUS can enforce two-factor authentication (e.g., via OTP) and work with a NAC (posture) server to check client health (patch levels) before allowing full VPN access.

Why this answer

RADIUS authentication can enforce two-factor authentication (e.g., via token or OTP), and posture assessment (often via Network Access Control or a VPN posture plugin) checks the client's patch level before granting network access. This combination directly satisfies the policy requirements for both multi-factor authentication and endpoint compliance verification.

Exam trap

The trap here is that candidates often confuse 'two-factor authentication' with simply using a certificate (Option A) or a preshared key (Option B), failing to recognize that posture assessment is a separate, critical requirement that RADIUS combined with a NAC or posture system uniquely fulfills.

Why the other options are wrong

A

SSL VPN with client certificate authentication provides two-factor authentication (certificate + something else) but does not include posture assessment to verify patch compliance before granting network access.

B

IPsec VPN using preshared keys provides only single-factor authentication (the preshared key) and does not include any mechanism for posture assessment to verify client patch compliance.

When would these options actually be correct?

A

A question that asks for a remote access VPN solution providing strong authentication without requiring endpoint compliance checks, such as 'Which VPN technology uses client certificates for authentication and operates at the transport layer?'

B

This option would be correct for a question asking for a simple, low-overhead VPN setup for site-to-site connections where strong authentication is not required and no client compliance checks are needed.

Why candidates pick the wrong answer

A

Candidates may associate SSL VPNs with secure remote access and client certificates with two-factor authentication, overlooking the additional requirement for posture assessment.

B

Candidates may think preshared keys are sufficient for authentication and overlook the two-factor and posture assessment requirements, or they may confuse IPsec with more advanced authentication methods.

238
MCQmedium

Two switches are connected via a trunk link configured with allowed VLANs 10, 20, and 30. Hosts on VLAN 20 can communicate across the trunk, but hosts on VLAN 30 cannot. Which of the following is the most likely cause?

A.A
B.B
C.C
D.D
AnswerD

If VLAN 30 is only created on one switch, the other switch will not have the VLAN in its database and will drop frames from that VLAN.

Why this answer

The most likely cause is that VLAN 30 is only created on one switch. For a trunk to forward frames for a VLAN, that VLAN must exist (be created) on both switches. If VLAN 30 is only configured on one switch, the other switch will drop frames from VLAN 30, preventing communication.

This explains why VLAN 20 works (exists on both) and VLAN 30 does not.

Exam trap

The trap here is that candidates often confuse trunk allowed VLAN configuration with native VLAN settings or assume a spanning-tree issue is VLAN-specific, when in fact spanning-tree blocks the entire trunk, not individual VLANs.

Why the other options are wrong

A

Option A is not defined, so it cannot be evaluated. The question describes a trunk issue where only VLAN 30 fails, suggesting a misconfiguration specific to that VLAN, not a generic problem like a bad cable or port error.

B

Option B is incorrect because the question states that hosts on VLAN 20 can communicate across the trunk, indicating the trunk is operational. The issue is specific to VLAN 30, so a general trunk misconfiguration (like encapsulation mismatch or trunk mode) would affect all VLANs, not just one.

C

Option C is not provided in the question, so it cannot be evaluated. The correct answer is D, which is undefined, indicating a missing or incorrect option.

When would these options actually be correct?

A

In a scenario where all VLANs fail to communicate across the trunk, and the trunk is not in an errdisable state, a physical issue like a faulty cable or incorrect cable type (e.g., crossover vs. straight-through) would be the correct answer.

B

Option B would be correct if the question described that no hosts on any VLAN could communicate across the trunk, or if the trunk link was down entirely. For example: 'Two switches are connected via a trunk link, but hosts on all VLANs cannot communicate across the trunk. Which is the most likely cause?'

C

In a scenario where a trunk link is misconfigured with an incorrect native VLAN on one switch, causing VLAN mismatch, option C (if it were 'native VLAN mismatch') would be correct.

Why candidates pick the wrong answer

A

Candidates may choose this option because they assume any trunk problem is due to physical connectivity, overlooking VLAN-specific configuration errors like missing allowed VLANs or native VLAN mismatch.

B

Candidates may assume any trunk issue is due to a general trunk misconfiguration, overlooking that the problem is VLAN-specific. They might not carefully read that VLAN 20 works, which rules out a global trunk problem.

C

Candidates might be tempted to choose an option that sounds plausible, like a VLAN mismatch or pruning issue, without verifying the actual options given.

239
MCQmedium

A network engineer is reviewing RFC 1918 address ranges to plan a private IP addressing scheme. Which of the following IP addresses falls within the private address space for Class A?

A.172.16.0.1
B.192.168.1.1
C.10.10.10.1
D.172.32.0.1
AnswerC

10.10.10.1 falls within the 10.0.0.0/8 block, which is the Class A private address space defined in RFC 1918.

Why this answer

RFC 1918 defines the Class A private address range as 10.0.0.0/8, which includes all addresses from 10.0.0.0 to 10.255.255.255. 10.10.10.1 falls within this range, making it a valid private IP address for internal network use.

Exam trap

The trap here is that candidates often confuse the Class B private range (172.16.0.0/12) with any 172.x.x.x address, forgetting that only 172.16.0.0 through 172.31.255.255 are private, while 172.32.0.0 and above are public.

Why the other options are wrong

A

The 172.16.0.1 address is part of the Class B private range (172.16.0.0/12), not Class A. The question specifically asks for a Class A private address, which is 10.0.0.0/8.

B

The question asks for a Class A private address per RFC 1918. 192.168.1.1 is a Class C private address (192.168.0.0/16), not Class A.

D

172.32.0.1 is not within the RFC 1918 private address ranges; the Class B private range is 172.16.0.0/12 (172.16.0.0 to 172.31.255.255), and 172.32.0.1 falls outside that range.

When would these options actually be correct?

A

This option would be correct if the question asked for a private IP address within the Class B range, or if it asked for an address in the 172.16.0.0/12 block without specifying class.

B

This option would be correct if the question asked: 'Which of the following IP addresses falls within the private address space for Class C?' or 'Which address is in the 192.168.0.0/16 range?'

D

If the question asked for a public IP address or an address in the 172.32.0.0/16 range (which is public), then 172.32.0.1 could be correct. For example, 'Which of the following is a public IP address?'

Why candidates pick the wrong answer

A

Candidates may confuse the Class B private range (172.16.0.0/12) with Class A because 172.x.x.x addresses are commonly used in private networks, leading them to overlook the specific class designation.

B

Candidates often confuse the private ranges or think any private address qualifies, not realizing the question specifies Class A.

D

Candidates often mistakenly think that any address starting with 172 is private, not realizing that only 172.16.0.0/12 is reserved, and addresses like 172.32.0.0/16 are public.

240
MCQmedium

A network technician needs to capture and analyze packets on a specific network segment to identify the source of a performance slowdown. Which tool is best suited for this task?

A.Protocol analyzer (e.g., Wireshark)
B.Port scanner (e.g., Nmap)
C.Ping
D.Traceroute
AnswerA

A protocol analyzer, such as Wireshark, is the definitive tool for capturing raw network traffic and performing deep packet inspection. It allows technicians to examine individual packet headers and payloads across various layers of the OSI model, revealing crucial details about communication patterns, protocol errors, and data integrity. This granular visibility is essential for diagnosing complex network performance issues, identifying anomalous traffic, and understanding application behavior at a fundamental level.

Why this answer

A protocol analyzer like Wireshark is the correct tool because it captures and decodes packets at the data-link layer, allowing the technician to inspect frame headers, IP addresses, TCP/UDP ports, and payload contents on a specific network segment. This deep packet inspection is essential for identifying the root cause of performance slowdowns, such as excessive retransmissions, high latency, or application-layer issues. Unlike other tools, a protocol analyzer provides granular visibility into traffic patterns and protocol behavior.

Exam trap

The trap here is that candidates often confuse a protocol analyzer with a port scanner or a simple connectivity tool, assuming that Ping or Traceroute can provide enough data to diagnose performance slowdowns, when in fact they lack the packet-level detail required for root-cause analysis.

Why the other options are wrong

B

A port scanner like Nmap is used to discover open ports and services on network hosts, not to capture and analyze packet-level data on a network segment. It cannot inspect the contents of packets to diagnose performance issues.

C

Ping only tests basic reachability and round-trip time to a single host; it cannot capture or analyze packets on a network segment to identify the source of a performance slowdown.

D

Traceroute is used to map the path packets take across a network, not to capture and analyze packet contents on a specific segment for performance issues.

When would these options actually be correct?

B

When a network technician needs to identify which services are running on a suspicious host during a security audit, a port scanner like Nmap is the correct tool to use.

C

A question asking which tool to use to verify basic connectivity to a remote server or to check if a host is online and responsive would make ping the correct answer.

D

A network technician needs to identify the specific hop where packet loss or high latency is occurring along a path to a remote server. Traceroute would be the correct tool to pinpoint the problematic router.

Why candidates pick the wrong answer

B

Candidates may confuse network scanning tools with packet analysis tools, thinking that scanning can reveal performance data, or they may associate Nmap with network troubleshooting without understanding its specific capabilities.

C

Candidates may think ping can diagnose performance issues because it measures latency and packet loss, but it lacks packet-level analysis capabilities.

D

Candidates may confuse traceroute's ability to show per-hop latency with the deeper packet-level analysis needed to diagnose performance slowdowns on a local segment.

241
MCQmedium

Users in a department report that the network is extremely slow. A technician checks the access switch and notices that a single port shows a high number of CRC errors and runts. The link LED is solid green. Which of the following is the most likely cause of the issue?

A.Duplex mismatch between the switch port and the connected device
B.Faulty network cable
C.Broadcast storm
D.VLAN misconfiguration
AnswerA

A duplex mismatch occurs when one device operates in full-duplex mode while the connected device operates in half-duplex mode, or vice-versa. This fundamental communication conflict leads to severe performance degradation because one device attempts to transmit while the other is simultaneously trying to receive, resulting in a high number of collisions, CRC errors, and runt frames. These errors necessitate frequent retransmissions, drastically reducing effective throughput and causing the network to feel extremely slow for users.

Why this answer

A duplex mismatch occurs when one device operates at full duplex and the other at half duplex. The full-duplex side does not perform Carrier Sense Multiple Access with Collision Detection (CSMA/CD), so it transmits without checking for collisions. The half-duplex side detects collisions, causing late collisions that manifest as CRC errors and runts on the switch port.

The solid green link LED indicates Layer 1 connectivity is intact, ruling out a physical cable fault.

Exam trap

CompTIA often tests duplex mismatch by showing a solid green link LED alongside CRC errors and runts, tricking candidates into thinking the cable is faulty because they assume a solid LED means perfect physical connectivity.

Why the other options are wrong

C

A broadcast storm causes excessive broadcast traffic, leading to high CPU utilization and general network congestion, but it does not specifically cause CRC errors or runts on a single port. CRC errors and runts are typically physical-layer issues, not broadcast-related.

When would these options actually be correct?

C

A broadcast storm would be the correct answer if the question described symptoms like all ports showing high utilization, the switch CPU spiking, and the network becoming unresponsive due to excessive broadcast frames, without physical-layer errors on a single port.

Why candidates pick the wrong answer

C

Candidates may associate any network slowdown with broadcast storms, overlooking that the specific symptoms (CRC errors, runts on one port) point to a physical-layer problem like duplex mismatch rather than a broadcast issue.

242
MCQeasy

A network engineer wants to segment a LAN into multiple broadcast domains without purchasing additional hardware. Which of the following technologies should be implemented?

A.Subnetting
B.VLANs
C.VPN
D.NAT
AnswerB

VLANs allow a single switch to support multiple broadcast domains, each isolated at Layer 2.

Why this answer

VLANs (Virtual Local Area Networks) allow a network engineer to logically segment a single physical LAN switch into multiple isolated broadcast domains without purchasing additional hardware. By assigning switch ports to different VLAN IDs, broadcast traffic is confined to ports within the same VLAN, effectively creating separate Layer 2 networks on the same switch infrastructure.

Exam trap

CompTIA often tests the misconception that subnetting alone can segment broadcast domains, but subnetting only divides IP address space; without VLANs, all devices on the same switch remain in one broadcast domain at Layer 2.

Why the other options are wrong

A

Subnetting segments a network into multiple IP subnets, but it requires a router to forward traffic between subnets, and it does not create separate broadcast domains without additional hardware (the router). VLANs achieve broadcast domain segmentation at Layer 2 without extra hardware.

C

VPNs create encrypted tunnels over public networks for secure remote access, but they do not segment a LAN into multiple broadcast domains; they operate at Layer 3 and above, not at Layer 2 where broadcast domains are defined.

D

NAT (Network Address Translation) translates private IP addresses to public ones for internet access, but it does not segment a LAN into multiple broadcast domains. Broadcast domains are separated by Layer 2 or Layer 3 boundaries, not by address translation.

When would these options actually be correct?

A

A network engineer wants to logically divide a single IP network into smaller subnetworks to improve IP address utilization and reduce broadcast traffic, but the switch does not support VLANs. In this case, subnetting with a router would be the correct answer.

C

A company needs to securely connect remote branch offices over the internet. Which technology should be implemented? VPN would be correct as it provides encrypted connectivity over public infrastructure.

D

A question asking: 'A company has run out of public IP addresses and needs to allow multiple internal hosts to share a single public IP when accessing the internet. Which technology should be implemented?' would make NAT the correct answer.

Why candidates pick the wrong answer

A

Candidates often confuse subnetting with VLANs because both can reduce broadcast domains, but they forget that subnetting requires a Layer 3 device to separate broadcast domains, whereas VLANs operate at Layer 2 without additional hardware.

C

Candidates may confuse VPN with VLAN due to similar acronyms, or mistakenly think VPN can isolate traffic within a LAN, not realizing VPNs are for secure remote connections, not local segmentation.

D

Candidates may confuse NAT with network segmentation because both involve IP address manipulation, or they might think NAT creates separate networks by hiding internal addresses, but it does not affect broadcast domains.

243
MCQmedium

A company is deploying a new wireless network for a small office. The network will consist of three access points. The IT manager wants the APs to automatically coordinate radio frequency settings and client roaming without a dedicated controller. Which technology should be implemented?

A.Mesh network
B.Controller-based wireless
C.Standalone APs
D.Cloud-managed access points
AnswerD

Cloud-managed access points are an ideal solution for small offices seeking advanced wireless features without the overhead of an on-premises controller. These systems leverage a cloud-based platform to centralize management, automatically optimize RF channels, adjust power levels, and facilitate seamless client roaming across multiple APs. This approach significantly simplifies deployment and ongoing administration, providing enterprise-grade capabilities with reduced infrastructure costs and complexity.

Why this answer

Cloud-managed access points (APs) are the correct choice because they can automatically coordinate radio frequency (RF) settings and client roaming without a dedicated on-premises controller. The cloud-based management platform handles channel selection, power adjustment, and fast roaming (e.g., 802.11r/k/v) by communicating with each AP over the internet, making it ideal for a small office with only three APs.

Exam trap

The trap here is that candidates often confuse 'cloud-managed' with 'standalone' APs, assuming that any AP without a local controller must be standalone, but cloud-managed APs use an external controller in the cloud to provide coordinated features.

Why the other options are wrong

A

A mesh network coordinates radio settings and client roaming without a dedicated controller, but it is typically used for extending coverage in larger areas or outdoor environments, not for a small office with three APs where cloud management is more appropriate for automatic RF coordination.

B

Controller-based wireless requires a dedicated hardware controller to manage APs, which contradicts the requirement for automatic coordination without a dedicated controller.

C

Standalone APs require manual configuration of radio frequency settings and do not automatically coordinate client roaming; they lack the centralized management needed for automatic RF optimization and seamless roaming without a controller.

When would these options actually be correct?

A

A company needs to extend wireless coverage to a large warehouse or outdoor area where running cables is difficult, and APs must self-form and self-heal without any controller or cloud management.

B

In an enterprise environment with many APs requiring centralized management, advanced security policies, and seamless roaming, a controller-based wireless solution would be correct, especially if a dedicated controller is already available or budgeted.

C

In a small office with a single access point or where each AP is managed independently and no automatic RF coordination or seamless roaming is required, standalone APs would be the correct choice.

Why candidates pick the wrong answer

A

Candidates may confuse mesh networking with automatic RF coordination because both involve APs communicating without a wired controller, but mesh focuses on backhaul connectivity rather than centralized radio management.

B

Candidates may associate controller-based solutions with automatic RF management and roaming, overlooking the explicit requirement for no dedicated controller.

C

Candidates may think standalone APs are sufficient for small offices because they are simple and inexpensive, overlooking the need for automatic RF coordination and roaming without a dedicated controller.

244
MCQmedium

A user reports intermittent connectivity issues. The technician notices that the link lights on both the PC and the switch are solid, but the user experiences periodic drops. The technician runs a cable test and finds that one pair of wires is open. Which standard is the cable likely violating?

A.TIA/EIA-568
B.IEEE 802.3
C.ISO 9001
D.RFC 1918
AnswerA

TIA/EIA-568 is the definitive standard for structured cabling in commercial buildings, specifying the wiring schemes like T568A and T568B for twisted-pair cables. An "open pair" directly violates these precise pinout requirements, preventing proper signal transmission and causing the reported intermittent connectivity issues. Adherence to this standard ensures reliable physical layer communication and simplifies troubleshooting of cabling faults.

Why this answer

The TIA/EIA-568 standard specifies the wiring pinouts and performance requirements for twisted-pair cabling, including that all four pairs must be properly terminated and continuous. An open pair violates this standard because it breaks the required electrical continuity, leading to signal degradation and intermittent connectivity. The solid link lights indicate basic electrical connectivity on some pairs, but the open pair causes periodic drops when the network attempts to use that pair for data transmission.

Exam trap

The trap here is that candidates see 'link lights solid' and assume the cable is fully functional, but solid link lights only indicate that at least one pair (or the necessary pairs for the negotiated speed) is electrically connected, not that all pairs meet the TIA/EIA-568 standard for the expected speed.

Why the other options are wrong

B

IEEE 802.3 defines Ethernet standards for physical and data link layers, but it does not specify cabling pinouts or pair configurations. An open pair violating wiring standards is a cabling issue, not a protocol issue.

C

ISO 9001 is a quality management standard, not a cabling or networking standard. An open wire pair violates TIA/EIA-568 cabling specifications, not ISO 9001.

D

RFC 1918 defines private IP address ranges (e.g., 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) and is unrelated to cabling standards or physical layer issues like an open wire pair.

When would these options actually be correct?

B

A question asking which standard defines Ethernet frame formats, MAC addresses, or CSMA/CD access method would have IEEE 802.3 as the correct answer. For example: 'Which standard specifies the maximum frame size for Ethernet?'

C

A question asking which standard applies to a company's quality management system for network cable installation processes, where the correct answer is ISO 9001 because it governs quality assurance procedures.

D

A question about a user unable to access the internet from a private IP address, where the router is not performing NAT correctly. The correct answer would be RFC 1918 because the issue involves private address space.

Why candidates pick the wrong answer

B

Candidates may confuse IEEE 802.3 with cabling standards because both relate to networking hardware, or they may think any network issue falls under IEEE standards.

C

Candidates may confuse ISO 9001 with a technical standard due to its broad recognition, or mistakenly think it covers physical cabling requirements.

D

Candidates may confuse RFC 1918 with a general networking standard, or think it covers physical cabling due to its association with network setup, but it only addresses IP addressing.

245
MCQhard

A security analyst is reviewing firewall logs and sees many incoming packets with a source IP address that matches the internal IP range of the company (10.0.0.0/8) arriving on the external interface. Which type of attack is likely being attempted?

A.Smurf attack
B.IP spoofing attack
C.SYN flood
D.DNS amplification
AnswerB

Correct. The attacker is spoofing the source IP address to appear as an internal host, trying to bypass firewall rules that may allow internal traffic without inspection.

Why this answer

Packets arriving on the external interface with a source IP address from the internal 10.0.0.0/8 range indicate that the attacker is forging (spoofing) the source address to impersonate an internal host. This is a classic IP spoofing attack, often used to bypass access control lists or to launch further attacks that rely on trust relationships based on source IP.

Exam trap

CompTIA often tests the distinction between IP spoofing and other attacks by focusing on the specific packet characteristic (source IP matching internal range on an external interface) rather than the attack's goal or volume, leading candidates to confuse it with a Smurf or SYN flood attack.

Why the other options are wrong

A

A Smurf attack uses ICMP echo requests with a spoofed source IP to cause a broadcast storm, but the question describes incoming packets with a source IP matching the internal range on the external interface, which is classic IP spoofing, not a Smurf attack.

C

A SYN flood attack involves sending many TCP SYN packets to exhaust server resources, but the question describes packets with a spoofed internal source IP arriving on the external interface, which is characteristic of IP spoofing, not SYN flood.

D

DNS amplification attacks use open DNS servers to amplify traffic to a victim, but they do not involve source IP addresses matching the internal range of the target. The question describes packets with internal IPs arriving externally, which is characteristic of IP spoofing, not DNS amplification.

When would these options actually be correct?

A

A Smurf attack would be correct if the question described the attacker sending ICMP echo requests to a network broadcast address with a spoofed source IP of the victim, causing all hosts on that network to reply to the victim, overwhelming it.

C

A SYN flood would be correct if the question described a high volume of incomplete TCP handshakes (SYN packets without final ACK) overwhelming a server, causing denial of service, without mention of source IP matching internal ranges.

D

A DNS amplification attack would be correct if the question described a scenario where the attacker sends small queries to open DNS resolvers with a spoofed victim IP, resulting in large responses flooding the victim. For example: 'A security analyst notices a high volume of DNS responses from external servers to a single internal server, causing bandwidth exhaustion.'

Why candidates pick the wrong answer

A

Candidates may confuse any attack involving spoofed IPs with a Smurf attack, or they may recall that Smurf attacks use spoofed source addresses, but they forget the specific mechanism of broadcast amplification.

C

Candidates may confuse any flood of packets with a SYN flood, especially when the question mentions 'many incoming packets,' leading them to choose a common DoS attack without analyzing the specific IP spoofing indicator.

D

Candidates may confuse any attack involving spoofed IPs with amplification attacks, or they might think that the internal IP range in packets indicates a reflection attack, but DNS amplification specifically uses DNS traffic, not arbitrary packets with internal IPs.

246
MCQmedium

A network administrator wants to prevent unauthorized devices from connecting to the network by limiting the number of MAC addresses allowed on a switch port. Which security feature should be configured?

A.802.1X
B.Port security
C.DHCP snooping
D.Dynamic ARP inspection
AnswerB

Port security is a Layer 2 control plane feature that restricts the number of MAC addresses allowed to communicate through a specific switch port. Network administrators can configure a maximum limit of MAC addresses per port, or even statically assign specific MAC addresses. If an unauthorized device attempts to connect and exceeds this configured limit, the switch can be configured to take actions such as shutting down the port, restricting traffic, or sending an SNMP trap, effectively preventing unauthorized access.

Why this answer

Port security is the correct feature because it directly restricts the number of unique MAC addresses that can be learned on a switch port, preventing unauthorized devices from connecting. When the configured limit is exceeded, the switch can take actions such as shutdown, restrict, or protect, effectively blocking the unauthorized device. This is a Layer 2 access control mechanism that operates on the switch port itself.

Exam trap

The N10-009 exam often tests the distinction between port security (MAC address limiting) and 802.1X (authentication), leading candidates to mistakenly choose 802.1X when the question explicitly asks about limiting the number of MAC addresses.

Why the other options are wrong

A

802.1X is an authentication protocol that controls network access based on user or device credentials, not by limiting the number of MAC addresses on a port. The question specifically asks for limiting MAC addresses, which is a function of port security.

C

DHCP snooping is used to filter untrusted DHCP messages and prevent rogue DHCP servers, not to limit the number of MAC addresses on a switch port.

D

Dynamic ARP inspection validates ARP packets to prevent man-in-the-middle attacks, but it does not limit the number of MAC addresses on a switch port.

When would these options actually be correct?

A

A network administrator wants to enforce authentication for all devices before granting network access, using credentials or certificates. In that scenario, 802.1X would be the correct answer.

C

A network administrator wants to prevent rogue DHCP servers from assigning incorrect IP addresses to clients. Which security feature should be configured?

D

A network administrator wants to prevent ARP spoofing attacks by ensuring that only valid ARP requests and replies are forwarded. Which security feature should be configured?

Why candidates pick the wrong answer

A

Candidates may confuse 802.1X with port security because both control access to switch ports, but they operate differently: 802.1X authenticates, while port security limits MAC addresses.

C

Candidates may confuse DHCP snooping with port security because both involve MAC address filtering, but DHCP snooping focuses on DHCP message validation, not port-level MAC limits.

D

Candidates may confuse MAC address filtering with ARP inspection, thinking both control MAC addresses, but DAI focuses on ARP packet validation, not port-level MAC limits.

247
MCQmedium

An OSPF network uses a multi-access segment with four routers. All router interfaces have the default OSPF priority of 1. Which router becomes the Designated Router (DR)?

A.The router with the highest router ID
B.The router with the lowest IP address on the segment
C.The router with the highest bandwidth on the connecting interface
D.The router with the oldest uptime
AnswerA

In OSPF, the Designated Router (DR) election process first considers the OSPF priority configured on the interface. If multiple routers have the highest priority (default is 1), the tie-breaker is the router with the highest OSPF Router ID. This ensures a deterministic election on multi-access segments, facilitating efficient LSA flooding and reducing the number of adjacencies needed among all routers.

Why this answer

In an OSPF multi-access network, the Designated Router (DR) is elected based on the highest OSPF priority value, with a tie-breaking mechanism using the highest Router ID. Since all routers have the default priority of 1, the router with the highest Router ID wins the DR election. This ensures a stable topology for reducing LSA flooding and adjacency overhead.

Exam trap

The trap here is that candidates often confuse the DR election tie-breaker with the OSPF route selection metric (cost/bandwidth) or assume the lowest IP address is used, but the actual tie-breaker is the highest Router ID after priority.

Why the other options are wrong

B

In OSPF, the Designated Router (DR) is elected based on the highest OSPF priority, and if priorities are equal (default 1), the highest router ID is used. The lowest IP address on the segment is not a factor in DR election.

C

In OSPF, the Designated Router (DR) is elected based on the highest OSPF priority, and if priorities are equal, the highest router ID is used. Bandwidth of the interface is not a factor in DR election.

D

OSPF DR election uses the highest router ID, not uptime. Uptime is irrelevant in OSPF DR/BDR election.

When would these options actually be correct?

B

In a scenario where the question asks about the Backup Designated Router (BDR) election and all routers have the same priority, the BDR is the router with the highest router ID among non-DR routers. However, if the question specified that the DR is already elected and the BDR fails, the next BDR is chosen based on highest router ID, not lowest IP.

C

In a scenario where the question asks about the selection of the active router in a Virtual Router Redundancy Protocol (VRRP) group with default priority, the router with the highest interface bandwidth might be chosen if the election is based on a non-standard configuration or if the question specifically mentions a proprietary feature like Cisco's 'priority' command that can be tied to bandwidth.

D

In a scenario where the question asks about the root bridge election in a Spanning Tree Protocol (STP) network with default priorities, the switch with the oldest uptime (lowest bridge ID) becomes the root bridge if all other factors are equal.

Why candidates pick the wrong answer

B

Candidates may confuse OSPF DR election with other routing protocols or think that lower IP addresses are preferred for stability, similar to some election processes in networking (e.g., spanning tree root bridge election).

C

Candidates may confuse OSPF DR election with other protocols or think that higher bandwidth implies better suitability for the DR role, as bandwidth often influences routing decisions in other contexts.

D

Candidates may confuse OSPF DR election with other network elections (e.g., STP root bridge) where uptime or other metrics are used, leading to a plausible but incorrect guess.

248
MCQmedium

A network monitoring system alerts that a specific router interface has been flapping (repeatedly going up and down) for the past hour. Which of the following is the MOST likely cause of this behavior?

A.Faulty transceiver
B.High CPU utilization on the router
C.Incorrect SNMP community string
D.Routing protocol misconfiguration
AnswerA

A malfunctioning Small Form-Factor Pluggable (SFP) or Gigabit Interface Converter (GBIC) transceiver is a common cause of physical interface flapping. These optical or copper modules are responsible for converting electrical signals to optical signals (or vice-versa) and maintaining the physical link. When a transceiver is faulty, it can intermittently fail to establish or maintain a stable physical layer connection, leading to the interface repeatedly going up and down. This sporadic loss of link integrity directly manifests as interface flapping, making it a primary suspect for such symptoms.

Why this answer

A faulty transceiver is the most likely cause of interface flapping because physical-layer issues, such as a failing SFP or GBIC, can cause intermittent loss of signal or link synchronization. The router's interface detects the loss of carrier and brings the link down, then re-establishes it when the signal returns, creating a repeated up/down cycle. This is a common hardware failure mode distinct from software or configuration problems.

Exam trap

The trap here is that candidates confuse 'route flapping' (caused by routing protocol issues) with 'interface flapping' (a physical-layer problem), leading them to incorrectly select routing protocol misconfiguration.

Why the other options are wrong

B

High CPU utilization on the router can cause performance issues but does not directly cause an interface to flap (repeatedly go up and down). Flapping is typically a physical or layer 1 issue.

C

An incorrect SNMP community string would prevent the network monitoring system from polling the router, but it would not cause the interface to flap. Flapping is a physical or data-link layer issue, not an SNMP authentication problem.

D

Routing protocol misconfiguration typically causes routing loops, black holes, or suboptimal paths, not physical interface flapping. Flapping is a Layer 1 or Layer 2 issue, not a routing protocol problem.

When would these options actually be correct?

B

A question asking about intermittent connectivity or routing instability where the router is unable to process routing updates or keepalives due to high CPU, leading to neighbor flapping or route flapping.

C

This option would be correct in a question like: 'A network monitoring system cannot retrieve data from a router. Which of the following is the MOST likely cause?' where the issue is lack of SNMP access due to mismatched community strings.

D

This would be correct in a question about 'persistent route flapping' where routes are repeatedly added and removed from the routing table due to misconfigured timers or neighbor relationships, causing network instability.

Why candidates pick the wrong answer

B

Candidates may associate high CPU with general instability and incorrectly assume it can cause interface flapping, confusing interface state changes with routing protocol issues.

C

Candidates may confuse SNMP configuration errors with interface flapping because both can generate alerts, but they fail to recognize that flapping is a physical-layer symptom unrelated to SNMP authentication.

D

Candidates may confuse 'interface flapping' with 'route flapping' and assume routing protocols are involved, or they may think misconfiguration can cause interfaces to go up/down.

249
MCQmedium

A user reports that they can connect to the corporate Wi-Fi network but cannot access any network resources including the intranet and internet. The IP configuration shows an IP address of 169.254.25.100 with a subnet mask of 255.255.0.0. What is the most likely cause?

A.The DNS server is not responding
B.The DHCP server is unavailable or the request is not reaching it
C.The subnet mask is incorrect
D.The switch port has port security enabled that has blocked the device
AnswerB

When a client obtains an APIPA address (169.254.x.x), it signifies a fundamental failure in the DHCP process. This occurs because the client's DHCP discovery broadcast did not receive an offer from a DHCP server within a specified timeout period. Potential causes include the DHCP server being offline, a misconfigured DHCP relay agent preventing broadcasts from reaching the server across subnets, or a VLAN mismatch isolating the client from the DHCP server's broadcast domain. Consequently, the client cannot obtain a routable IP address for broader network communication.

Why this answer

The IP address 169.254.25.100 with a subnet mask of 255.255.0.0 is an Automatic Private IP Addressing (APIPA) address, which is assigned by the operating system when a DHCP server is unavailable or the DHCP request fails. Since the user can connect to Wi-Fi but cannot access any network resources, the most likely cause is that the DHCP server is not responding or the DHCP discover/offer/request/ack sequence is failing, leaving the device with a link-local address that cannot route to the corporate network or internet.

Exam trap

The trap here is that candidates often confuse APIPA with a DNS failure, but the 169.254.x.x address is a definitive indicator of DHCP failure, not a name resolution problem.

Why the other options are wrong

A

The IP address 169.254.25.100 is an Automatic Private IP Addressing (APIPA) address, which indicates that the DHCP server was not reached. DNS issues would not cause the client to obtain an APIPA address; they would typically result in name resolution failures while the client still has a valid DHCP-assigned IP.

C

The IP address 169.254.25.100 is an Automatic Private IP Addressing (APIPA) address, which is assigned when DHCP fails. A subnet mask of 255.255.0.0 is correct for APIPA addresses (169.254.0.0/16), so the subnet mask is not the cause of the connectivity issue.

D

The IP address 169.254.25.100 is an Automatic Private IP Addressing (APIPA) address, which indicates DHCP failure, not port security. Port security would typically cause a complete loss of connectivity or a specific error, not an APIPA address.

When would these options actually be correct?

A

A user has a valid DHCP-assigned IP address (e.g., 192.168.1.10) but cannot access the internet or intranet by name, while IP-based access (e.g., pinging 8.8.8.8) works. In that scenario, a non-responding DNS server is the most likely cause.

C

A user has a static IP configuration with a subnet mask of 255.255.255.0 but the network uses a /16 subnet (e.g., 10.0.0.0/16). The user can connect to the local subnet but cannot reach resources on other subnets because the incorrect subnet mask causes the device to think remote hosts are local.

D

A user cannot connect to the network at all, and the switch port shows an err-disabled state or security violation. The correct answer would be port security if the question describes a scenario where the device was previously working but then blocked due to MAC address violation.

Why candidates pick the wrong answer

A

Candidates often associate inability to access network resources with DNS failure, overlooking that the APIPA address directly points to a DHCP issue. They may not fully understand that APIPA is a fallback mechanism when DHCP fails.

C

Candidates may think an incorrect subnet mask could cause total loss of connectivity, but in this scenario the APIPA address indicates a DHCP failure, not a subnet mask problem.

D

Candidates may confuse port security with DHCP issues because both can prevent network access, but they overlook that APIPA addresses are a hallmark of DHCP failure, not port blocking.

250
MCQmedium

A network administrator needs to schedule a firmware upgrade on a core switch during the next maintenance window. According to best practices, which document should the administrator create and have approved before making the change?

A.A network diagram showing the current topology.
B.An incident report detailing previous firmware issues.
C.A change request form with a rollback plan and approval signatures.
D.A baseline performance report from the current firmware version.
AnswerC

This option is correct because a firmware upgrade on a core switch is a significant change that requires formal change management. A change request form (CRF) formally documents the proposed change, its justification, detailed implementation steps, potential risks, and crucially, a rollback plan to restore the system to its previous state if issues arise. Approval signatures from the Change Advisory Board (CAB) or relevant stakeholders authorize the change, ensuring proper planning and minimizing service disruption.

Why this answer

A change request form with a rollback plan and approval signatures ensures that the firmware upgrade follows the ITIL change management process, which is a best practice for network operations. This document provides a structured approach to assess risks, obtain authorization, and define steps to revert the switch to its previous state if the upgrade fails, minimizing downtime and impact on the network.

Exam trap

The trap here is that candidates confuse operational documents (like diagrams or incident reports) with the formal change management documentation required by ITIL, leading them to overlook the need for a change request with a rollback plan and approval signatures.

Why the other options are wrong

A

A network diagram shows the current topology but does not document the change process, rollback plan, or obtain approval, which are required before making a change like a firmware upgrade.

B

An incident report is a post-event document used to document and analyze issues after they occur, not a pre-change planning document. The question asks for a document to create and have approved before making a change, which is a change request form.

D

A baseline performance report documents current performance metrics but does not provide a formal approval process or rollback plan required for scheduling a firmware upgrade, which is a change management procedure.

When would these options actually be correct?

A

When a question asks for a document that helps understand the network layout before implementing a new design or troubleshooting connectivity issues, a network diagram would be the correct answer.

B

This option would be correct if the question asked: 'After a firmware upgrade caused network instability, which document should the administrator review to identify recurring issues and prevent future problems?'

D

This option would be correct if the question asked: 'After a firmware upgrade, which document should the administrator use to verify that network performance has not degraded?'

Why candidates pick the wrong answer

A

Candidates may think a network diagram is necessary to understand the impact of the upgrade, but the question specifically asks for a document to schedule and approve the change, not to understand the network.

B

Candidates may think that reviewing past issues is a best practice before any change, but the question specifically asks for a document to be created and approved before the change, not a historical record.

D

Candidates may think a baseline report is necessary to compare post-upgrade performance, but the question asks for a document to create and approve before the change, not after.

251
MCQmedium

A company hosts a web server in a DMZ. The firewall has three interfaces: inside (corporate network), outside (Internet), and DMZ. Which firewall rule is necessary to allow external users to access the web server?

A.Allow traffic from the outside interface to the DMZ interface on port 80
B.Allow traffic from the inside interface to the DMZ interface on port 80
C.Allow traffic from the outside interface to the inside interface on port 80
D.Deny all traffic by default and create no specific rules
AnswerA

This firewall rule is essential for a public-facing web server located within a DMZ. By allowing traffic from the untrusted outside interface to the DMZ interface specifically on port 80, it enables external users to access the web service via HTTP. This configuration ensures the web server is reachable while maintaining the critical security posture of isolating the internal network from direct internet exposure.

Why this answer

External users on the Internet (outside interface) need to reach the web server located in the DMZ. The firewall must permit inbound traffic from the outside zone to the DMZ zone on TCP port 80 (HTTP) to allow web requests while keeping the corporate network (inside) isolated from direct external access.

Exam trap

The trap here is that candidates mistakenly choose Option B or C, confusing the direction of traffic or thinking that external users need access to the inside network, when the correct security design is to restrict external traffic only to the DMZ.

Why the other options are wrong

B

This rule allows traffic from the inside (corporate network) to the DMZ, which is not needed for external users to access the web server. External users come from the Internet (outside interface), not the inside network.

C

This rule would allow traffic from the Internet to the corporate network on port 80, which bypasses the DMZ and directly exposes internal resources, violating security best practices.

D

Option D suggests denying all traffic by default and creating no specific rules, which would block all traffic including legitimate external access to the web server, making it impossible for external users to reach the server.

When would these options actually be correct?

B

This rule would be correct if the question asked for a rule allowing internal corporate users to access the web server hosted in the DMZ. For example: 'Which firewall rule allows employees on the corporate network to access the company's web server in the DMZ?'

C

This option would be correct if the question asked for a rule to allow internal users to access a web server located on the corporate network (inside interface) from the Internet, but that scenario is unrealistic. Alternatively, if the web server were on the inside interface and the goal was to allow external access, this rule would be needed, but that would be a poor security design.

D

This option would be correct in a question asking for the default security posture of a firewall when no rules are configured, or in a scenario where the goal is to block all traffic and only allow specific traffic after creating explicit allow rules.

Why candidates pick the wrong answer

B

Candidates may confuse the direction of traffic needed for external access, mistakenly thinking that allowing traffic from the inside to the DMZ is sufficient, or they may not fully understand the role of each firewall interface.

C

Candidates may confuse the direction of traffic or think that external users need to reach the inside network directly, misunderstanding the purpose of a DMZ as a buffer zone.

D

Candidates may think that 'deny all by default' is a secure baseline, but they forget that specific allow rules are needed to permit desired traffic; the option's wording implies no rules are created, which contradicts the requirement to allow access.

252
MCQmedium

A user reports that they can access the company's intranet but not the internet. The technician checks the IP configuration and finds that the default gateway is set to 192.168.1.1, and the user can ping that IP. Which of the following is the most likely cause?

A.The DNS server address is incorrect.
B.The router's NAT configuration is faulty.
C.The DHCP server is not providing a default gateway.
D.The user's workstation has a static IP address.
AnswerB

This is the correct answer. The user can access the intranet and ping the default gateway, indicating local network connectivity and a valid gateway IP. However, the inability to reach the internet strongly suggests a problem with Network Address Translation (NAT). NAT is essential for translating private internal IP addresses into public routable IP addresses, allowing multiple internal devices to share a single public IP for internet access. A faulty NAT configuration would prevent this translation, blocking outbound internet traffic while internal network access remains functional.

Why this answer

Since the user can ping the default gateway (192.168.1.1) and access the intranet, Layer 3 connectivity to the local router is functional. The inability to reach the internet, despite having a valid gateway, points to a failure in the router's NAT (Network Address Translation) configuration. NAT is required to translate private RFC 1918 addresses (like 192.168.1.x) to a public IP for internet access; without it, packets are routed to the gateway but cannot be forwarded beyond the local network.

Exam trap

The trap here is that candidates often assume internet access failure is always a DNS or gateway issue, but the ability to ping the gateway and access local resources isolates the problem to the router's NAT translation, not the workstation's IP configuration.

Why the other options are wrong

A

The user can access the intranet and ping the default gateway, indicating IP connectivity is fine. DNS is not required for intranet access or pinging, and incorrect DNS would prevent name resolution but not all internet access (IP-based access would still work).

C

The user can ping the default gateway (192.168.1.1), which indicates the gateway is reachable. If DHCP were not providing a default gateway, the user would have no gateway or an incorrect one, and pinging 192.168.1.1 would fail.

D

A static IP address would not cause the described symptom because the user can access the intranet and ping the default gateway, indicating proper IP configuration and connectivity to the local network. The issue is with internet access, which points to a routing or NAT problem, not the IP assignment method.

When would these options actually be correct?

A

A user can access the internet by IP address but not by domain name. The technician verifies that the default gateway is correct and reachable. In this scenario, an incorrect DNS server address would be the most likely cause.

C

A user cannot access any network resources, including the intranet. The technician finds the workstation has no default gateway configured. In this scenario, the DHCP server failing to provide a default gateway would be the likely cause.

D

This option would be correct in a scenario where a user cannot access any network resources (neither intranet nor internet) and the technician finds an IP address that does not match the subnet of the default gateway, indicating a misconfigured static IP.

Why candidates pick the wrong answer

A

Candidates often associate internet access issues with DNS, overlooking that the symptom here is complete internet failure (not just name resolution failure) and that intranet access works, which DNS does not affect.

C

Candidates may confuse symptoms of DNS failure (can access intranet but not internet) with DHCP issues, assuming that if DHCP is broken, the gateway might be missing or wrong, but here the gateway is correctly set and reachable.

D

Candidates may think that a static IP could conflict with DHCP or be misconfigured, but here the user can ping the gateway, so the IP is valid. The temptation comes from assuming static IPs often cause connectivity issues without verifying actual symptoms.

253
MCQmedium

A network administrator wants to configure routers to send syslog messages only for events of severity 'error' (3) or higher (more severe). Which severity level should be set as the trap level?

A.0 (emergencies)
B.3 (errors)
C.2 (critical)
D.4 (warnings)
AnswerB

Configuring the router to send syslog messages for 'errors' (severity level 3) is the correct choice. In syslog, severity levels are numerical, where lower numbers indicate higher urgency. Setting the logging level to 3 means the router will send messages for this level and all numerically lower, more severe levels (0-emergencies, 1-alerts, 2-critical). This precisely captures all 'errors' and any events of greater importance, fulfilling the requirement.

Why this answer

Setting the trap level to 3 (errors) instructs the router to send syslog messages for severity 3 and all numerically lower (more severe) levels (0, 1, 2, 3). This matches the requirement to capture events of severity 'error' (3) or higher severity.

Exam trap

The trap here is that candidates often mistakenly think the trap level filters only that exact severity, when in fact it includes that level and all numerically lower (more severe) levels, leading them to choose a lower number like 2 or 0 instead of the correct 3.

Why the other options are wrong

A

Setting the trap level to 0 (emergencies) would only send syslog messages for severity 0 events, not for severity 3 or higher. The trap level includes the specified severity and all more severe levels, so level 0 excludes errors (3), critical (2), and warnings (4).

C

Setting the trap level to 2 (critical) would only send syslog messages for severity 0, 1, and 2, excluding severity 3 (errors). The requirement is to include severity 3 and higher, so level 3 is needed.

D

Setting the trap level to 4 (warnings) would include events of severity 4 and higher (0-4), which includes warnings (4) and excludes errors (3). The requirement is to send messages for severity 3 (error) or higher, so level 4 would not capture errors.

When would these options actually be correct?

A

This option would be correct if the question asked: 'A network administrator wants to receive syslog messages only for emergencies (severity 0). Which severity level should be set as the trap level?'

C

If the question asked to send syslog messages only for events of severity 'critical' (2) or higher (more severe), then setting the trap level to 2 would be correct.

D

If the question asked to send syslog messages for events of severity 'warning' (4) or higher (more severe), then setting the trap level to 4 would be correct, as it includes warnings and all more severe levels (0-3).

Why candidates pick the wrong answer

A

Candidates may mistakenly think that setting a lower number (like 0) captures more events, not realizing that the trap level includes the specified level and all numerically lower (more severe) levels, so level 0 only captures emergencies.

C

Candidates may confuse the trap level with a threshold that includes all severities below the number, or they might think 'critical' is the highest severity and thus covers all, not realizing that lower numbers indicate higher severity.

D

Candidates may confuse the direction of severity levels, thinking that a higher number includes more severe events, or they may misread 'higher (more severe)' to mean numerically higher values, when in fact lower numbers indicate higher severity.

254
MCQmedium

A network administrator needs to connect two switches that are 80 meters apart using UTP cabling and achieve 1 Gbps speed. The administrator has Cat5e and Cat6 cables available. Which standard should be used?

A.1000BASE-T
B.1000BASE-LX
C.10GBASE-T
D.100BASE-TX
AnswerA

1000BASE-T is the appropriate standard for this scenario because it delivers a Gigabit Ethernet (1 Gbps) connection over unshielded twisted-pair (UTP) cabling. It reliably supports distances up to 100 meters, making it perfectly suitable for the 80-meter requirement. This standard typically utilizes all four twisted pairs within Cat5e or Cat6 cables for full-duplex operation.

Why this answer

1000BASE-T (IEEE 802.3ab) is the correct standard because it supports 1 Gbps over Cat5e or Cat6 UTP cabling at distances up to 100 meters. With 80 meters between switches, both cable types are well within the 100-meter reach, and 1000BASE-T is designed specifically for twisted-pair copper at this speed.

Exam trap

The trap here is that candidates may choose 10GBASE-T because they see Cat6 available, forgetting that Cat6 only supports 10GBASE-T up to 55 meters and Cat5e not at all, while 1000BASE-T is the correct match for 1 Gbps over UTP at 80 meters.

Why the other options are wrong

B

1000BASE-LX uses single-mode or multimode fiber optic cabling, not UTP. The question specifies UTP cabling, so this standard is incompatible.

C

10GBASE-T requires Cat6a or higher cabling for distances up to 100 meters at 10 Gbps; Cat5e and Cat6 cables are insufficient for 10GBASE-T at 80 meters, and the question specifies 1 Gbps speed, not 10 Gbps.

D

100BASE-TX only supports 100 Mbps, not the required 1 Gbps speed, and is insufficient for the 80-meter distance at 1 Gbps.

When would these options actually be correct?

B

1000BASE-LX would be correct if the question required connecting two switches over a distance greater than 100 meters (e.g., 500 meters) using fiber optic cabling, or if the environment had high electromagnetic interference.

C

A network administrator needs to connect two switches 80 meters apart using Cat6a or Cat7 cabling and achieve 10 Gbps speed. The correct standard would be 10GBASE-T.

D

A network administrator needs to connect two switches 80 meters apart using UTP cabling, but the budget only allows for Cat5e cables and the required speed is 100 Mbps. In that case, 100BASE-TX would be the correct standard.

Why candidates pick the wrong answer

B

Candidates may confuse 1000BASE-LX as a copper standard due to the '1000' prefix, or think it supports UTP because of the 'BASE' designation, overlooking the 'LX' indicating long-wavelength fiber.

C

Candidates may confuse the higher speed capability of Cat6 with supporting 10GBASE-T, or think that since Cat6 is available, a 10 Gbps standard could be used, overlooking the distance and cable rating requirements.

D

Candidates may confuse 100BASE-TX with 1000BASE-T due to similar naming, or mistakenly think that Cat5e is only rated for 100 Mbps, not realizing it supports 1000BASE-T up to 100 meters.

255
MCQeasy

A network administrator is documenting the network topology. Which of the following tools is best suited for creating a diagram that shows the logical connections between network devices?

A.Microsoft Excel
B.Microsoft Visio
C.SNMP
D.Notepad
AnswerB

Microsoft Visio is a dedicated diagramming application specifically designed for creating professional-grade network topology diagrams. It offers an extensive library of pre-built stencils representing various network devices like routers, switches, and firewalls, along with smart connectors that maintain logical relationships. This specialization allows network administrators to accurately document both physical and logical network layouts, facilitating clear communication and efficient network management.

Why this answer

Microsoft Visio is the correct tool because it is specifically designed for creating professional network topology diagrams, including logical connections between devices. Unlike general-purpose tools, Visio provides network-specific shapes, templates, and layering capabilities that accurately represent logical relationships such as VLANs, subnets, and routing paths.

Exam trap

The trap here is that candidates confuse SNMP (a monitoring protocol) with a diagramming tool, assuming it can generate topology maps automatically, but SNMP only provides raw data and requires a separate tool like Visio for logical visualization.

Why the other options are wrong

A

Microsoft Excel is a spreadsheet application designed for data analysis and tabular data, not for creating network topology diagrams. It lacks specialized shapes and connectors for logical network diagrams.

C

SNMP is a protocol for network management and monitoring, not a diagramming tool. It cannot create visual representations of logical connections.

D

Notepad is a plain text editor that cannot create diagrams or visual representations of network topology; it lacks drawing and layout capabilities.

When would these options actually be correct?

A

When the question asks for a tool to create a spreadsheet listing IP addresses, MAC addresses, and device names for inventory purposes, Microsoft Excel would be the best choice.

C

When the question asks for a tool to automatically discover network devices and retrieve their configuration or status information, SNMP would be the correct choice.

D

When the question asks for a tool to record configuration changes or document textual network device information (e.g., IP addresses, hostnames) without requiring a diagram.

Why candidates pick the wrong answer

A

Candidates may think Excel can be used to draw diagrams using its drawing tools or shapes, but it is not optimized for network diagramming and lacks the efficiency of dedicated tools like Visio.

C

Candidates may confuse SNMP's role in network management with the ability to map network topology, assuming it can generate diagrams from discovered data.

D

Candidates may think Notepad can be used for quick notes or simple topology descriptions, but it cannot produce structured diagrams.

256
MCQmedium

A company has deployed a WPA2-Enterprise wireless network. Users report that they cannot authenticate. The RADIUS server logs show that authentication attempts are received but no responses are sent back to the wireless controller. The wireless controller and RADIUS server are on different subnets, separated by a firewall. Which of the following is the MOST likely cause?

A.The wireless clients do not support the correct EAP method.
B.The firewall is blocking RADIUS traffic on UDP ports 1812 and 1813.
C.The RADIUS server is not in the same broadcast domain as the wireless controller.
D.The SSID is not being broadcast.
AnswerB

WPA2-Enterprise networks rely on RADIUS (Remote Authentication Dial-In User Service) for centralized authentication, with the wireless controller acting as a RADIUS client. RADIUS primarily uses UDP ports 1812 for authentication and 1813 for accounting. If a firewall positioned between the wireless controller and the RADIUS server is configured to block traffic on these specific UDP ports, authentication requests or responses will be dropped. This prevents the RADIUS server from validating user credentials or returning an Access-Accept/Reject message, resulting in authentication timeouts and users being unable to connect to the network.

Why this answer

The RADIUS server logs show authentication attempts are received but no responses are sent back, indicating the request reached the server but the reply is being dropped. Since the wireless controller and RADIUS server are on different subnets separated by a firewall, the most likely cause is that the firewall is blocking the return RADIUS traffic. RADIUS uses UDP ports 1812 for authentication and 1813 for accounting, and these must be open in both directions for successful communication.

Exam trap

The trap here is that candidates often assume the issue is with client configuration (EAP method) or layer 2 connectivity (broadcast domain), when the symptom of 'requests received but no responses sent' points directly to a firewall blocking the return path, a classic network-layer troubleshooting scenario.

Why the other options are wrong

A

The RADIUS server logs show authentication attempts are received, indicating the wireless clients' EAP methods are successfully reaching the server. The issue is that no responses are sent back, which points to a network connectivity problem, not client-side EAP support.

C

The RADIUS server logs show authentication attempts are received, indicating the wireless controller can reach the RADIUS server. Being in the same broadcast domain is not required for RADIUS, which operates at Layer 3 and can traverse routers.

D

The SSID not being broadcast prevents clients from seeing the network in their scan lists, but the RADIUS server logs show authentication attempts are received, indicating clients are already attempting to connect. The issue is that no responses are sent back, pointing to a network path problem, not SSID visibility.

When would these options actually be correct?

A

This would be correct in a scenario where users cannot authenticate and the RADIUS server logs show no authentication attempts at all, or show errors indicating unsupported EAP types. For example, if clients are configured for PEAP but the server only supports EAP-TLS.

C

In a scenario where the wireless controller and RADIUS server are on the same subnet but authentication fails, and the issue is that the controller cannot discover the RADIUS server via broadcast (e.g., using a non-IP-based protocol or misconfigured service location).

D

In a scenario where users report they cannot see the wireless network in their available networks list, and the network is configured not to broadcast the SSID, then the SSID not being broadcast would be the correct answer. This would be a different question focusing on network discovery rather than authentication failures.

Why candidates pick the wrong answer

A

Candidates may confuse client-side EAP configuration issues with server-side response failures, especially when the symptom is 'cannot authenticate' without considering where in the authentication flow the failure occurs.

C

Candidates may confuse the need for Layer 2 connectivity (broadcast domain) with Layer 3 reachability, especially when troubleshooting network segmentation issues.

D

Candidates may confuse authentication issues with network visibility problems, assuming that if users cannot authenticate, the SSID might not be visible, even though the logs show authentication attempts are reaching the RADIUS server.

257
MCQeasy

At which layer of the OSI model does the conversion of data frames into electrical signals for transmission occur?

A.Layer 1 (Physical)
B.Layer 2 (Data Link)
C.Layer 3 (Network)
D.Layer 4 (Transport)
AnswerA

The Physical layer (Layer 1) is where the actual conversion of digital data into physical signals occurs. This layer defines the electrical, mechanical, procedural, and functional specifications for transmitting raw bit streams over a communication medium. It is responsible for encoding bits into electrical voltages for copper cables, light pulses for fiber optics, or radio waves for wireless connections, enabling the physical transmission and reception of data across the network.

Why this answer

Layer 1 (Physical) is responsible for the actual transmission of raw bits over a physical medium. This includes converting data frames received from Layer 2 into electrical signals (e.g., voltage levels on copper), light pulses (fiber optic), or radio waves (wireless). The Physical layer defines the hardware specifications, such as connectors, cable types, and signaling methods like Manchester encoding or NRZ.

Exam trap

The trap here is that candidates often confuse the Data Link layer's role in 'framing' with the actual physical transmission, leading them to select Layer 2 when the question specifically asks about conversion to electrical signals.

Why the other options are wrong

B

The conversion of data frames into electrical signals occurs at Layer 1 (Physical), not Layer 2. Layer 2 (Data Link) handles framing, MAC addressing, and error detection, but does not perform signal conversion.

C

Layer 3 (Network) handles logical addressing and routing, not the conversion of data frames into electrical signals. That conversion occurs at Layer 1 (Physical).

D

Layer 4 (Transport) handles end-to-end communication, segmentation, and reassembly, not the conversion of data frames into electrical signals. That conversion occurs at Layer 1 (Physical).

When would these options actually be correct?

B

A question asking 'At which layer does a switch use MAC addresses to forward frames?' would have Layer 2 as the correct answer, because switches operate at the Data Link layer.

C

A question asking 'At which layer does IP addressing and routing occur?' would have Layer 3 as the correct answer.

D

A question asking 'At which OSI layer does TCP segment data and provide reliable delivery?' would have Layer 4 (Transport) as the correct answer.

Why candidates pick the wrong answer

B

Candidates may confuse the term 'frames' with the Data Link layer, but the question specifically asks about conversion to electrical signals, which is a physical layer function.

C

Candidates may confuse the conversion of frames to signals with the encapsulation of packets into frames, which involves Layer 2, leading them to mistakenly think Layer 3 is involved.

D

Candidates may confuse the transport layer's role in data transmission with the physical process of signal conversion, or they might think 'transport' implies moving data across the physical medium.

258
MCQmedium

A network administrator needs to identify which devices are generating the most traffic on a WAN link. The administrator requires detailed flow data including source and destination IP addresses, ports, and protocols. Which technology should be deployed?

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

NetFlow is a network protocol developed by Cisco that collects IP traffic information as it enters or exits an interface. It aggregates packets into "flows" based on common attributes such as source/destination IP addresses, ports, protocol, and Type of Service (ToS). This detailed per-flow data allows network administrators to precisely identify which specific hosts, applications, or conversations are consuming the most bandwidth on a WAN link, making it ideal for traffic analysis and anomaly detection.

Why this answer

NetFlow is the correct technology because it provides detailed flow-level data, including source and destination IP addresses, ports, and protocols, which is exactly what the administrator needs to identify which devices are generating the most traffic on a WAN link. Unlike SNMP or Syslog, NetFlow exports metadata about network flows, allowing for granular traffic analysis and bandwidth usage per conversation.

Exam trap

The trap here is that candidates often confuse SNMP's interface utilization data with the detailed per-flow information that only NetFlow provides, leading them to choose SNMP polling when the question explicitly asks for source/destination IPs, ports, and protocols.

Why the other options are wrong

A

SNMP polling provides aggregate interface statistics (e.g., bandwidth utilization) but does not deliver detailed flow data like source/destination IPs, ports, and protocols.

C

Syslog is used for logging system messages and events, not for capturing detailed flow data like source/destination IPs, ports, and protocols. It does not provide traffic volume analysis per device.

D

ICMP is used for diagnostic purposes like ping and traceroute, not for collecting detailed flow data such as source/destination IPs, ports, and protocols.

When would these options actually be correct?

A

A network administrator needs to monitor overall bandwidth utilization on a WAN link over time to identify trends and capacity planning needs, without requiring per-flow details.

C

A network administrator needs to centralize and analyze error logs, security alerts, or system events from multiple devices (e.g., routers, firewalls, servers) for troubleshooting or compliance. Syslog would be the correct technology to deploy.

D

A network administrator needs to test connectivity and measure round-trip time between two devices to verify link status and latency. ICMP echo requests and replies provide this basic connectivity check.

Why candidates pick the wrong answer

A

Candidates may confuse SNMP's ability to monitor traffic volume with the detailed flow analysis provided by NetFlow, assuming SNMP can supply the same granular data.

C

Candidates may confuse Syslog with flow monitoring because both involve network device data, but Syslog focuses on event logs rather than traffic flows.

D

Candidates may confuse ICMP with network monitoring tools because ping is commonly used to check if a device is reachable, leading them to think it can provide traffic flow details.

259
MCQmedium

A network administrator needs to analyze bandwidth utilization and application traffic patterns on a WAN link. The administrator requires detailed flow-level data, including source/destination IP addresses, ports, and protocol. Which technology should be deployed?

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

NetFlow is a Cisco-developed protocol that exports detailed network flow records from routers and switches to a collector. These records contain crucial information such as source and destination IP addresses, ports, protocols, timestamps, and byte/packet counts for each conversation. This granular data is ideal for analyzing bandwidth utilization, identifying top talkers, understanding application traffic patterns, and detecting anomalies across the network.

Why this answer

NetFlow is the correct choice because it provides detailed flow-level data, including source/destination IP addresses, ports, and protocol information, which is essential for analyzing bandwidth utilization and application traffic patterns on a WAN link. Unlike simpler monitoring tools, NetFlow captures metadata about each network flow, allowing administrators to identify which applications and hosts are consuming bandwidth.

Exam trap

CompTIA often tests the distinction between SNMP and NetFlow, where candidates mistakenly choose SNMP because they think it provides detailed traffic analysis, but SNMP only gives aggregate interface counters, not per-flow data.

Why the other options are wrong

A

SNMP provides aggregated statistics and device health metrics, not detailed flow-level data like source/destination IPs, ports, and protocols.

C

Syslog is used for logging system events and messages, not for capturing detailed flow-level data like source/destination IPs, ports, and protocols. It lacks the granular flow analytics required for bandwidth utilization and application traffic pattern analysis.

D

ICMP is a network-layer protocol used for error reporting and diagnostics (e.g., ping, traceroute), not for collecting flow-level data such as source/destination IP addresses, ports, and protocol details.

When would these options actually be correct?

A

When the question asks for monitoring device CPU/memory usage, interface errors, or overall bandwidth utilization without requiring per-flow details, SNMP is the correct choice.

C

Syslog would be correct in a scenario where a network administrator needs to centralize and analyze system logs from routers, switches, firewalls, or servers for troubleshooting security events, error messages, or compliance auditing, without requiring flow-level traffic details.

D

A question asking which protocol is used to test connectivity or measure round-trip time between two hosts, or to identify path MTU issues, would make ICMP the correct answer.

Why candidates pick the wrong answer

A

Candidates often associate SNMP with network monitoring and assume it can provide traffic analysis, but it lacks the granular flow-level data that NetFlow offers.

C

Candidates may confuse Syslog with a monitoring tool, assuming it can provide traffic analysis because it collects data from network devices, but they overlook that Syslog is event-based and does not capture flow records.

D

Candidates may confuse ICMP's diagnostic capabilities with traffic analysis, or think that ICMP can provide bandwidth utilization data because it is used in tools like ping for latency checks.

260
MCQeasy

A network administrator wants to prevent unauthorized DHCP servers from offering IP addresses to clients on a switch. Which security feature should be enabled?

A.BPDU guard
B.DHCP snooping
C.Dynamic ARP inspection
D.Port security
AnswerB

DHCP snooping is a crucial security feature implemented on network switches that inspects DHCP messages to prevent unauthorized DHCP servers from distributing IP addresses. It classifies switch ports as either trusted (connected to legitimate DHCP servers) or untrusted (all other ports). The switch then actively blocks DHCP offer messages originating from untrusted ports, ensuring clients only receive IP configurations from authorized sources. This mechanism effectively mitigates man-in-the-middle attacks and ensures network integrity by preventing rogue servers from interfering with IP address assignment.

Why this answer

DHCP snooping is the correct answer because it is a security feature specifically designed to filter untrusted DHCP messages on a switch. By configuring trusted and untrusted ports, DHCP snooping drops DHCP server responses (OFFER, ACK) received on untrusted ports, effectively preventing rogue DHCP servers from assigning IP addresses to clients.

Exam trap

The trap here is that candidates confuse DHCP snooping with Dynamic ARP Inspection, but DAI only validates ARP traffic, not DHCP offers, while BPDU guard is an STP mechanism unrelated to DHCP security.

Why the other options are wrong

A

BPDU guard is used to prevent loops by disabling ports that receive Bridge Protocol Data Units (BPDUs) from unauthorized switches, not to block unauthorized DHCP servers.

C

Dynamic ARP inspection (DAI) validates ARP packets to prevent ARP spoofing, but it does not prevent unauthorized DHCP servers from assigning IP addresses. DHCP snooping is the feature that filters DHCP messages and blocks rogue DHCP servers.

D

Port security limits the number of MAC addresses per port but does not prevent unauthorized DHCP servers from assigning IP addresses.

When would these options actually be correct?

A

A network administrator wants to prevent a rogue switch from being connected to an access port and participating in the spanning tree protocol. Enabling BPDU guard on the port would disable it upon receiving a BPDU, thus protecting the STP topology.

C

Dynamic ARP inspection would be correct in a scenario where the question asks for a security feature to prevent ARP spoofing or man-in-the-middle attacks on a switch, such as when a malicious host sends fake ARP replies to intercept traffic.

D

A network administrator wants to restrict the number of devices that can connect to a specific switch port based on MAC addresses. Enabling port security would be the correct answer.

Why candidates pick the wrong answer

A

Candidates may confuse BPDU guard with DHCP snooping because both are security features that protect against unauthorized network devices, but they operate at different layers and for different protocols.

C

Candidates may confuse DAI with DHCP snooping because both are often used together in DHCP-based security, and both involve inspecting network traffic at Layer 2. The similarity in purpose (securing IP assignments) leads to this mix-up.

D

Candidates may confuse port security with DHCP snooping because both are switch security features, but port security focuses on MAC address control rather than DHCP message validation.

261
MCQmedium

A network administrator wants to prevent unauthorized devices from connecting to the company's Ethernet ports. The company uses a centralized authentication server. Which IEEE standard should be implemented?

A.802.1X
B.802.11i
C.802.3af
D.802.1Q
AnswerA

IEEE 802.1X is a port-based network access control standard designed to prevent unauthorized devices from connecting to a wired or wireless LAN. It enforces authentication before granting network access by using the Extensible Authentication Protocol (EAP) between a supplicant (the client device), an authenticator (typically a switch or access point), and an authentication server (usually RADIUS). This process ensures that only authenticated and authorized users or devices can access network resources, effectively securing the physical access layer.

Why this answer

802.1X is the IEEE standard for port-based Network Access Control (NAC) that authenticates devices before granting access to an Ethernet port. It uses a centralized authentication server (typically RADIUS) to verify credentials, preventing unauthorized devices from connecting to the network. This directly matches the requirement of controlling access at the port level with a centralized server.

Exam trap

The trap here is that candidates confuse 802.1X with wireless security standards like 802.11i, because both involve authentication, but 802.1X is specifically for wired port-based access control.

Why the other options are wrong

B

802.11i is a wireless security standard (WPA2) for Wi-Fi networks, not for controlling access to Ethernet ports. The question specifies preventing unauthorized devices from connecting to Ethernet ports, which requires a port-based network access control standard like 802.1X.

C

802.3af is Power over Ethernet (PoE) standard, which provides power over Ethernet cables, not port-based network access control. The question asks for preventing unauthorized devices, which is addressed by 802.1X.

D

802.1Q is used for VLAN tagging, not for port-based network access control. It does not authenticate devices or prevent unauthorized connections to Ethernet ports.

When would these options actually be correct?

B

If the question asked about securing a wireless LAN against unauthorized access, 802.11i (WPA2) would be the correct answer. For example: 'A company wants to implement strong encryption and authentication for its Wi-Fi network. Which IEEE standard should be used?'

C

A question asking: 'Which IEEE standard allows Ethernet switches to deliver power to devices such as IP cameras and VoIP phones?' would make 802.3af the correct answer.

D

A network administrator needs to segment traffic on a trunk link between switches to separate different departments' traffic. Implementing 802.1Q VLAN tagging would be the correct answer.

Why candidates pick the wrong answer

B

Candidates may confuse 802.11i with 802.1X because both involve authentication and security, but 802.11i is specific to wireless, while 802.1X applies to both wired and wireless networks.

C

Candidates may confuse 802.3af with 802.1X due to similar numbering (802.3 vs 802.1) and the fact that both involve Ethernet ports, but they serve entirely different purposes.

D

Candidates may confuse 802.1X (port-based access control) with 802.1Q (VLAN tagging) due to similar numbering, or think that VLANs can restrict access by isolating ports, but VLANs do not authenticate devices.

262
MCQmedium

A company wants to protect its internal network by placing web servers that need to be accessible from the internet in a separate network segment. Which security architecture best describes this setup?

A.Intranet
B.VPN
C.DMZ
D.Extranet
AnswerC

A DMZ (Demilitarized Zone) is a perimeter network designed to expose public-facing services, such as web servers, to an untrusted network (the internet) while isolating them from the organization's private internal network. It acts as a buffer, typically secured by two firewalls, to prevent direct access from the internet to internal resources even if the public-facing server is compromised. This architecture significantly enhances security by limiting the attack surface on the core internal network.

Why this answer

A DMZ (demilitarized zone) is a network segment that sits between the internal trusted network and the external untrusted internet. By placing web servers in the DMZ, the company ensures that external users can access the servers without directly exposing the internal network, as traffic must pass through a firewall that enforces strict access control policies. This architecture is specifically designed to isolate public-facing services from internal assets, reducing the attack surface.

Exam trap

The trap here is that candidates confuse a DMZ with a VPN, thinking that a VPN provides the same isolation for public servers, when in fact a VPN is designed for secure remote access to internal resources, not for hosting services accessible to the general internet.

Why the other options are wrong

A

An intranet is a private network accessible only to an organization's internal users, not designed to host publicly accessible web servers. Placing internet-facing servers in an intranet would expose internal resources to external threats.

B

A VPN creates an encrypted tunnel for remote access or site-to-site connectivity, but it does not isolate publicly accessible web servers from the internal network. The question specifically asks for a separate network segment for internet-facing servers, which is the definition of a DMZ.

D

An extranet is a controlled private network allowing external partners limited access to internal resources, not a separate network segment for publicly accessible web servers. The question describes isolating web servers in a DMZ, not providing external partner access.

When would these options actually be correct?

A

A question asking which network segment is used for internal-only resources, such as internal file servers or employee portals, where no external access is required. The correct answer would be intranet.

B

A VPN would be correct in a question asking: 'A company needs to allow remote employees to securely access internal resources over the internet. Which technology should be implemented?'

D

A question asking: 'A company wants to allow its suppliers to access specific internal applications securely over the internet. Which network architecture should be used?' would make extranet correct, as it extends internal network access to authorized external entities.

Why candidates pick the wrong answer

A

Candidates may confuse 'intranet' with 'internet' or think it refers to any network segment, not realizing it specifically means an internal, private network.

B

Candidates may confuse VPN with network segmentation because both involve securing traffic, but VPN focuses on encryption and remote access, not physical or logical separation of public-facing servers.

D

Candidates may confuse 'extranet' with 'external network' or think it refers to any network accessible from outside, missing that extranet specifically involves controlled partner access rather than public-facing isolation.

263
MCQmedium

After replacing a faulty switch, several users in the same VLAN report that they cannot communicate with the server that is on a different subnet. The switch is connected to the router via a trunk port. Which command should the administrator run on the router to verify that the VLAN is allowed on the trunk?

A.show vlan
B.show interfaces trunk
C.show mac address-table
D.show ip route
AnswerB

The `show interfaces trunk` command is indispensable for diagnosing inter-switch connectivity issues affecting specific VLANs. It provides a comprehensive overview of all trunking interfaces on the switch, detailing their operational status, encapsulation type (e.g., IEEE 802.1Q), and, critically, the list of VLANs explicitly allowed to traverse each trunk link. If the VLAN where users are experiencing problems is not included in the allowed list on the trunk connecting the new switch to the network, traffic for that VLAN will be dropped, preventing communication.

Why this answer

The `show interfaces trunk` command displays which VLANs are allowed on each trunk port. Since the switch is connected to the router via a trunk, this command verifies whether the VLAN of the affected users is permitted on that trunk. If the VLAN is missing from the allowed list, traffic to the server on a different subnet will be dropped at the router interface.

Exam trap

The trap here is that candidates confuse `show vlan` (which shows local switch VLANs) with `show interfaces trunk` (which shows VLAN filtering on the trunk), leading them to pick A when the real issue is trunk permission, not VLAN existence.

Why the other options are wrong

A

The 'show vlan' command displays VLAN information on the switch, not the router. The question specifies verifying VLAN allowed on a trunk from the router, which requires 'show interfaces trunk' on the router or switch.

C

The 'show mac address-table' command displays MAC address forwarding table entries, not VLAN trunking information. It cannot verify whether a specific VLAN is allowed on a trunk port.

D

The 'show ip route' command displays the routing table, which is used for determining the path to reach different subnets. It does not show VLAN information or trunk port configurations, so it cannot verify whether a specific VLAN is allowed on a trunk.

When would these options actually be correct?

A

If the question asked 'Which command on a switch displays the VLANs configured and their port assignments?' then 'show vlan' would be correct, as it lists VLANs and associated ports on the switch.

C

This command would be correct when troubleshooting connectivity issues within the same VLAN, such as verifying which switch port a device is connected to or checking for MAC address flapping. For example, after replacing a switch, if users in the same VLAN cannot communicate with each other, 'show mac address-table' helps confirm MAC learning on the new switch.

D

This command would be correct if the question asked about verifying that the router has a route to the server's subnet, for example: 'After replacing a faulty switch, users cannot reach a server on a different subnet. Which command verifies the router has a route to that subnet?'

Why candidates pick the wrong answer

A

Candidates may confuse VLAN configuration commands with trunk verification commands, or assume 'show vlan' shows trunk information because it relates to VLANs.

C

Candidates may confuse MAC address table with VLAN trunking, thinking that checking MAC addresses on the trunk will reveal VLAN membership, or they may mistakenly believe the trunk's allowed VLAN list is derived from MAC addresses.

D

Candidates may think that since the server is on a different subnet, the issue must be related to routing, so they choose a routing verification command without considering that the problem might be at Layer 2 on the trunk link.

264
MCQmedium

A switch port is configured as a trunk with native VLAN 99. When a frame tagged with VLAN 99 is received on the trunk, the switch displays an error. What is the most likely issue?

A.The trunk is using 802.1Q encapsulation and the remote switch expects ISL
B.The remote switch is sending frames on VLAN 99 as untagged
C.The remote switch is tagging frames on the native VLAN
D.The allowed VLAN list does not include VLAN 99
AnswerC

When a trunk is configured with native VLAN 99, frames for that VLAN should be sent untagged. If the remote switch sends them tagged, the receiving switch may log errors or drop the frames because it expects untagged frames for the native VLAN.

Why this answer

The native VLAN is the VLAN that carries untagged traffic on an 802.1Q trunk. By design, frames belonging to the native VLAN should be sent untagged. When a switch receives a frame tagged with the native VLAN ID (VLAN 99), it indicates a mismatch in native VLAN configuration between the two ends of the trunk.

The switch logs an error because it expects native VLAN frames to be untagged, but the remote switch is incorrectly tagging them.

Exam trap

The N10-009 exam often tests the misconception that native VLAN frames are always tagged, when in fact they must remain untagged on an 802.1Q trunk, and the error occurs because the remote switch is tagging them.

Why the other options are wrong

A

The error is caused by receiving a tagged frame on the native VLAN, not by encapsulation mismatch. 802.1Q and ISL are incompatible, but the question states the trunk is configured as a trunk with native VLAN 99, implying 802.1Q is used; ISL does not support native VLANs.

B

The error occurs because the switch expects untagged frames on the native VLAN, but the remote switch is sending tagged frames on VLAN 99. If the remote switch were sending untagged frames, they would be accepted on the native VLAN without error.

D

The question states that a frame tagged with VLAN 99 is received on the trunk, but the native VLAN is 99. The error occurs because the remote switch is tagging frames on the native VLAN, which should be sent untagged. The allowed VLAN list is not the issue because the frame is being received, indicating VLAN 99 is allowed.

When would these options actually be correct?

A

A switch port configured as a trunk using 802.1Q on one side and ISL on the other would cause errors because the encapsulation types are incompatible. This would be the correct answer if the question described a trunk link with mismatched encapsulation protocols.

B

This option would be correct if the question described a scenario where a trunk port is configured with native VLAN 99, but the remote switch is sending frames on VLAN 99 as untagged, causing a mismatch because the local switch expects them to be tagged (e.g., if the native VLAN is not VLAN 99 on the remote side).

D

This option would be correct if the question described that frames on VLAN 99 are being dropped or not forwarded, and the trunk configuration explicitly denies VLAN 99 in the allowed VLAN list, or if the switch displays an error indicating VLAN 99 is not allowed on the trunk.

Why candidates pick the wrong answer

A

Candidates may confuse trunking issues with encapsulation mismatches, especially when native VLAN concepts are not fully understood, leading them to assume an encapsulation mismatch is the cause of the error.

B

Candidates may confuse the behavior of native VLANs, thinking that frames on the native VLAN must always be tagged, or they may misinterpret the error message as indicating a mismatch in tagging versus untagging.

D

Candidates may confuse the native VLAN with the allowed VLAN list, thinking that if a VLAN is not in the allowed list, it would cause an error. However, the error here is due to tagging mismatch on the native VLAN, not a filtering issue.

265
MCQmedium

A network engineer needs to add a new switch to an existing network. The switch must be configured to support VLANs and trunking. The engineer connects the switch to the existing network via a trunk port. After configuration, the VLANs on the new switch are not receiving traffic from the core network. The core switch shows the trunk is up but no VLANs are allowed. What is the most likely cause?

A.The native VLAN mismatch
B.The trunk encapsulation is not set to 802.1Q
C.The allowed VLAN list on the trunk does not include the desired VLANs
D.The switch port mode is set to access
AnswerC

The allowed VLAN list on a trunk port explicitly defines which VLAN IDs are permitted to traverse that link. Even if the trunk itself is operational and established, any VLAN traffic not included in this configured list will be filtered and dropped by the switch. This mechanism ensures strict control over VLAN propagation, making it a primary reason why specific desired VLANs might fail to communicate across an otherwise functional trunk.

Why this answer

The core switch shows the trunk is up but no VLANs are allowed, which directly indicates that the allowed VLAN list on the trunk port does not include the desired VLANs. By default, a trunk port permits all VLANs, but if an administrator explicitly restricts the allowed VLAN list (e.g., with the 'switchport trunk allowed vlan' command), only those VLANs are forwarded. Since the new switch is not receiving traffic, the core switch's trunk likely has an empty or incorrect allowed VLAN list, preventing the desired VLAN traffic from crossing the trunk.

Exam trap

The N10-009 exam often tests the misconception that a trunk being 'up/up' means all VLANs are automatically allowed, when in fact the allowed VLAN list can be explicitly restricted or cleared, causing traffic loss without any physical or encapsulation issues.

Why the other options are wrong

A

The question states the trunk is up but no VLANs are allowed, indicating the issue is with the allowed VLAN list, not a mismatch. A native VLAN mismatch would cause traffic issues for untagged frames, but the trunk is operational and the problem is that no VLANs are permitted.

B

The question states the trunk is up, meaning the encapsulation is already set correctly (likely 802.1Q by default on modern switches). If encapsulation were mismatched, the trunk would not come up at all.

When would these options actually be correct?

A

A network engineer configures a trunk between two switches, and after connecting, devices on the same VLAN cannot communicate across the trunk, but the trunk link is up. The core switch shows the trunk is up, but the native VLAN is different on each end. This would be the correct answer when the symptom is that untagged traffic (like management traffic) fails, but tagged traffic may work.

B

A network engineer connects two switches with a trunk, but the trunk fails to establish. The core switch uses 802.1Q, while the new switch defaults to ISL. In this scenario, setting the trunk encapsulation to 802.1Q would resolve the issue.

Why candidates pick the wrong answer

A

Candidates often confuse native VLAN mismatch with allowed VLAN issues because both involve VLAN configuration on trunks. The term 'native VLAN mismatch' is a common troubleshooting concept, leading them to select it without carefully reading that the trunk is up and the problem is that no VLANs are allowed.

B

Candidates may recall that encapsulation mismatch can cause trunk issues, but they overlook that the trunk is already up, indicating encapsulation is not the problem here.

266
MCQmedium

A network technician needs to find which physical patch panel port in the server room connects to a specific office wall jack. Which type of network documentation should the technician consult?

A.Logical topology diagram
B.Cabling diagram
C.Network baseline
D.Rack diagram
AnswerB

A cabling diagram is the definitive documentation for tracing physical network connections. It meticulously maps specific ports on patch panels to corresponding wall jacks or other termination points, often including cable identifiers and lengths. This visual representation is crucial for quickly locating the physical path of a network drop, essential for troubleshooting connectivity issues or making infrastructure changes.

Why this answer

A cabling diagram provides the physical layer (Layer 1) documentation that maps specific patch panel ports to wall jacks, including cable runs, termination points, and labeling. This is exactly what the technician needs to trace the physical connection from the server room patch panel to the office wall jack.

Exam trap

CompTIA often tests the distinction between physical and logical documentation, and the trap here is that candidates confuse a logical topology diagram (which shows data flow) with a cabling diagram (which shows physical connections), leading them to select A instead of B.

Why the other options are wrong

A

A logical topology diagram shows data flow and device connections (e.g., IP addresses, VLANs), not physical cabling paths between patch panels and wall jacks.

C

A network baseline documents normal performance metrics (e.g., bandwidth utilization, latency), not physical connectivity between patch panels and wall jacks.

D

A rack diagram shows the physical layout of equipment in a rack, not the cabling path from a patch panel to a wall jack. It does not map specific ports to remote locations.

When would these options actually be correct?

A

When the question asks which documentation shows how devices communicate on the network (e.g., 'Which diagram illustrates the data path between a switch and a router?').

C

When the question asks for documentation to compare current network performance against a historical reference to identify anomalies or capacity issues, a network baseline is the correct choice.

D

When the technician needs to identify the physical location of a specific patch panel or switch within a rack, such as determining which rack unit contains a device for troubleshooting or replacement.

Why candidates pick the wrong answer

A

Candidates confuse 'logical' with 'physical' documentation, assuming any network diagram will show cable connections.

C

Candidates may confuse 'baseline' with any foundational documentation, mistakenly thinking it includes physical cabling records.

D

Candidates may confuse rack diagrams with cabling documentation, assuming that the physical arrangement of patch panels in a rack also indicates port-to-jack connections.

267
MCQmedium

A small office has multiple devices that need internet access but the ISP provides only a single public IPv4 address. Which network address translation (NAT) technique is most appropriate to allow all internal hosts to share that one public address?

A.Static NAT
B.Dynamic NAT
C.PAT (Port Address Translation)
D.IP masquerading
AnswerC

PAT, also known as NAT Overload, is the most common form of NAT used in small offices and homes. It allows multiple internal devices to share a single public IP address by translating both the source IP address and the source port number of outbound connections. The router maintains a translation table, mapping unique internal IP:port combinations to the single public IP with a unique public port, enabling simultaneous internet access for many hosts.

Why this answer

PAT (Port Address Translation), also known as NAT overload, is the correct choice because it allows multiple internal hosts to share a single public IPv4 address by mapping each unique internal IP:port combination to a different source port on the public address. This is the only NAT technique that provides many-to-one address translation, which is exactly what a small office with more devices than public IPs requires.

Exam trap

The N10-009 exam often tests the distinction between Dynamic NAT and PAT by presenting a scenario with a single public IP, where candidates mistakenly choose Dynamic NAT because they confuse 'dynamic' with 'shared,' not realizing Dynamic NAT still requires a pool of public IPs.

Why the other options are wrong

A

Static NAT maps a single public IP to a single private IP one-to-one, so it cannot allow multiple internal hosts to share one public address.

D

IP masquerading is a term often used interchangeably with PAT in Linux, but in the context of this CompTIA question, PAT is the standard term. The question asks for the 'most appropriate' technique, and PAT is the correct answer; IP masquerading is not a distinct technique recognized in the CompTIA objectives.

When would these options actually be correct?

A

A question where an internal server (e.g., a web server) must be accessible from the internet using a fixed public IP address, and the internal host's private IP must remain constant.

D

In a scenario where the question specifically asks about Linux iptables or router configuration using the term 'masquerade' (e.g., 'Which NAT technique is implemented using the MASQUERADE target in iptables?'), IP masquerading would be the correct answer.

Why candidates pick the wrong answer

A

Candidates may confuse static NAT with PAT because both involve address translation, but static NAT lacks port multiplexing needed for sharing a single IP among many hosts.

D

Candidates may have encountered the term 'IP masquerading' in Linux networking contexts and mistakenly believe it is a separate NAT technique, or they may confuse it with PAT due to similar functionality.

268
MCQeasy

A network administrator is reviewing syslog messages generated by a switch. The administrator wants to see only the most critical events, such as system failures. Which syslog severity level should be configured as the filter?

A.0 – Emergency
B.1 – Alert
C.4 – Warning
D.7 – Debug
AnswerA

Syslog severity level 0, designated as "Emergency" or "panic," signifies that the system is completely unusable, demanding immediate human intervention to restore functionality. This is the highest possible severity, indicating a critical component failure, a total system crash, or an equivalent catastrophic event. Such messages are typically broadcast to all logged-in users and require urgent attention to prevent prolonged service disruption.

Why this answer

Syslog severity level 0 (Emergency) is the highest severity, indicating system-level failures that render the switch unusable. By filtering for level 0, the administrator ensures only the most critical events, such as kernel panics or hardware failures, are displayed, excluding all less severe messages.

Exam trap

CompTIA often tests the misconception that 'Alert' (level 1) is the highest severity because of its name, but Emergency (level 0) is actually the most critical per the syslog standard.

Why the other options are wrong

B

The question asks for the most critical events like system failures. Severity level 1 (Alert) is less critical than level 0 (Emergency), so it would not capture only the most critical events.

C

Syslog severity 4 (Warning) is not the most critical; it indicates non-urgent warnings. The question asks for the most critical events like system failures, which require severity 0 (Emergency).

D

Syslog severity level 7 (Debug) is the least critical, used for detailed debugging information. The question asks for the most critical events like system failures, which correspond to level 0 (Emergency), not Debug.

When would these options actually be correct?

B

This option would be correct if the question asked for filtering events that require immediate action but are not necessarily system failures, such as 'critical conditions' or 'immediate attention needed'.

C

A network administrator wants to filter syslog messages to include warnings and more severe events (e.g., for proactive monitoring of potential issues). In that case, setting the filter to severity 4 (Warning) would capture warnings, errors, critical, alerts, and emergencies.

D

This option would be correct if the question asked for filtering to see all events including the most detailed troubleshooting information, or if the goal was to capture maximum verbosity for diagnostic purposes.

Why candidates pick the wrong answer

B

Candidates may confuse 'Alert' with the highest severity, not realizing that 'Emergency' (level 0) is the most critical, or they may think 'Alert' is the top level due to its name.

C

Candidates may confuse 'Warning' with a high-severity level because the term sounds serious, or they may not recall that syslog severity numbers decrease with increasing severity (0 is highest).

D

Candidates may confuse severity levels, thinking higher numbers indicate higher severity, or they might mistakenly believe Debug captures all events including critical ones.

269
MCQeasy

A network administrator is investigating reports of slow network performance. Which tool should the administrator use to capture and analyze individual packets to identify the cause of the latency?

A.Throughput tester
B.Spectrum analyzer
C.NetFlow analyzer
D.Packet analyzer
AnswerD

A protocol analyzer captures and displays the contents of packets, enabling detailed troubleshooting of latency issues.

Why this answer

A packet analyzer captures and decodes individual packets, allowing the administrator to inspect frame-level details, identify retransmissions, TCP window scaling issues, or application-layer delays that cause latency. This granularity is essential for pinpointing the exact cause of slow performance.

Exam trap

The trap here is that candidates confuse a packet analyzer with a throughput tester (Option A), assuming that measuring bandwidth alone will reveal latency causes, when in fact packet-level inspection is required to identify retransmissions, windowing issues, or application-layer delays.

Why the other options are wrong

A

Option A is not a valid tool for capturing and analyzing individual packets; it is a placeholder and does not correspond to any real network diagnostic tool.

B

Option B is not a valid tool for capturing and analyzing individual packets; it likely refers to a network monitoring tool like SNMP-based software that provides aggregate statistics but not packet-level analysis.

C

Option C is not specified, but assuming it refers to a tool like a bandwidth monitor or SNMP-based tool, it would not capture and analyze individual packets; it only provides aggregate statistics or device-level metrics, which cannot pinpoint packet-level latency causes.

When would these options actually be correct?

A

In a question asking for a network monitoring tool that provides high-level traffic statistics rather than packet-level analysis, option A could be correct if it represented a tool like SNMP-based monitoring.

B

Option B would be correct if the question asked for a tool to monitor overall network bandwidth usage or to identify which devices are generating the most traffic over time, rather than analyzing individual packets.

C

Option C would be correct if the question asked for a tool to monitor overall network utilization or bandwidth consumption trends over time, such as using SNMP to graph interface traffic from routers or switches.

Why candidates pick the wrong answer

A

Candidates might choose option A if they misread the question or assume any tool listed could be correct without verifying its actual function.

B

Candidates may confuse network monitoring tools that provide traffic summaries with packet analyzers, assuming any tool that shows network data can capture packets.

C

Candidates may confuse tools that monitor network performance (e.g., bandwidth usage) with tools that perform deep packet inspection, assuming any performance tool can capture packets, or they may not understand the distinction between aggregate monitoring and packet-level analysis.

270
MCQmedium

A network administrator is setting up a new branch office that will connect to the main headquarters over the Internet. The connection must be encrypted and allow the branch to access internal resources as if they were directly connected. Which of the following VPN types is BEST suited for this site-to-site connection?

A.IPsec
B.SSL VPN
C.PPTP
D.L2TP
AnswerA

IPsec (Internet Protocol Security) is the industry standard for establishing secure site-to-site VPNs, making it the optimal choice for connecting a new branch office to a main office. It operates at the network layer (Layer 3) and provides robust security through cryptographic protocols for data authentication, integrity, and confidentiality. Key components like Authentication Header (AH) and Encapsulating Security Payload (ESP) ensure secure data transmission, while Internet Key Exchange (IKE) manages secure key negotiation, establishing a trusted tunnel between VPN gateways.

Why this answer

IPsec is the correct choice because it is specifically designed for site-to-site VPNs, providing encryption and authentication at the IP layer to create a secure tunnel between two networks. This allows the branch office to access internal resources at headquarters as if they were directly connected, using a gateway-to-gateway model that encrypts all traffic between the sites.

Exam trap

The N10-009 exam often tests the distinction between remote-access VPNs (SSL VPN) and site-to-site VPNs (IPsec), where candidates mistakenly choose SSL VPN because it is commonly used for client-based access, but it lacks the full network-layer bridging required for a branch office to appear directly connected.

Why the other options are wrong

B

SSL VPN is designed for remote user access to specific applications via a web browser, not for persistent site-to-site connectivity that requires full network-layer integration as if directly connected.

C

PPTP is outdated and has known security vulnerabilities, making it unsuitable for a secure site-to-site VPN over the Internet that requires strong encryption.

D

L2TP alone does not provide encryption; it typically relies on IPsec for that. For a site-to-site VPN requiring encryption and direct network access, IPsec is the standard, not L2TP.

When would these options actually be correct?

B

A question asking for the best VPN type to provide secure remote access for individual employees from home to a single internal application (e.g., email or a CRM) via a web portal, without requiring full network-layer connectivity.

C

A question specifying a legacy system that only supports PPTP, or a scenario where compatibility with older devices is required and security is not a primary concern.

D

L2TP would be correct in a scenario where the question specifies a VPN that must support non-IP networks (e.g., Frame Relay) or when the exam asks for a tunneling protocol that can carry multiple protocols and encryption is handled separately (e.g., L2TP/IPsec).

Why candidates pick the wrong answer

B

Candidates may confuse SSL VPN's encryption and remote access capabilities with site-to-site requirements, or they may think 'SSL' implies stronger security than IPsec for all VPN scenarios.

C

Candidates may recall PPTP as a common VPN protocol and overlook its security flaws, or confuse it with more secure protocols like IPsec.

D

Candidates may confuse L2TP as a VPN protocol that includes encryption, or they might recall that L2TP is often used with IPsec, but forget that L2TP alone lacks encryption.

271
MCQmedium

A network engineer needs to deploy a new wireless network in a large office with many cubicles. The goal is to provide high throughput and support multiple simultaneous users. Which IEEE standard should be implemented?

A.802.11ac
B.802.11n
C.802.11b
D.802.11g
AnswerA

802.11ac is the optimal choice for a large office due to its operation exclusively in the less congested 5 GHz band, offering significantly higher throughput, often reaching gigabit speeds. Its key feature, Multi-User Multiple-Input Multiple-Output (MU-MIMO), allows an access point to communicate with multiple client devices simultaneously, drastically improving efficiency and overall network capacity in high-density user environments. This standard is specifically designed to handle the demands of numerous users and bandwidth-intensive applications concurrently.

Why this answer

802.11ac (Wi-Fi 5) operates exclusively in the 5 GHz band, uses wider 80 MHz or 160 MHz channels, and supports MU-MIMO (Multi-User Multiple Input Multiple Output) to deliver high throughput and efficient handling of multiple simultaneous users in a dense office environment. This makes it the best choice among the options for a modern, high-capacity wireless deployment.

Exam trap

The trap here is that candidates often choose 802.11n because it supports MIMO and dual-band operation, overlooking that 802.11ac's MU-MIMO and wider channels provide significantly better performance for multiple simultaneous users in a dense environment.

Why the other options are wrong

B

802.11n is an older standard with lower maximum throughput (up to 600 Mbps) compared to 802.11ac (up to 6.9 Gbps) and does not support the higher density and performance requirements of a large office with many simultaneous users.

D

802.11g supports a maximum data rate of 54 Mbps and operates only in the 2.4 GHz band, which cannot provide the high throughput required for multiple simultaneous users in a large office.

When would these options actually be correct?

B

A question asking for a cost-effective upgrade from 802.11a/g for a small office with fewer than 10 users and no need for high-definition streaming or large file transfers would make 802.11n the correct answer.

D

An exam scenario where a small office or home network needs to upgrade from 802.11b to a faster but still 2.4 GHz-only standard, with legacy device compatibility and low cost as priorities.

Why candidates pick the wrong answer

B

Candidates may recall that 802.11n was a significant improvement over earlier standards and mistakenly believe it is still sufficient for modern high-density environments, or they may confuse it with 802.11ac due to similar naming.

D

Candidates may confuse 802.11g with 802.11n or ac, thinking 'g' is newer than it is, or assume all 802.11 standards offer similar performance.

272
MCQhard

A network technician is troubleshooting an intermittent connectivity issue between two switches connected via fiber optic cable. The link status shows up/down flapping. The technician checks the optical power levels and finds they are within acceptable range. Which of the following is the most likely cause?

A.Dirty fiber connectors
B.Electromagnetic interference
C.Incorrect VLAN configuration
D.Duplex mismatch
AnswerA

Contamination on fiber end faces, such as dust, oil, or residue, can significantly attenuate the optical signal, leading to intermittent signal degradation. This occurs because the foreign material obstructs the light path, causing reflections and refractions that reduce the received power. The intermittent nature often arises from slight movements, vibrations, or temperature changes affecting the contact points, causing the signal to drop below a usable threshold and then recover, manifesting as link flapping.

Why this answer

Dirty fiber connectors cause intermittent connectivity by scattering or absorbing light, leading to bit errors and link flaps even when average optical power levels appear within acceptable range. The flapping occurs because transient contaminants (e.g., dust or oil) momentarily disrupt the optical signal, triggering link down events that recover when the connector is jostled or the contaminant shifts. Since the power meter measures average power, it may not detect brief attenuation spikes caused by dirt.

Exam trap

The trap here is that candidates assume acceptable average optical power levels rule out physical-layer issues, but The N10-009 exam often tests that intermittent faults like dirty connectors cause flapping despite passing a static power measurement.

Why the other options are wrong

B

Fiber optic cables are immune to electromagnetic interference (EMI) because they transmit light, not electrical signals. Thus, EMI cannot cause flapping on a fiber link.

C

Incorrect VLAN configuration typically causes consistent connectivity failures or inability to communicate across VLANs, not intermittent link flapping. The link status up/down issue is physical layer, not logical layer 2.

D

Duplex mismatch typically causes symptoms like high error rates or slow performance, not link flapping. The question specifies that optical power levels are acceptable, and fiber links are generally immune to duplex issues because they use separate transmit and receive paths.

When would these options actually be correct?

B

A network technician is troubleshooting intermittent connectivity between two switches connected via copper Ethernet cable in a factory with heavy machinery. The link status shows up/down flapping. Optical power levels are not applicable.

In this scenario, electromagnetic interference from nearby equipment is a likely cause.

C

A network technician is troubleshooting a connectivity issue where devices on the same switch can communicate, but devices on different switches cannot. The link lights are solid. Which of the following is the most likely cause?

D

A question describing a connectivity issue between two switches where one is set to full duplex and the other to half duplex, resulting in packet loss, collisions, or poor performance but not necessarily link flapping. The correct answer would be duplex mismatch.

Why candidates pick the wrong answer

B

Candidates may confuse fiber with copper cabling, where EMI is a common issue, or mistakenly think that EMI can affect any type of cable.

C

Candidates may confuse symptoms of VLAN misconfiguration (like no connectivity across switches) with physical layer issues, especially when the problem is intermittent.

D

Candidates may confuse symptoms of duplex mismatch (e.g., errors, slow throughput) with link flapping, or they may recall that duplex mismatch is a common cause of connectivity problems on copper Ethernet links and incorrectly apply it to fiber.

273
MCQmedium

A network administrator needs to securely transfer backup configuration files from a router to a remote server over the internet. Which protocol should be used?

A.TFTP
B.FTP
C.SCP
D.SNMP
AnswerC

SCP (Secure Copy Protocol) is the correct choice because it leverages the Secure Shell (SSH) protocol to encrypt both the data in transit and the authentication credentials. This robust encryption protects sensitive configuration files from eavesdropping and tampering during transfer between the router and a destination, ensuring confidentiality and integrity. It operates over TCP port 22, making it suitable for secure transfers over untrusted networks like the internet.

Why this answer

SCP (Secure Copy Protocol) is the correct choice because it provides encrypted file transfers over SSH, ensuring confidentiality and integrity of backup configuration files transmitted over the internet. Unlike TFTP or FTP, SCP authenticates the remote server and encrypts the data in transit, which is essential for secure remote backups.

Exam trap

The N10-009 exam often tests the distinction between TFTP (for local, unsecure boot/backup) and SCP (for secure remote transfers), and the trap here is that candidates might choose TFTP because it is commonly used for router backups in lab environments, overlooking the 'over the internet' security requirement.

Why the other options are wrong

A

TFTP lacks encryption and authentication, making it insecure for transferring backup files over the internet where data could be intercepted or modified.

B

FTP transmits data, including authentication credentials, in cleartext, making it insecure for transferring sensitive backup files over the internet.

D

SNMP is used for network management and monitoring, not for secure file transfer. It lacks the capability to transfer backup configuration files securely over the internet.

When would these options actually be correct?

A

When transferring configuration files to a local server on a trusted, isolated network segment where speed is critical and security is not a concern.

B

When the question specifies a trusted internal network with no security concerns, and the requirement is for simple file transfers with authentication and directory listing, FTP would be appropriate.

D

When the question asks for a protocol to monitor network devices, retrieve status information, or configure devices remotely (e.g., 'Which protocol should be used to poll a router's interface statistics from a central management server?').

Why candidates pick the wrong answer

A

Candidates may associate TFTP with router configuration transfers due to its common use in local network device management, overlooking the security requirements of internet-based transfers.

B

Candidates may associate FTP with file transfers and overlook the security requirement, or they may confuse FTP with SFTP/FTPS which are secure.

D

Candidates may confuse SNMP's management capabilities with file transfer, or think SNMP can be used to back up configurations because it can read/write MIB objects, but it is not designed for bulk file transfer.

274
MCQmedium

A network technician installs a new 802.3at (PoE+) access point in a warehouse. The AP is connected via a 200-foot Cat5e cable to a switch that only supports 802.3af (PoE). The AP powers on but experiences intermittent connectivity drops. What is the most likely cause?

A.The cable length exceeds the maximum allowed for PoE
B.The AP is not receiving enough power from the switch
C.Duplex mismatch between the AP and the switch
D.Radio frequency interference from warehouse equipment
AnswerB

An 802.3at PoE+ access point requires up to 30 watts of power at the port for full functionality. If connected to a switch that only supports 802.3af PoE, it will receive a maximum of 15.4 watts. This significant power deficit means the AP cannot operate reliably, leading to intermittent reboots, erratic behavior, or failure to fully initialize, directly causing intermittent connectivity issues.

Why this answer

The switch only supports 802.3af (PoE), which provides a maximum of 15.4 watts per port, while the 802.3at (PoE+) access point requires up to 25.5 watts to operate reliably. The AP powers on because it can negotiate 802.3af power, but under load (e.g., transmitting at higher power or using multiple radios), it draws more current than the switch can supply, causing voltage droop and intermittent resets or link drops. This is a classic power budget mismatch scenario.

Exam trap

The trap here is that candidates see the AP powers on and assume power is sufficient, overlooking that 802.3at devices can operate at reduced functionality on 802.3af but will fail under higher load, leading them to incorrectly blame cable length or RF interference instead of the power budget mismatch.

Why the other options are wrong

A

The maximum cable length for Ethernet (including PoE) is 100 meters (328 feet), so a 200-foot cable is within the limit and not the cause of the issue.

C

Duplex mismatch typically causes symptoms like high error rates, collisions, or complete link failure, not intermittent connectivity drops specifically tied to power delivery. The AP powers on, indicating the link is established, and the issue is power-related due to PoE+ device on PoE switch.

D

The AP powers on, indicating it receives some power, but intermittent drops are due to insufficient power (802.3af provides 15.4W vs. 802.3at's 30W). RF interference would cause consistent connectivity issues or packet loss, not intermittent drops tied to power negotiation.

When would these options actually be correct?

A

A network technician connects a PoE device using a 150-meter Cat5e cable and the device fails to power on. The cable length exceeds the 100-meter limit for Ethernet, causing signal degradation and power loss.

C

A network technician connects two switches with a crossover cable but one switch is set to half-duplex and the other to auto-negotiation, resulting in high error rates and intermittent connectivity. The most likely cause is duplex mismatch.

D

A wireless AP experiences intermittent connectivity in a warehouse with heavy machinery. The AP is powered by a local power adapter, not PoE. The most likely cause is RF interference from equipment operating in the same frequency band (e.g., 2.4 GHz).

Why candidates pick the wrong answer

A

Candidates may mistakenly believe that PoE has a shorter distance limit than standard Ethernet, or they confuse the 100-meter limit with a shorter PoE-specific limit.

C

Candidates may recall that duplex mismatch is a common cause of intermittent connectivity issues, but they overlook that the AP powers on, suggesting the link is functional, and the specific power difference (802.3af vs 802.3at) is the key clue.

D

Candidates may assume warehouse environments have significant RF interference from machinery, and intermittent drops seem consistent with interference, overlooking the power mismatch as the root cause.

275
MCQmedium

A network administrator plans to make a configuration change on a core switch during a maintenance window. According to best practices, which document should the administrator prepare and have approved before making the change?

A.A) Change management request
B.B) Network diagram
C.C) Incident report
D.D) Backup configuration
AnswerA

Correct. A change management request is the formal document that details the planned change, its purpose, impact, testing, and rollback plan. It requires approval before implementation.

Why this answer

A change management request is the correct document because it formalizes the proposed configuration change, including the scope, risk assessment, rollback plan, and approval chain. This ensures that all stakeholders review and authorize the change before implementation, reducing the risk of unintended network outages or security gaps. Best practices from ITIL and Cisco's own change management guidelines mandate this process for any production network device modification.

Exam trap

The N10-009 exam often tests the distinction between operational documents (diagrams, reports) and procedural documents (change requests), trapping candidates who confuse a supporting artifact with the required approval document.

Why the other options are wrong

B

A network diagram is a visual representation of the network topology, not a procedural document for approving changes. Best practices require a change management request to document, review, and authorize configuration changes before implementation.

C

An incident report documents an event that has already occurred, not a planned change. The question asks for a document to be prepared and approved before making a change, which is the purpose of a change management request.

D

The question asks for the document to prepare and have approved before making a change, which is a change management request. A backup configuration is a safety measure but not a document that requires approval prior to the change.

When would these options actually be correct?

B

When a question asks which document is most useful for understanding the current network layout before planning a new device installation or troubleshooting a connectivity issue, a network diagram would be the correct answer.

C

A network administrator discovers a security breach and needs to document the details, impact, and response actions. In this scenario, an incident report would be the correct document to prepare and submit.

D

This option would be correct for a question like: 'A network administrator is about to apply a critical firmware update to a core switch. Which document should the administrator ensure is available to restore the switch to its previous state if the update fails?'

Why candidates pick the wrong answer

B

Candidates may think a network diagram is necessary to plan the change, but the question specifically asks for the document to be prepared and approved before making the change, which is the change management request.

C

Candidates may confuse incident reports with change management because both involve documentation and approval processes, but incident reports are reactive (after an event) while change management is proactive (before a change).

D

Candidates may think that having a backup configuration is a necessary preparatory step before any change, and they might confuse 'preparing' a document with 'having a backup ready' as a best practice.

276
MCQeasy

A network administrator needs to ensure that network device configurations are automatically backed up to a central server. Which protocol is commonly used for secure file transfer of configurations?

A.TFTP
B.FTP
C.SFTP
D.HTTP
AnswerC

SFTP, or SSH File Transfer Protocol, provides robust security for automated network device configuration backups by leveraging the underlying SSH protocol. It encrypts both data and authentication credentials, preventing eavesdropping and ensuring data integrity during transfer. This secure channel is crucial for protecting sensitive network configurations from unauthorized access and tampering, making it the ideal choice for automated, secure transfers.

Why this answer

SFTP (SSH File Transfer Protocol) is the correct choice because it provides encrypted, secure file transfers over an SSH session, making it ideal for backing up sensitive network device configurations to a central server. Unlike TFTP or FTP, SFTP ensures both authentication and data confidentiality, which is critical for network operations.

Exam trap

The trap here is that candidates often confuse TFTP's simplicity and widespread use in network device booting (e.g., IOS image transfers) with a secure backup solution, overlooking that TFTP lacks any security mechanisms.

Why the other options are wrong

A

TFTP lacks encryption and authentication, making it insecure for transferring sensitive configuration files. The question specifies 'secure file transfer,' which TFTP does not provide.

B

FTP transmits data, including login credentials, in cleartext, which does not meet the requirement for secure file transfer in this question.

When would these options actually be correct?

A

A question asks: 'Which protocol is commonly used for simple, unencrypted file transfers during network device bootstrapping or firmware upgrades when security is not a concern?'

B

A question asking for a protocol to transfer files in a trusted internal network where security is not a concern, or when the requirement is for a simple, widely supported protocol without encryption.

Why candidates pick the wrong answer

A

Candidates often associate TFTP with network device backups because it is widely used for trivial file transfers in network environments, overlooking the security requirement.

B

Candidates may associate FTP with file transfer and overlook the 'secure' requirement, or they may not fully understand the security differences between FTP and SFTP.

277
MCQeasy

A network administrator needs to monitor the health and performance of network devices and receive alerts when link failures occur. Which of the following protocols should be implemented?

A.SNMP
B.SMTP
C.SSH
D.TFTP
AnswerA

SNMP (Simple Network Management Protocol) is the industry-standard protocol specifically designed for managing and monitoring network devices. It enables network administrators to collect critical operational data, such as CPU utilization, interface statistics, and error rates, from various network components like routers, switches, and servers. SNMP agents on these devices respond to queries from a network management station (NMS) and can proactively send unsolicited alerts, known as traps, when predefined thresholds are exceeded or significant events occur, facilitating comprehensive network health oversight.

Why this answer

SNMP (Simple Network Management Protocol) is the correct choice because it is specifically designed to monitor and manage network devices, collect performance metrics, and send traps or notifications when events like link failures occur. SNMP agents on devices report status to a management system, which can generate alerts based on thresholds or trap messages (e.g., linkDown traps per RFC 3418).

Exam trap

The trap here is that candidates often confuse SNMP with SMTP because both can be involved in alerting, but SMTP is only a delivery mechanism for email-based alerts, not the protocol that actually monitors devices and detects link failures.

Why the other options are wrong

B

SMTP is used for sending email messages, not for monitoring network device health or receiving alerts about link failures. It does not provide device status polling or trap-based notifications.

C

SSH is used for secure remote administration and command execution, not for monitoring device health or receiving link failure alerts. It lacks the standardized MIB structure and trap/notification mechanisms that SNMP provides for network monitoring.

D

TFTP is a file transfer protocol used for transferring configuration files or firmware, not for monitoring device health or receiving link failure alerts.

When would these options actually be correct?

B

A question asking which protocol is used to send email alerts from a network monitoring system to an administrator's email address would make SMTP correct.

C

A network administrator needs to securely manage and configure network devices remotely, ensuring encrypted communication. In that scenario, SSH would be the correct protocol to implement.

D

A network administrator needs to back up router configurations to a central server without authentication overhead. Which protocol should be used?

Why candidates pick the wrong answer

B

Candidates may confuse SMTP with SNMP because both are network protocols with similar acronyms, or they might think SMTP is used for sending alerts since alerts are often delivered via email.

C

Candidates may confuse SSH with SNMP because both are commonly used in network management, or they might think SSH can be used to check device status via command-line scripts, overlooking the need for a dedicated monitoring protocol with alerting capabilities.

D

Candidates may confuse TFTP with SNMP because both are UDP-based and used in network management contexts, but TFTP lacks monitoring and alerting capabilities.

278
MCQhard

A network technician is troubleshooting a router that is not forwarding packets to a remote destination network. The routing table shows a valid route learned via OSPF. The technician can successfully ping the next-hop IP address from the router. However, packets to the destination network are not being forwarded. Which of the following is the MOST likely cause?

A.Hardware switching/forwarding is disabled or the forwarding table is corrupted
B.The OSPF neighbor relationship is in the EXSTART state
C.The outbound interface has been administratively shut down
D.There is an ACL blocking the return traffic
AnswerA

A router maintains both a routing table (control plane) and a forwarding table (data plane). Even with a valid route in the routing table, if the forwarding table is corrupted or not properly synchronized, packets will not be forwarded. This is a common issue in hardware-based switching.

Why this answer

When a router has a valid OSPF-learned route and can ping the next-hop IP but still fails to forward packets, the issue is often with the data plane rather than the control plane. Hardware switching mechanisms (such as fast switching or generic forwarding engines) handle packet forwarding; if they are disabled or the forwarding information base (FIB) becomes corrupted, the router will not forward packets even though the routing table (RIB) is correct. Disabling hardware switching forces the router to use process switching, which can also cause forwarding failures.

Exam trap

The trap here is that candidates assume a valid route in the routing table and a successful ping to the next-hop guarantee packet forwarding, but CompTia tests the distinction between the control plane (routing table) and the data plane (forwarding table).

Why the other options are wrong

B

The OSPF neighbor relationship being in EXSTART state prevents OSPF adjacency formation, but the routing table already shows a valid OSPF-learned route, indicating the neighbor relationship is fully established (FULL state). Thus, EXSTART is not relevant.

C

The outbound interface being administratively shut down would prevent the technician from successfully pinging the next-hop IP address from the router, which contradicts the scenario where the ping succeeds.

D

The router can successfully ping the next-hop IP, indicating that outbound traffic is not blocked by an ACL. The issue is with forwarding packets to the destination network, not with return traffic, and the problem persists despite a valid OSPF route and reachable next-hop.

When would these options actually be correct?

B

This would be correct in a scenario where the routing table does NOT show a valid OSPF route, and the technician is troubleshooting why OSPF routes are missing. The EXSTART state indicates the routers are exchanging database descriptors but have not yet synchronized, so routes are not installed.

C

This option would be correct in a scenario where the router cannot ping the next-hop IP address, and the routing table shows a valid route, but the interface is administratively down, causing all traffic to fail.

D

An ACL blocking return traffic would be correct if the symptom were that pings from the router to the destination succeed, but traffic from the destination back to the source fails (e.g., asymmetric routing or missing permit statements for return traffic).

Why candidates pick the wrong answer

B

Candidates may confuse OSPF neighbor states and think EXSTART implies a problem with route propagation, not realizing that a valid route in the table means the adjacency is fully established.

C

Candidates may think that an administratively shut interface is a common cause of forwarding failures, overlooking that the successful ping to the next-hop IP already rules out this issue.

D

Candidates often confuse outbound and inbound ACLs, or assume that any connectivity issue must be due to an ACL, especially when other obvious causes (like interface status or routing) appear fine.

279
MCQeasy

Which of the following is a characteristic of a Layer 2 network switch?

A.Makes forwarding decisions based on IP addresses
B.Uses MAC addresses to make forwarding decisions
C.Can route traffic between different VLANs without a router
D.Provides Network Address Translation (NAT)
AnswerB

A Layer 2 network switch operates at the Data Link Layer, using Media Access Control (MAC) addresses for intelligent frame forwarding. It dynamically builds a MAC address table (CAM table) by learning the source MAC addresses of incoming frames and associating them with specific ports. When a frame arrives, the switch inspects its destination MAC address and consults the CAM table to forward the frame only to the corresponding output port, effectively segmenting collision domains and enhancing network efficiency.

Why this answer

A Layer 2 network switch operates at the Data Link layer of the OSI model and uses MAC addresses to make forwarding decisions. It examines the destination MAC address in an Ethernet frame and consults its MAC address table to determine the appropriate port to forward the frame, enabling efficient local area network communication.

Exam trap

The N10-009 exam often tests the distinction between Layer 2 and Layer 3 functionality, and the trap here is that candidates may confuse a switch's ability to segment VLANs with the ability to route between them, forgetting that routing requires a Layer 3 device or process.

Why the other options are wrong

A

Layer 2 switches operate at the data link layer and use MAC addresses, not IP addresses, for forwarding decisions. IP addresses are used by Layer 3 devices like routers.

C

A Layer 2 switch operates at the data link layer and cannot route traffic between VLANs; inter-VLAN routing requires a Layer 3 device such as a router or a multilayer switch.

D

Network Address Translation (NAT) is a function typically performed by routers or firewalls, not by Layer 2 switches. Layer 2 switches operate at the data link layer and do not modify IP addresses.

When would these options actually be correct?

A

This option would be correct for a question asking about a characteristic of a Layer 3 switch or a router, which makes forwarding decisions based on IP addresses.

C

In a question about a multilayer switch that supports both switching and routing, or if the question specifies a Layer 3 switch with routing capabilities enabled, then it can route traffic between VLANs without an external router.

D

A question asking 'Which device provides Network Address Translation (NAT) to allow multiple devices to share a single public IP address?' would have NAT as the correct answer, typically a router or firewall.

Why candidates pick the wrong answer

A

Candidates may confuse the functions of Layer 2 and Layer 3 devices, mistakenly thinking switches use IP addresses because they often work with IP networks in practice.

C

Candidates may confuse a Layer 2 switch with a Layer 3 switch or assume that VLANs inherently provide routing, not realizing that separate VLANs require a routing function to communicate.

D

Candidates may confuse the functions of different network devices, especially when studying multiple layers simultaneously, and mistakenly attribute NAT to switches because they are common in home networks where NAT is often performed by a combined router/switch device.

280
MCQhard

Users on a VLAN report intermittent network disconnections lasting a few seconds. The network technician checks the switch and notices a high number of CRC errors on the port connecting to the core switch. The cable test passes. What is the most likely cause?

A.Duplex mismatch between the two switches
B.STP reconvergence due to topology change
C.Broadcast storm caused by a loop
D.Faulty SFP transceiver on the core switch
AnswerA

A duplex mismatch occurs when one side of a link operates in full-duplex mode while the other operates in half-duplex. This fundamental misconfiguration causes severe packet collisions, as the half-duplex device expects to wait for a clear channel before transmitting, while the full-duplex device transmits whenever it has data. These collisions lead to a high number of Cyclic Redundancy Check (CRC) errors and frame retransmissions, resulting in the reported intermittent network disconnections and poor performance for users.

Why this answer

A duplex mismatch causes one side to send frames while the other is still transmitting, leading to collisions that are interpreted as CRC errors on the receiving interface. Since the cable test passes, the physical layer is fine, and the intermittent nature (lasting seconds) matches the symptom of a duplex mismatch where the half-duplex side backs off after collisions, causing brief outages.

Exam trap

The N10-009 exam often tests the misconception that CRC errors always indicate a bad cable or physical layer issue, but the trap here is that a passing cable test points to a duplex mismatch as the root cause, especially when combined with intermittent disconnections.

Why the other options are wrong

B

CRC errors indicate physical-layer issues like duplex mismatch or cabling problems, not STP reconvergence. STP reconvergence causes brief connectivity loss but does not produce CRC errors.

C

CRC errors indicate layer 1 or layer 2 issues like duplex mismatch, not a broadcast storm. A broadcast storm would cause high utilization and packet drops, not CRC errors.

When would these options actually be correct?

B

This would be correct if the question described intermittent disconnections without any CRC errors, and the cable test passed, suggesting a Layer 2 loop or topology change causing STP to reconverge.

C

This option would be correct if the question described symptoms like all users on the VLAN experiencing severe slowdowns, high CPU usage on switches, and the switch logs showing excessive broadcast traffic, with a loop detected in the topology.

Why candidates pick the wrong answer

B

Candidates may associate intermittent disconnections with STP reconvergence, especially when a topology change is suspected, without considering that CRC errors point to a physical-layer issue.

C

Candidates may associate intermittent disconnections with broadcast storms because both can cause network instability, but they overlook that CRC errors point to physical or duplex issues rather than excessive broadcasts.

281
Matchingmedium

Match each network service to its description.

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

Concepts
Matches

Automatically assigns IP addresses to devices

Resolves domain names to IP addresses

Translates private IP addresses to a public IP

Monitors and manages network devices

Why these pairings

Common network services have specific functions: DHCP assigns IP addresses, DNS resolves names, HTTP serves web content, SMTP handles email, FTP transfers files, and SNMP manages networks. The distractors confuse these roles.

282
MCQmedium

A user's laptop frequently disconnects from the Wi-Fi network when they move to the conference room. Other devices in the conference room maintain stable connections. The laptop shows a strong signal in the conference room. What is the most likely cause?

A.Laptop's wireless adapter driver is outdated or faulty
B.AP channel is congested
C.Laptop is using the 5 GHz band while the AP uses 2.4 GHz
D.Interference from microwave ovens
AnswerA

A driver acts as the interface between the operating system and the hardware, translating commands and managing device functions. An outdated, corrupted, or incompatible wireless adapter driver can lead to miscommunication, causing the adapter to fail to maintain a stable connection, drop packets, or incorrectly handle roaming requests. This specific issue often manifests as intermittent disconnects affecting only that particular device, even when other clients on the same network are stable.

Why this answer

The laptop disconnects only when moving to the conference room, while other devices remain stable, ruling out environmental issues. A strong signal but frequent disconnects points to a client-side problem, most commonly an outdated or faulty wireless adapter driver that fails to handle roaming or power-save transitions properly.

Exam trap

CompTIA often tests the trap that a strong signal guarantees a stable connection, but in reality, client-side driver issues or misconfigured power-save settings can cause disconnects despite excellent RSSI.

Why the other options are wrong

B

The question states that other devices maintain stable connections, ruling out AP channel congestion as the cause since it would affect all devices.

C

The laptop shows a strong signal and other devices work fine, so the issue is not band mismatch. If the laptop were using 5 GHz and the AP only 2.4 GHz, the laptop would not connect at all or would have no signal, not just disconnect when moving.

D

The question states that other devices maintain stable connections, ruling out environmental interference like microwave ovens. The issue is specific to one laptop, indicating a client-side problem.

When would these options actually be correct?

B

In a scenario where multiple devices in the same area experience intermittent disconnections or slow speeds, especially during peak usage times, AP channel congestion would be the likely cause.

C

A user reports intermittent connectivity and slow speeds on a dual-band laptop, but only when far from the AP. Other devices on 2.4 GHz work fine. The laptop is set to prefer 5 GHz, which has shorter range, causing disconnections at distance.

D

A question where multiple devices in the same area experience intermittent disconnections, and a microwave is known to be in use nearby, would make interference the likely cause.

Why candidates pick the wrong answer

B

Candidates may assume that any Wi-Fi issue in a specific location is due to channel congestion, overlooking that the problem is isolated to one device.

C

Candidates may confuse band compatibility issues with general disconnection problems, assuming that a band mismatch can cause intermittent drops rather than complete failure to connect.

D

Candidates may recall that microwaves operate at 2.4 GHz and can cause Wi-Fi interference, but they overlook that the problem is isolated to one laptop, not affecting other devices.

283
MCQhard

A technician is troubleshooting intermittent connectivity issues on a fiber link between two switches. The link light on both switches is green. Which of the following tools should the technician use to further investigate the issue?

A.Multimeter
B.Tone generator
C.Optical power meter
D.Cable certifier
AnswerC

An optical power meter (OPM) is the primary tool for diagnosing signal strength issues on fiber optic links. It precisely measures the amount of light power (in dBm) being transmitted or received, allowing technicians to quantify signal loss or attenuation. Intermittent connectivity often stems from marginal signal levels, where the received power is barely above the receiver's sensitivity threshold, making the OPM essential for identifying excessive loss caused by dirty connectors, tight bends, or faulty splices.

Why this answer

The correct tool is an optical power meter because the link lights are green, indicating Layer 1 signal presence, but intermittent connectivity suggests the signal strength may be marginal or fluctuating. An optical power meter measures the exact light level in dBm to verify it falls within the receiver's sensitivity range, which a simple link LED cannot detect.

Exam trap

The trap here is that candidates assume a green link light guarantees a healthy connection, but The N10-009 exam often tests that Layer 1 indicators only confirm signal presence, not signal quality, so an optical power meter is required to diagnose marginal power levels causing intermittent errors.

Why the other options are wrong

A

A multimeter measures electrical properties like voltage, current, and resistance, not optical power. Since the issue is on a fiber link, a multimeter cannot test light levels or fiber continuity.

B

A tone generator is used to trace copper cables by injecting an audio signal; it cannot test optical power or detect signal loss on a fiber link, which is needed for intermittent connectivity issues.

D

A cable certifier is used to verify that a cabling installation meets performance standards (e.g., Cat6a, fiber) by testing parameters like attenuation and return loss, but it is overkill and not the best tool for troubleshooting intermittent connectivity issues when the link light is green. An optical power meter is more appropriate for measuring light levels to identify marginal signal strength.

When would these options actually be correct?

A

A multimeter would be correct when troubleshooting a copper Ethernet link for issues like faulty power supply, voltage drops, or broken conductors where electrical measurements are needed.

B

A technician needs to identify a specific copper Ethernet cable in a bundle of cables without disrupting service. Using a tone generator and probe allows tracing the cable from one end to the other.

D

A cable certifier would be correct when a technician needs to certify a newly installed fiber link to ensure it meets industry standards (e.g., TIA/EIA) before putting it into production, or when troubleshooting a link that fails to establish a connection (link light off) and requires detailed performance testing.

Why candidates pick the wrong answer

A

Candidates may think a multimeter is a general-purpose troubleshooting tool and assume it can be used on any cable type, not realizing fiber requires specialized optical testing equipment.

B

Candidates may confuse tone generators with fiber optic testers, or think that any connectivity issue requires cable tracing, not realizing fiber requires optical testing tools.

D

Candidates may think a cable certifier is the most comprehensive tool for any cabling issue, or they confuse its role in certification with troubleshooting, not realizing that a green link light indicates basic connectivity is present, so a simpler tool like an optical power meter is sufficient.

284
MCQeasy

A network technician needs to back up the configuration file of a managed switch to a central server on a regular basis. The switch supports a simple and widely used protocol for this purpose. Which of the following protocols should the technician use?

A.A: TFTP
B.B: HTTP
C.C: SNMP
D.D: SSH
AnswerA

TFTP (Trivial File Transfer Protocol) is a lightweight protocol specifically designed for simple, connectionless file transfers, operating over UDP port 69. It is widely supported by network devices like routers and switches as the standard method for automated configuration file backups and firmware upgrades due to its minimal overhead and ease of implementation. While lacking authentication or encryption, its simplicity makes it ideal for use within a trusted internal network environment.

Why this answer

TFTP (Trivial File Transfer Protocol) is the correct choice because it is a simple, lightweight protocol designed specifically for transferring configuration files to and from network devices like managed switches. It uses UDP port 69 and requires no authentication or complex session setup, making it ideal for automated backup scripts that run on a regular basis. While it lacks security features, its simplicity and widespread support in network equipment firmware make it the standard for this purpose.

Exam trap

CompTIA often tests the distinction between TFTP for simple file transfers and SCP/SSH for secure transfers, leading candidates to choose SSH because they assume security is always required, but the question explicitly asks for a 'simple and widely used protocol' where security is not a stated requirement.

Why the other options are wrong

B

HTTP is not designed for simple, automated file transfers to a central server; it lacks the lightweight, connectionless nature of TFTP for backing up switch configurations.

C

SNMP is used for network management and monitoring, not for file transfer. It cannot back up configuration files; it only reads or writes management information.

D

SSH is used for secure remote administration and file transfer (via SCP/SFTP), but it is not the simple, widely used protocol for backing up switch configurations to a central server; TFTP is the standard for such tasks due to its simplicity and lack of authentication overhead.

When would these options actually be correct?

B

If the question asked for a protocol to remotely manage a switch's web interface or access a web-based configuration page, HTTP would be correct.

C

A network administrator needs to monitor the status and performance of network devices and receive alerts when thresholds are exceeded. SNMP would be the correct protocol for this purpose.

D

A network technician needs to securely transfer a configuration file to a remote server over an untrusted network. Which protocol should be used? In this scenario, SSH (with SCP or SFTP) would be correct because it provides encryption and authentication.

Why candidates pick the wrong answer

B

Candidates may confuse HTTP with TFTP because both are application-layer protocols, and HTTP is commonly used for file transfers via downloads/uploads, but it is not optimized for network device backups.

C

Candidates may confuse SNMP's ability to read configuration data (via MIBs) with the ability to transfer entire configuration files, or think SNMP can be used for backup because it can modify device settings.

D

Candidates may associate SSH with network device management and assume it is suitable for configuration backups, overlooking that TFTP is the traditional, lightweight protocol for this purpose in local, trusted environments.

285
MCQeasy

A network device receives a frame and forwards it based on the destination MAC address. The device does not modify the frame and only floods unknown unicast frames. At which layer of the OSI model does this device operate?

A.Layer 1
B.Layer 2
C.Layer 3
D.Layer 4
AnswerB

A network device operating at Layer 2, such as a switch, receives data in the form of frames. It makes forwarding decisions by examining the destination Media Access Control (MAC) address within the frame header. Switches maintain a MAC address table, also known as a Content Addressable Memory (CAM) table, to map MAC addresses to specific ports. If the destination MAC address is unknown, the switch will flood the frame out all ports except the ingress port.

Why this answer

This device operates at Layer 2 (Data Link Layer) because it forwards frames based on the destination MAC address, does not modify the frame, and floods unknown unicast frames. These behaviors are characteristic of a transparent bridge or switch, which uses a MAC address table to make forwarding decisions without examining IP addresses or modifying the frame. Layer 2 devices do not perform routing or alter the frame's content, distinguishing them from Layer 3 routers.

Exam trap

The N10-009 exam often tests the distinction between Layer 2 switching and Layer 3 routing by describing a device that forwards based on MAC addresses but does not modify frames, leading candidates to mistakenly think of a router (Layer 3) because they associate 'forwarding' with routing, when in fact the key clue is the lack of frame modification and the flooding of unknown unicasts.

Why the other options are wrong

A

The device forwards based on MAC addresses and floods unknown unicasts, which are Layer 2 functions. Layer 1 devices (e.g., repeaters, hubs) do not examine MAC addresses and simply regenerate signals.

C

Layer 3 devices (routers) forward based on destination IP address, not MAC address, and they modify the frame by decrementing TTL and recalculating checksums. This device forwards by MAC address and does not modify frames, which is Layer 2 switching.

D

Layer 4 (Transport) handles end-to-end communication, segmentation, and flow control using ports, not MAC address forwarding. The device described operates at Layer 2 (Data Link) because it forwards based on MAC addresses and floods unknown unicasts.

When would these options actually be correct?

A

This option would be correct if the question described a device that regenerates electrical signals without inspecting any frame headers, such as a hub or repeater, and asked at which OSI layer it operates.

C

A question that describes a device forwarding based on destination IP address, performing routing decisions, and modifying the frame (e.g., decrementing TTL) would make Layer 3 the correct answer.

D

A question asking: 'Which OSI layer is responsible for reliable data transfer between hosts, including segmentation and error recovery?' would make Layer 4 correct, as it describes TCP/UDP functions.

Why candidates pick the wrong answer

A

Candidates may confuse the physical transmission of frames with the switching logic, thinking that any device handling frames operates at Layer 1 because it deals with bits.

C

Candidates may confuse MAC address forwarding with IP forwarding, or think that any forwarding device operates at Layer 3, overlooking the specific behavior of switches at Layer 2.

D

Candidates may confuse the device's forwarding behavior with higher-layer processing, thinking that any intelligent forwarding implies Layer 4, or they may misremember that switches operate at Layer 2 and routers at Layer 3, leading to Layer 4 as a guess.

286
MCQmedium

A company is implementing a new wireless network for employees. The network must support seamless roaming between access points. Which protocol should be configured on the wireless controller?

A.802.1X
B.802.11r
C.802.11n
D.802.3af
AnswerB

802.11r, also known as Fast BSS Transition, is a crucial amendment to the 802.11 standard specifically designed to facilitate seamless and rapid roaming for wireless clients. It achieves this by enabling access points to cache master key information (PMKID) and pre-authenticate clients with neighboring APs. This mechanism significantly reduces the time and overhead associated with re-authentication when a client moves between APs, ensuring uninterrupted connectivity for real-time applications like VoIP and video.

Why this answer

802.11r, also known as Fast BSS Transition (FT), enables seamless roaming by allowing a client to authenticate and derive encryption keys with a new access point before or during the reassociation process, reducing the time-sensitive handshake overhead. This is essential for real-time applications like VoIP or video calls where roaming delays must be under 50 ms to avoid perceptible drops.

Exam trap

The trap here is that candidates often confuse 802.1X (authentication) with 802.11r (fast roaming), assuming that any security-related protocol must handle roaming, when in fact 802.1X adds latency rather than reducing it.

Why the other options are wrong

A

802.1X is an authentication protocol, not a roaming protocol. It controls network access but does not optimize handoffs between access points.

C

802.11n is a wireless standard that improves throughput and range but does not include fast roaming mechanisms. Seamless roaming requires protocols like 802.11r (Fast BSS Transition) to reduce authentication latency during handoffs.

D

802.3af is a Power over Ethernet (PoE) standard, not a wireless roaming protocol. It does not facilitate seamless roaming between access points.

When would these options actually be correct?

A

When a question asks for a protocol to provide port-based network access control (e.g., securing a wired or wireless LAN by authenticating users before granting access), 802.1X would be the correct answer.

C

A question asking for a wireless standard that provides higher data rates and better range using MIMO and channel bonding, such as 'Which 802.11 standard supports up to 600 Mbps with multiple antennas?'

D

When a question asks which standard provides power to wireless access points or other network devices over Ethernet cabling, 802.3af (PoE) is the correct answer.

Why candidates pick the wrong answer

A

Candidates may confuse authentication with roaming, thinking that 802.1X's role in wireless security also covers seamless handoff between APs.

C

Candidates may confuse 802.11n as a newer standard that supports roaming improvements, but it actually focuses on speed and range, not fast handoff.

D

Candidates may confuse 802.3af with 802.11 standards due to the similar numbering, or mistakenly think it relates to wireless roaming because it is often associated with access points.

287
MCQmedium

A network technician is installing a new wireless access point in a warehouse. The AP requires PoE+ (802.3at) for full operation. The technician connects the AP using a Cat5e cable run of 200 feet to a switch that only supports 802.3af (PoE). The AP powers on but has intermittent connectivity issues. What is the most likely cause?

A.The cable length exceeds the maximum for PoE
B.The switch does not support the required PoE standard
C.The AP is experiencing interference from metal racks
D.The AP is configured with the wrong SSID
AnswerB

The problem describes intermittent connectivity after cabling, strongly suggesting a power delivery issue. The 802.3af PoE standard provides up to 15.4W to a powered device, while 802.3at (PoE+) delivers up to 30W. If the wireless access point requires 802.3at for full functionality but is connected to an 802.3af-only switch, it will receive insufficient power. This power deficit can cause the AP to operate erratically, reboot intermittently, or experience connectivity drops, especially under load, rather than failing completely.

Why this answer

The switch only supports 802.3af (PoE), which provides up to 15.4W per port, while the AP requires 802.3at (PoE+) for full operation, which supplies up to 30W. Although the AP powers on, it may not receive sufficient power to operate all radios or features, leading to intermittent connectivity issues. The cable length of 200 feet is within the 100-meter (328-foot) limit for Cat5e, so length is not the problem.

Exam trap

The trap here is that candidates assume the AP powers on means it is fully operational, but The N10-009 exam often tests the nuance that PoE+ devices may partially power up with PoE, only to exhibit intermittent issues due to insufficient power budget.

Why the other options are wrong

A

The maximum cable length for PoE (both 802.3af and 802.3at) over Cat5e is 100 meters (328 feet), so 200 feet is well within limits and not the cause of the issue.

C

The question states the AP powers on but has intermittent connectivity, and the switch only supports 802.3af. The issue is insufficient power delivery, not interference. Metal racks could cause RF interference, but that would typically result in poor signal or disconnections, not intermittent connectivity tied to power constraints.

D

The SSID configuration affects client connectivity and network identification, not power delivery or intermittent connectivity caused by insufficient PoE power.

When would these options actually be correct?

A

A network technician runs a PoE camera on a 150-meter Cat5e cable and the camera fails to power on. In this case, the cable length exceeds the 100-meter limit for Ethernet, making it the most likely cause.

C

In a scenario where a wireless AP is placed near large metal structures (e.g., in a warehouse with metal shelving) and experiences frequent disconnections or low throughput, with no power-related symptoms, interference from metal racks would be the most likely cause.

D

A technician installs an AP but clients cannot see the network; after checking, the AP is broadcasting but with a mismatched SSID that clients are not configured to use. The correct answer would be that the AP is configured with the wrong SSID.

Why candidates pick the wrong answer

A

Candidates may incorrectly assume that longer cable runs reduce power delivery or that PoE has stricter distance limits, leading them to blame cable length when the real issue is the PoE standard mismatch.

C

Candidates may associate warehouses with metal racks and assume interference is the default cause of connectivity issues, overlooking the power standard mismatch that is explicitly described in the question.

D

Candidates may confuse configuration issues with power problems, assuming that incorrect SSID settings can cause intermittent connectivity rather than complete lack of access.

288
MCQeasy

A user reports that they cannot access the company's internal web application at https://apps.internal.company.com. The technician can ping the server's IP address (10.10.10.20) successfully and also successfully telnet to 10.10.10.20 on port 443. However, the web browser displays 'Unable to connect'. What is the most likely cause?

A.The web server service is stopped
B.DNS resolution is failing for the FQDN
C.The browser is configured to use an incorrect proxy server
D.A firewall is blocking TCP port 443
AnswerC

If the browser is set to use a proxy server that is unavailable or misconfigured, it will fail to connect to the web server even though network connectivity is fine. Telnet and ping bypass proxy settings, confirming the server is reachable.

Why this answer

The technician can ping the server IP and telnet to port 443, proving the server is reachable and the HTTPS service is listening. However, the browser fails to load the page, which points to a client-side issue. An incorrect proxy server configuration in the browser would cause the browser to send requests to a proxy that cannot reach the internal server, resulting in 'Unable to connect' despite successful network-level connectivity tests.

Exam trap

The trap here is that candidates assume successful telnet to port 443 implies the web application is fully functional, overlooking that the browser may use a proxy server that is not involved in the telnet test, leading them to incorrectly choose a firewall or DNS issue.

Why the other options are wrong

A

The technician can successfully telnet to 10.10.10.20 on port 443, which indicates that the web server service is running and listening on that port. If the service were stopped, telnet would fail.

B

The technician can ping the server's IP address and telnet to port 443 successfully, indicating that DNS resolution is not the issue because connectivity to the server is already established via IP.

D

The technician successfully telneted to port 443, proving that TCP port 443 is not blocked by a firewall. Therefore, a firewall blocking port 443 cannot be the cause.

When would these options actually be correct?

A

In a scenario where a user cannot access a web application and telnet to the server's IP on port 443 fails, the most likely cause would be that the web server service is stopped. For example, if the technician cannot telnet to the server on port 443, the service may not be running.

B

A user cannot access a website by its FQDN but can access it by IP address; pinging the FQDN fails while pinging the IP succeeds. This indicates DNS resolution failure.

D

A user cannot access an HTTPS website, and the technician finds that telnet to the server's IP on port 443 fails (connection refused or timeout), while ping to the server succeeds. This would indicate a firewall blocking TCP 443.

Why candidates pick the wrong answer

A

Candidates may assume that a web server service being stopped is a common cause of web access issues, and they might overlook the successful telnet result which directly contradicts this option.

B

Candidates often associate 'Unable to connect' in a browser with DNS issues, overlooking that successful ping and telnet to the IP rule out DNS failure.

D

Candidates often assume that any connectivity issue involving HTTPS is due to a firewall blocking port 443, without verifying with a direct port test like telnet.

289
MCQmedium

A network engineer is designing a data center network and needs to ensure high availability for the core switches. Which technology allows multiple physical switches to be combined into a single logical switch to simplify management and improve redundancy?

A.Spanning Tree Protocol (STP)
B.Switch stacking
C.EtherChannel
D.Virtual Router Redundancy Protocol (VRRP)
AnswerB

Switch stacking is a technology that physically connects multiple individual switches using dedicated high-speed stacking cables and ports, allowing them to operate as a single logical unit. This configuration provides a unified management plane, simplifying administration and increasing port density while offering enhanced redundancy and a shared backplane for high-speed inter-switch communication. It effectively creates a single, more resilient, and scalable switch from several smaller devices, which is crucial for high-availability data center designs.

Why this answer

Switch stacking combines multiple physical switches into a single logical unit, sharing a common control plane and management interface. This simplifies configuration and provides redundancy because if one switch in the stack fails, the remaining switches continue forwarding traffic without requiring STP convergence.

Exam trap

The N10-009 exam often tests the distinction between EtherChannel (link aggregation) and stacking (switch aggregation), so the trap here is confusing a technology that bundles links with one that bundles entire switches.

Why the other options are wrong

A

STP prevents loops in redundant topologies but does not combine multiple physical switches into a single logical switch; it operates at Layer 2 to block redundant paths, not to aggregate switches.

C

EtherChannel combines multiple physical links into a single logical link for increased bandwidth and redundancy, but it does not combine multiple switches into a single logical switch. The question asks for technology that merges switches, not links.

D

VRRP provides router redundancy at Layer 3, not switch stacking. The question asks about combining multiple physical switches into a single logical switch for management and redundancy, which is a Layer 2 function.

When would these options actually be correct?

A

A question asking which protocol prevents bridging loops in a network with redundant links, or which IEEE standard (802.1D) is used for loop-free topology in switched networks.

C

A network engineer needs to increase bandwidth and provide link redundancy between two switches. Which technology allows multiple physical links to be aggregated into a single logical link?

D

A network engineer needs to ensure high availability for the default gateway in a subnet. Which protocol allows multiple routers to share a virtual IP address, providing redundancy if one router fails?

Why candidates pick the wrong answer

A

Candidates confuse STP's role in redundancy (preventing loops) with the concept of combining switches, because both are associated with high availability in switched networks.

C

Candidates may confuse link aggregation (EtherChannel) with switch stacking, as both involve combining multiple components into a logical entity, but they operate at different levels (links vs. switches).

D

Candidates confuse high availability at Layer 3 (router redundancy) with high availability at Layer 2 (switch stacking), as both involve redundancy and logical grouping.

290
MCQhard

An organization is implementing a network monitoring solution that uses SNMP. The administrator wants to receive traps from all devices but is concerned about the security of SNMPv1/v2c community strings. Which SNMP version should be used to provide authentication and encryption?

A.SNMPv1
B.SNMPv2c
C.SNMPv3
D.SNMPv4
AnswerC

SNMPv3 is the correct choice for secure network monitoring because it incorporates robust security features, including authentication, integrity, and encryption. It utilizes a User-based Security Model (USM) to provide message integrity, data origin authentication, replay protection, and privacy through encryption. This version ensures that sensitive network management data is protected from eavesdropping and unauthorized tampering, making it suitable for modern, security-conscious environments.

Why this answer

SNMPv3 is the correct choice because it is the only version of SNMP that provides both authentication and encryption, addressing the security concerns with SNMPv1/v2c community strings. SNMPv3 supports user-based security models (USM) with features like message integrity, authentication, and encryption (e.g., using SHA/MD5 for auth and AES/DES for privacy). This ensures that traps are sent securely, preventing unauthorized access or tampering.

Exam trap

CompTIA often tests the misconception that SNMPv2c offers improved security over SNMPv1, but in reality, both v1 and v2c are equally insecure because they use plaintext community strings, while SNMPv3 is the only version that provides authentication and encryption.

Why the other options are wrong

A

SNMPv1 does not provide authentication or encryption; it uses plaintext community strings, which does not address the security concern in the question.

B

SNMPv2c does not provide authentication or encryption; it uses plaintext community strings for access control, which is insecure.

D

SNMPv4 does not exist as a standard SNMP version; the current secure version is SNMPv3. The question specifically asks for authentication and encryption, which only SNMPv3 provides.

When would these options actually be correct?

A

When the question asks for the most basic SNMP version for simple monitoring on a trusted, isolated network with no security requirements.

B

A question asking for a simple, low-overhead SNMP version for read-only monitoring on a trusted internal network where security is not a concern and compatibility with older devices is required.

D

If the question asked about the latest SNMP version that includes security features, but mistakenly listed SNMPv4 as an option, it would be correct only if the exam accepted a non-existent version. However, in reality, no such scenario exists.

Why candidates pick the wrong answer

A

Candidates may think SNMPv1 is sufficient because it is widely known and simple, overlooking the security requirements specified in the question.

B

Candidates may confuse SNMPv2c's improved error handling and bulk retrieval with security enhancements, or they may think 'v2c' is more secure than v1 without realizing it still lacks encryption.

D

Candidates may assume that higher version numbers always mean better security, leading them to choose SNMPv4 without verifying its existence or capabilities.

291
MCQmedium

A network engineer is designing an OSPF network for a large enterprise. To reduce the size of routing tables and limit the propagation of external routes, the engineer wants to use a special area that blocks Type 5 LSAs but still allows inter-area routes via a default route. Which type of OSPF area should be configured?

A.Backbone area 0
B.Standard area
C.Stub area
D.Totally stubby area
AnswerC

A stub area is specifically designed to reduce the size of routing tables within an OSPF area by preventing the propagation of Type 5 Link-State Advertisements (LSAs), which carry information about external AS routes. Instead of learning every external route, a stub area's Area Border Router (ABR) injects a default route (0.0.0.0/0) into the area. This significantly simplifies routing decisions for internal routers, as all traffic destined for external networks is simply forwarded to the ABR, while still allowing inter-area routes (Type 3 LSAs) to be learned.

Why this answer

A stub area blocks Type 5 LSAs (external routes) from entering the area, forcing the area border router (ABR) to inject a default route (0.0.0.0/0) for reaching external destinations. This reduces the routing table size while still allowing inter-area routes (Type 3 LSAs) to propagate, exactly matching the requirement.

Exam trap

CompTIA often tests the distinction between stub and totally stubby areas, where candidates mistakenly choose 'totally stubby' because they think it blocks more routes, but the question explicitly requires inter-area routes to still be allowed, which only a stub area provides.

Why the other options are wrong

A

The backbone area (area 0) does not block Type 5 LSAs; it is the transit area for all OSPF areas and propagates external routes. The question requires an area that blocks Type 5 LSAs and provides a default route, which is a stub area, not the backbone.

B

A standard area does not block Type 5 LSAs; it allows external routes from other areas, which contradicts the requirement to limit propagation of external routes.

D

A totally stubby area blocks Type 3, 4, and 5 LSAs, but the question requires that inter-area routes (Type 3) be allowed via a default route. A totally stubby area only injects a default route for external routes, not for inter-area routes, so it does not meet the requirement.

When would these options actually be correct?

A

When the question asks for the area that must be present for all other OSPF areas to communicate, and which is responsible for inter-area routing and distributing external routes, the backbone area 0 is the correct answer.

B

A standard area would be correct if the question required full OSPF functionality with no restrictions on LSA types, such as when inter-area and external routes must be propagated without summarization or filtering.

D

A network engineer wants to minimize routing table size by blocking all external and inter-area routes, relying solely on a default route for any traffic leaving the area. In this scenario, a totally stubby area would be correct because it blocks Type 3, 4, and 5 LSAs and injects a default route.

Why candidates pick the wrong answer

A

Candidates may mistakenly think that the backbone area is a special area that can be configured to block certain LSAs, or they confuse the backbone's role in inter-area routing with the stub area's filtering behavior.

B

Candidates may think 'standard' is a safe default choice, not realizing that stub areas are specifically designed to reduce routing tables and block external LSAs while still providing inter-area connectivity via a default route.

D

Candidates may confuse 'stub' with 'totally stubby' and think that blocking more LSAs is always better, or they may misremember that a totally stubby area still allows inter-area routes via a default route, which it does not.

292
MCQmedium

A network administrator needs to create a diagram that shows the IP addressing scheme, VLAN assignments, and routing protocols used in the network. This diagram will be used for troubleshooting and future planning. Which type of documentation should the administrator create?

A.Physical topology diagram
B.Logical topology diagram
C.Rack elevation diagram
D.Cable management plan
AnswerB

A logical topology diagram illustrates the network's functional relationships and data flow, independent of physical layout. It explicitly depicts OSI Layer 3 elements such as IP subnets, host IP addresses, and the boundaries of VLANs, showing how broadcast domains are segmented. This type of diagram is essential for understanding routing protocols and how different network segments communicate logically, making it the ideal choice for visualizing IP addressing schemes and VLAN assignments.

Why this answer

A logical topology diagram is correct because it documents the IP addressing scheme, VLAN assignments, and routing protocols—abstract elements that define how data flows through the network, independent of physical device locations. This type of diagram is essential for troubleshooting Layer 3 issues and planning changes to the network's logical design.

Exam trap

The N10-009 exam often tests the distinction between physical and logical documentation by describing a scenario that mixes physical and logical elements, leading candidates to mistakenly choose a physical topology diagram when the question explicitly asks for IP schemes and VLANs.

Why the other options are wrong

A

A physical topology diagram shows hardware layout and cabling, not IP addressing, VLANs, or routing protocols, which are logical constructs.

C

A rack elevation diagram shows the physical placement of equipment in racks, not IP addressing, VLANs, or routing protocols.

D

A cable management plan documents physical cable routing and labeling, not IP addressing, VLANs, or routing protocols, which are logical network elements.

When would these options actually be correct?

A

A network administrator needs to document the physical locations of devices, cable runs, and hardware connections for troubleshooting physical connectivity issues or planning hardware upgrades.

C

When the question asks for a diagram to plan equipment placement, cooling, power distribution, or physical access in a data center, a rack elevation diagram is the correct choice.

D

When the question asks for documentation to organize and label physical cable runs in a data center or wiring closet to ensure neatness and facilitate maintenance.

Why candidates pick the wrong answer

A

Candidates may confuse 'physical' with 'logical' documentation, assuming all network diagrams are physical, or they may think IP and VLAN info is tied to physical layout.

C

Candidates may confuse 'documentation' with physical layout, thinking a rack diagram includes network details, or they may not distinguish between physical and logical diagrams.

D

Candidates may confuse cable management with network documentation, thinking it includes all aspects of network planning, but it is limited to physical cabling details.

293
MCQeasy

A network technician needs to discover directly connected network devices and their capabilities for documentation purposes. Which protocol should be used?

A.SNMP
B.LLDP
C.ICMP
D.ARP
AnswerB

Link Layer Discovery Protocol (LLDP) is a vendor-neutral, Layer 2 protocol that allows network devices to advertise their identity, capabilities, and other information to directly connected neighbors. By sending periodic advertisements containing Type-Length-Value (TLV) elements, LLDP enables automatic discovery of device type, port ID, management IP, and VLAN information. This capability is crucial for network topology mapping and troubleshooting without requiring manual configuration.

Why this answer

LLDP (Link Layer Discovery Protocol) is the correct choice because it is an IEEE 802.1AB standard protocol specifically designed to discover directly connected network devices and their capabilities, such as system name, port description, VLAN information, and management addresses. Unlike proprietary protocols, LLDP operates at Layer 2 and allows any vendor's equipment to advertise and learn about neighbors without requiring IP connectivity or a management station.

Exam trap

The N10-009 exam often tests the trap that candidates confuse LLDP with CDP (Cisco Discovery Protocol), but the question explicitly asks for a protocol to discover directly connected devices and their capabilities, and LLDP is the standards-based answer, while CDP is Cisco-proprietary and not always the correct choice in multi-vendor environments.

Why the other options are wrong

A

SNMP is used for monitoring and managing network devices, not for discovering directly connected neighbors and their capabilities. It requires prior configuration and does not provide link-layer discovery.

C

ICMP is used for network diagnostics (e.g., ping, traceroute) and error reporting, not for discovering directly connected devices and their capabilities. It does not provide device type, management address, or port information.

D

ARP (Address Resolution Protocol) is used to map IP addresses to MAC addresses on a local network, not to discover directly connected network devices and their capabilities for documentation.

When would these options actually be correct?

A

When the question asks for a protocol to monitor network performance, collect statistics, or manage device configurations across a network, SNMP is the correct choice.

C

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

D

When the question asks for the protocol used to resolve a known IP address to its corresponding MAC address on a local network segment, ARP is the correct answer.

Why candidates pick the wrong answer

A

Candidates may confuse SNMP's management capabilities with discovery, or think that because SNMP can retrieve device information, it can also discover neighbors.

C

Candidates may confuse ICMP's role in network discovery (like traceroute) with the specific capability discovery and neighbor identification that LLDP provides.

D

Candidates may confuse ARP's role in discovering MAC addresses of directly connected devices with the broader device discovery and capability information provided by LLDP.

294
MCQmedium

A company wants to prevent unauthorized personal devices from connecting to the corporate wired network. Employees must authenticate using their domain credentials before gaining full network access. Which security measure should be implemented on the switch ports?

A.MAC filtering
B.802.1X
C.Port security with sticky MAC
D.VLAN hopping prevention
AnswerB

802.1X provides robust port-based network access control, requiring authentication before a device gains full network access. It leverages the Extensible Authentication Protocol (EAP) to communicate with a central RADIUS server, which validates user or device credentials. Until successful authentication, the port remains in an unauthorized state, typically allowing only EAP traffic, effectively preventing unauthorized personal devices from connecting. This robust mechanism ensures only authenticated entities can access network resources.

Why this answer

802.1X is the correct choice because it provides port-based network access control (PNAC) that requires end devices to authenticate using domain credentials (e.g., via RADIUS) before being granted full network access. This ensures that only authorized users, not just authorized devices, can connect to the corporate wired network, meeting the requirement to prevent unauthorized personal devices.

Exam trap

The trap here is that candidates often confuse port security with 802.1X, thinking that locking MAC addresses via sticky MAC provides user-based authentication, but it only controls device identity, not user credentials, and fails to meet the requirement for domain credential authentication.

Why the other options are wrong

A

MAC filtering only checks MAC addresses, not user credentials, so it cannot enforce domain authentication. It also does not prevent unauthorized devices if their MAC is spoofed or manually added.

When would these options actually be correct?

A

A company wants to restrict network access to only approved devices based on their MAC addresses, without requiring user authentication. The question would specify that device identity, not user credentials, is the access control factor.

Why candidates pick the wrong answer

A

Candidates may confuse MAC filtering with port security or assume that controlling device identity is sufficient for authentication, overlooking the requirement for domain credential verification.

295
MCQmedium

A network administrator is deploying a new PoE security camera. The camera is connected to a PoE-enabled switch port, but the camera does not power on. The administrator confirms the switch port has PoE enabled and the cable is tested and functional. What is the most likely cause?

A.The cable is a crossover cable.
B.The camera requires 802.3bt (PoE++), but the switch only supports 802.3af (PoE).
C.The port is configured as an access port.
D.The camera is using a passive PoE injector.
AnswerB

This is the most probable cause. An 802.3af (PoE) compliant switch can deliver up to 15.4 watts of power at the port, with 12.95 watts available at the powered device. However, a modern, feature-rich security camera, especially one with pan-tilt-zoom capabilities, heaters, or advanced analytics, often requires the significantly higher power provided by 802.3bt (PoE++), which can supply up to 60W or even 100W at the source. If the camera's power demand exceeds the switch's output capability, the camera will fail to power on or operate reliably.

Why this answer

The camera requires 802.3bt (PoE++) which can deliver up to 60W or 90W, but the switch only supports 802.3af (PoE) which provides a maximum of 15.4W per port. Since the camera's power demand exceeds the switch's capability, the camera will not power on even though PoE is enabled and the cable is functional.

Exam trap

The trap here is that candidates often assume any PoE switch will power any PoE device, overlooking the critical power budget differences between 802.3af, 802.3at, and 802.3bt standards.

Why the other options are wrong

A

The cable is tested and functional, so a crossover cable would not prevent power delivery; PoE works over crossover cables as well.

C

Configuring a port as an access port does not affect PoE power delivery; PoE operates independently of VLAN or port mode settings. The camera would still receive power regardless of whether the port is access or trunk.

D

The camera is directly connected to a PoE-enabled switch port, so a passive PoE injector is not part of the setup. The issue is power negotiation, not the injector type.

When would these options actually be correct?

A

A network administrator connects two switches without uplink ports and the link fails; the most likely cause is a crossover cable if auto-MDIX is disabled.

C

A switch port configured as an access port would be the correct answer if the question described a camera that requires a specific VLAN tag to function (e.g., a VoIP phone needing voice VLAN), and the port was set to trunk mode, causing the camera to not receive the correct VLAN traffic.

D

A question where a non-PoE switch is used and a passive injector is incorrectly wired or provides insufficient power for the camera, causing it not to power on.

Why candidates pick the wrong answer

A

Candidates may confuse PoE power issues with cable type problems, especially if they recall that crossover cables are used for specific connections.

C

Candidates may confuse PoE issues with VLAN/port configuration problems, or think that access ports restrict power delivery, when in fact PoE is a physical-layer feature independent of Layer 2 settings.

D

Candidates may confuse passive PoE injectors with standard PoE switches, thinking an injector could be misconfigured or faulty, but the scenario explicitly states a PoE-enabled switch port.

296
Matchingmedium

Match each cable type to its maximum segment length (Ethernet).

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

Concepts
Matches

100 meters

100 meters (55 meters for 10GBASE-T)

Up to 550 meters (depending on standard)

Up to 40 km or more

Why these pairings

The correct matches are: Cat5e=100m, 10BASE2=185m, Multimode fiber=550m. Common confusions involve swapping lengths between copper and fiber types.

297
MCQhard

A company wants to deploy a wireless network for employee devices using the highest security standard. The network will use a RADIUS server for authentication. Which authentication method should be configured?

A.WPA3-SAE
B.802.1X/EAP
C.WPA2-PSK
D.WEP with RADIUS
AnswerB

802.1X/EAP is the industry standard for enterprise wireless security, leveraging a RADIUS server for centralized authentication and authorization. This architecture enables robust per-user access control and dynamic key management, supporting various EAP methods like PEAP or EAP-TLS. It provides strong, individualized encryption keys and accountability, which is crucial for securing employee devices in a corporate environment demanding the highest security.

Why this answer

B is correct because 802.1X/EAP is the only option that provides enterprise-grade authentication using a RADIUS server. It requires each user to present unique credentials (e.g., username/password or certificate), which are verified by the RADIUS server before granting network access. This meets the requirement for the highest security standard in a corporate environment.

Exam trap

The trap here is that candidates confuse WPA3-SAE (which is indeed more secure than WPA2-PSK) with enterprise authentication, but SAE still uses a shared passphrase and cannot integrate with a RADIUS server for per-user authentication.

Why the other options are wrong

A

WPA3-SAE is a personal authentication mode that uses a shared password, not a RADIUS server. The question specifies using a RADIUS server for authentication, which requires an enterprise mode like 802.1X/EAP.

C

WPA2-PSK uses a pre-shared key for authentication, not a RADIUS server, so it does not meet the requirement for enterprise-grade authentication with a RADIUS server.

D

WEP with RADIUS is not a valid authentication method; WEP uses static keys or RADIUS for key distribution but is inherently insecure and does not meet 'highest security standard'.

When would these options actually be correct?

A

If the question asked for the highest security standard for a small office/home office (SOHO) network without a RADIUS server, or for a network using only a pre-shared key, WPA3-SAE would be the correct answer.

C

In a small office/home office (SOHO) scenario where no RADIUS server is available and ease of setup is prioritized over highest security, WPA2-PSK would be the correct choice.

D

If the question asked for a legacy authentication method that uses a RADIUS server for key distribution in a WEP-based network, then 'WEP with RADIUS' could be correct, though it would still be insecure.

Why candidates pick the wrong answer

A

Candidates may know WPA3 is the latest Wi-Fi security standard and assume it is always the best choice, overlooking that SAE is a personal mode and does not integrate with RADIUS.

C

Candidates may confuse WPA2-PSK with WPA2-Enterprise, or assume that PSK can be used with RADIUS, because both involve a password but the authentication mechanism differs.

D

Candidates may see 'RADIUS' and assume any combination with it is secure, overlooking that WEP is outdated and broken.

298
MCQmedium

A security auditor recommends implementing a solution that authenticates users and devices before granting network access, regardless of the physical port they connect to. Which technology should be deployed?

A.Port security
B.802.1X
C.VLAN hopping
D.DHCP snooping
AnswerB

802.1X provides port-based authentication using EAP and requires credentials from the device or user.

Why this answer

802.1X is the correct technology because it provides port-based network access control (PNAC) that authenticates users and devices before granting network access, regardless of the physical port they connect to. It uses the Extensible Authentication Protocol (EAP) over LAN (EAPoL) to communicate with a RADIUS server, ensuring that only authenticated endpoints are allowed on the network. This meets the auditor's requirement for authentication at the port level, independent of the switch port used.

Exam trap

The trap here is that candidates often confuse port security with 802.1X because both control port access, but port security only filters by MAC address and does not provide user authentication or integration with a central authentication server, which is the key requirement in the question.

Why the other options are wrong

A

Port security limits MAC addresses per port but does not authenticate users or devices before granting network access; it only controls which MAC addresses are allowed on a specific switch port.

C

VLAN hopping is an attack technique, not a security solution. It exploits switch configuration to gain unauthorized access to VLANs, whereas the question asks for a technology that authenticates users and devices before granting network access.

D

DHCP snooping is a security feature that filters untrusted DHCP messages to prevent rogue DHCP servers, but it does not authenticate users or devices before granting network access.

When would these options actually be correct?

A

A question asks: 'Which feature prevents unauthorized devices from connecting to a switch by limiting the number of MAC addresses per port?' Then port security would be correct.

C

A question asking 'Which attack allows a device to access traffic from a different VLAN by manipulating trunking protocols?' would have VLAN hopping as the correct answer.

D

A question asks: 'Which technology prevents unauthorized DHCP servers from assigning IP addresses on a network?' In that context, DHCP snooping is the correct answer.

Why candidates pick the wrong answer

A

Candidates confuse port security with network access control because both deal with restricting device connections, but port security lacks authentication and is port-specific.

C

Candidates may confuse VLAN hopping with a security mechanism because it involves network access control at the VLAN level, but it is actually a vulnerability, not a solution.

D

Candidates may confuse DHCP snooping with network access control because both involve security at the switch level, leading them to think it can authenticate users.

299
MCQeasy

A network administrator needs to ensure that data sent from a host arrives at the correct destination on a different network. Which of the following provides the logical address used for this purpose in IPv4?

A.MAC address
B.IP address
C.Port number
D.Default gateway
AnswerB

An IP address uniquely identifies a host on a network and is fundamental for routing data across different network segments and the internet. Its hierarchical structure, comprising network and host portions, enables routers to efficiently determine the optimal path for packets to reach their intended destination, ensuring data arrives at the correct host regardless of its physical location.

Why this answer

In IPv4, the logical address used to route data between different networks is the IP address. The IP address contains a network portion that routers use to forward packets across network boundaries, ensuring the data reaches the correct destination network and host.

Exam trap

The N10-009 exam often tests the distinction between Layer 2 (MAC) and Layer 3 (IP) addressing, trapping candidates who confuse local delivery with inter-network routing.

Why the other options are wrong

A

MAC addresses operate at Layer 2 (Data Link) and are used for local network delivery, not for routing across different networks. IPv4 uses IP addresses as logical addresses to identify hosts on different networks.

C

Port numbers identify specific processes or services on a host (transport layer), not the destination network or host itself. The question asks for the logical address used to reach a different network, which is the IP address (network layer).

D

The default gateway is a router's IP address used to forward traffic to other networks, but it is not the logical address of the destination host. The question asks for the logical address that identifies the destination host on a different network, which is the IP address.

When would these options actually be correct?

A

A question asking which address is used to deliver a frame within the same local network segment, or which address is resolved via ARP for local delivery, would have MAC address as the correct answer.

C

A question asking: 'Which identifier is used by a web server to distinguish between multiple services (e.g., HTTP vs HTTPS) on the same IP address?' would make port number the correct answer, as it differentiates applications on a host.

D

A question asks: 'A host needs to send data to a server on a different subnet. Which network component must be configured on the host to enable this communication?' In that context, the default gateway is the correct answer.

Why candidates pick the wrong answer

A

Candidates may confuse MAC addresses with IP addresses because both are used in network communication, and MAC addresses are essential for final delivery, but they are not used for cross-network routing.

C

Candidates may confuse port numbers with network addressing because both are used in communication, and port numbers are often paired with IP addresses in socket pairs, leading to the misconception that they help route data across networks.

D

Candidates may confuse the default gateway with the destination address, thinking that the gateway provides the logical address for reaching other networks, but the gateway is just the next hop, not the final destination's address.

300
MCQhard

During a security audit, a consultant discovers that encrypted traffic between a client and a web server is being decrypted and re-encrypted by an intermediate device on the network path. Which type of attack best describes this scenario?

A.ARP poisoning
B.SSL stripping
C.Man-in-the-middle
D.Rogue DHCP
AnswerC

A Man-in-the-Middle (MITM) attack involves an attacker secretly relaying and possibly altering the communication between two parties who believe they are directly communicating with each other. In the described scenario, the attacker acts as a proxy, intercepting the encrypted traffic, decrypting it to read or modify the contents, and then re-encrypting it before forwarding it to the legitimate destination. This allows the attacker to maintain the illusion of a secure connection for both endpoints while gaining full access to the data.

Why this answer

The scenario describes a classic man-in-the-middle (MITM) attack where an intermediary intercepts, decrypts, and re-encrypts traffic between the client and server. This allows the attacker to read or modify the data while both endpoints believe they have a secure TLS session. The key indicator is the decryption and re-encryption step, which is the hallmark of an active MITM proxy.

Exam trap

The trap here is that candidates confuse the method (e.g., ARP poisoning) with the attack type (MITM), or they mistake SSL stripping for any interception of encrypted traffic, not realizing that SSL stripping removes encryption entirely rather than re-encrypting it.

Why the other options are wrong

A

ARP poisoning involves manipulating ARP tables to intercept traffic at layer 2, but it does not inherently decrypt and re-encrypt encrypted traffic; it only redirects traffic. The scenario describes decryption and re-encryption, which is characteristic of a man-in-the-middle attack, not ARP poisoning alone.

B

SSL stripping downgrades HTTPS to HTTP, but the scenario describes decryption and re-encryption of encrypted traffic, which is characteristic of a man-in-the-middle attack, not SSL stripping.

D

Rogue DHCP involves an unauthorized DHCP server assigning IP configurations, not intercepting and re-encrypting traffic. The scenario describes decryption and re-encryption, which is a man-in-the-middle attack, not DHCP-related.

When would these options actually be correct?

A

ARP poisoning would be correct in a scenario where an attacker sends forged ARP messages to associate their MAC address with the IP address of a legitimate device, causing traffic to be redirected to the attacker without any decryption or re-encryption, such as in a simple traffic interception or denial-of-service attack.

B

A question describing an attack where a proxy modifies HTTPS links to HTTP in transit, causing the client to communicate over unencrypted HTTP while the proxy maintains HTTPS with the server, would make SSL stripping the correct answer.

D

A question describing a user receiving an incorrect default gateway or DNS server from a DHCP server, leading to traffic being redirected to a malicious host, would make rogue DHCP 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 technique used to facilitate MITM attacks at the local network level, leading them to select it as the attack type rather than the overarching concept.

B

Candidates confuse SSL stripping with any attack that intercepts encrypted traffic, but SSL stripping specifically downgrades the protocol, not just decrypts and re-encrypts.

D

Candidates may confuse rogue DHCP with man-in-the-middle because both involve intercepting traffic, but rogue DHCP specifically exploits DHCP to redirect traffic, not to decrypt/re-encrypt it.

Page 3

Page 4 of 7

Page 5

All pages