Network Troubleshooting

486 questions

Question 21Question

A network engineer is troubleshooting an issue where hosts on VLAN 10 (10.45.8.0/2410.45.8.0/24) can ping their default gateway interface (10.45.8.110.45.8.1), but cannot establish TCP connections to an application cluster on VLAN 50 (10.45.50.0/2410.45.50.0/24). Diagnostic commands reveal that the intermediate Core-Router shows its OSPF adjacency with the Distribution Switch stuck in the EXSTART/EXCHANGE state across their interconnect subnet (10.45.200.0/3010.45.200.0/30). Additionally, large packet pings with the Don't Fragment (DF) bit set fail without receiving any diagnostic response. Which TWO of the following root causes or misconfigurations are most likely responsible for this behavior?

Select all that apply

Show answer & explanation

Answer: An Maximum Transmission Unit (MTU) size mismatch exists between the connecting interface of the Core-Router and the Distribution Switch.; An Access Control List (ACL) on the router interface is explicitly dropping ICMP Type 3 Code 4 (Fragmentation Needed) packets.

Answer

The MTU size mismatch on the interconnecting router interfaces and an ACL filtering ICMP Fragmentation Needed (Type 3, Code 4) packets.
An OSPF neighbor relationship stuck in EXSTART/EXCHANGE is a classic sign of an interface MTU mismatch between adjacent devices, as OSPF includes interface MTU in Database Description (DBD) packets. Furthermore, when large packets with the Don't Fragment (DF) bit set fail without an ICMP response, it indicates an Access Control List (ACL) is dropping ICMP Type 3 Code 4 (Destination Unreachable - Fragmentation Needed) packets, breaking Path MTU Discovery and causing silent packet drops.

Step-by-Step Solution

1
Analyze OSPF Neighbor State
Neighbor stuck in EXSTART/EXCHANGE state indicates Database Description (DBD) packets are failing to transmit/receive across the neighbor link.
During EXSTART/EXCHANGE, routers exchange DBD packets. If interface MTUs differ, the router with the larger MTU sends DBD packets that the router with the smaller MTU drops, hanging the adjacency.
2
Analyze PMTUD and ICMP Behavior
Large packets with Don't Fragment (DF) set fail silently without ICMP responses.
When a router attempts to forward a packet exceeding interface MTU with the DF bit set, it must drop the packet and send an ICMP Type 3 Code 4 (Fragmentation Needed) back to the sender. Filtering this message in an ACL causes PMTUD black-holing.

Key Concept

OSPF Adjacency States, Interface MTU Mismatch, and Path MTU Discovery (PMTUD) ICMP Dependencies
Question 22Question

A network engineer is troubleshooting an issue where client computers can establish a basic TCP handshake with a remote application server across an IPsec VPN tunnel, but bulk data transfers fail or time out. The engineer suspects that packets exceeding the tunnel's Maximum Transmission Unit (MTU) are being dropped because path MTU discovery is failing.

Which of the following command-line utility commands should the engineer run on a Windows workstation to test reachability while setting the Don't Fragment flag to identify the maximum unfragmented payload size?

Show answer & explanation

Answer: ping -f -l 1472 172.16.10.50

Answer

Running 'ping -f -l 1472 172.16.10.50' sends an ICMP echo request with the Don't Fragment bit enabled (-f) and a specific payload size (-l 1472), allowing the engineer to determine the maximum MTU that can pass without fragmentation.
The option specifying 'ping -f -l 1472 172.16.10.50' is correct because on Windows systems, '-f' instructs the operating system to set the Don't Fragment (DF) bit in the IP header, and '-l' defines the buffer size. This allows administrators to test path MTU limits and detect where packet fragmentation failures occur.

Step-by-Step Solution

1
Identify the diagnostic objective.
The goal is to determine if network packets exceeding a certain byte size are being dropped due to fragmentation restrictions along the path.
VPN encapsulation adds overhead, reducing the usable MTU size below the standard 1500 bytes.
2
Select the utility and appropriate flags for path MTU testing on Windows.
The 'ping' utility supports the '-f' switch to set the Don't Fragment (DF) flag in the IPv4 header and the '-l' switch to set the ICMP payload size in bytes.
If a router along the path needs to fragment the packet but the DF bit is set, it drops the packet and returns an ICMP 'Fragmentation Needed and DF Set' message (or silently drops it if ICMP is blocked).
3
Calculate payload size relative to MTU.
An ICMP payload of 1472 bytes plus 20 bytes of IP header and 8 bytes of ICMP header equals a total packet size of 1500 bytes.
Incrementally decreasing the payload value using '-l' pinpoints the exact MTU threshold supported across the VPN tunnel.

Key Concept

Path MTU Discovery using ICMP ping options (-f for Don't Fragment, -l for payload length)
Estimated Time:1m 15s
Question 23Question

Following a network resegmentation, a workstation on VLAN 30 (192.168.30.0/24192.168.30.0/24) is unable to communicate with network resources. The workstation's network adapter is set to acquire an IP address automatically. Running `ipconfig /all` on the workstation yields the following output:

IPv4 Address. . . . . . . . . . . . : 169.254.48.19
Subnet Mask . . . . . . . . . . . . : 255.255.0.0
Default Gateway . . . . . . . . . . :
DHCP Server . . . . . . . . . . . . :

The central DHCP server resides on VLAN 10 (192.168.10.15192.168.10.15). The network administrator inspects the router's configuration for the subinterface corresponding to VLAN 30 and notes that the interface is operational with IP 192.168.30.1/24192.168.30.1/24, but no relay commands are present.

Which of the following statements accurately diagnose this issue and identify the necessary corrective action? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: The workstation has self-assigned an APIPA address because its DHCPDISCOVER broadcast failed to receive a DHCPOFFER from the central DHCP server.; An IP helper address pointing to 192.168.10.15 must be configured on the router's VLAN 30 interface to forward DHCP broadcast requests to the central server across subnets.

Answer

The workstation self-assigned an APIPA address due to an unfulfilled DHCP request, and an IP helper address pointing to 192.168.10.15 must be configured on the router's VLAN 30 interface.
The workstation's assignment of a 169.254.48.19 address confirms APIPA auto-configuration after failing to receive a response to its broadcast DHCPDISCOVER request. Because the DHCP server resides on a different VLAN/subnet (VLAN 10), the router interface for VLAN 30 requires a DHCP relay agent (IP helper address) to convert local broadcasts into unicast traffic directed to 192.168.10.15.

Step-by-Step Solution

1
Analyze the client IP address from the output snippet.
The IP address 169.254.48.19 falls within the 169.254.0.0/16 range, confirming the client generated an APIPA address after receiving no response to dynamic IP addressing requests.
APIPA is activated automatically by host OSs when DHCP discovery times out.
2
Analyze the network topology and router configuration.
The client is on VLAN 30 (192.168.30.0/24) while the DHCP server is on VLAN 10 (192.168.10.15). Routers do not forward Layer 2 broadcasts between subnets by default.
DHCPDISCOVER packets use broadcast address 255.255.255.255, which is blocked at Layer 3 boundaries.
3
Determine the necessary remediation on the gateway router.
Configure `ip helper-address 192.168.10.15` under the VLAN 30 interface.
The IP helper agent converts broadcast DHCP requests into unicast packets directed to the DHCP server's IP address.

Key Concept

DHCP Relay and APIPA Troubleshooting
Question 24Question

Employees working in a newly expanded section of an office building report frequent wireless disconnections and degraded network throughput on their laptops connecting via the 2.4 GHz band. A network administrator conducts a site survey and finds that three neighboring access points covering the area are currently configured to use Channels 1, 3, and 5. Which of the following identifies the primary cause of this performance issue and the correct action to resolve it?

Show answer & explanation

Answer: Adjacent-channel interference is occurring because Channels 1, 3, and 5 overlap in frequency; reconfigure the access points to non-overlapping Channels 1, 6, and 11.

Answer

Adjacent-channel interference is occurring because Channels 1, 3, and 5 overlap in frequency; reconfigure the access points to non-overlapping Channels 1, 6, and 11.
In the 2.4 GHz Wi-Fi spectrum, channels have center frequencies separated by 5 MHz, but each channel occupies 20–22 MHz of spectral width. Consequently, channels 1, 3, and 5 partially overlap with one another, causing adjacent-channel interference (ACI) that leads to frame corruption, retransmissions, and latency. The standard mitigation in 2.4 GHz deployments is to assign the three non-overlapping channels: 1, 6, and 11.

Step-by-Step Solution

1
Analyze the 2.4 GHz channel allocation topology.
The 2.4 GHz band spans 2.400 GHz to 2.4835 GHz with 14 channels spaced 5 MHz apart, but each channel requires 20–22 MHz of channel bandwidth.
Because channel bandwidth exceeds channel spacing, adjacent channels overlap unless separated by at least 25 MHz.
2
Evaluate the current configuration (Channels 1, 3, and 5).
Channels 1, 3, and 5 share overlapping spectrum (e.g., Channel 3 overlaps with both Channel 1 and Channel 5).
This partial overlap prevents 802.11 CSMA/CA clear channel assessment from coordinating transmission timings effectively, resulting in severe adjacent-channel interference (ACI) and corrupted frames.
3
Identify the standard remediation for 2.4 GHz channel planning.
Select non-overlapping channels 1, 6, and 11 for North America/standard deployments.
Channels 1, 6, and 11 provide sufficient frequency separation so that neighboring access points can operate without spectral overlap.

Key Concept

2.4 GHz Non-Overlapping Channel Selection and Adjacent-Channel Interference (ACI)
Estimated Time:1m 30s
Question 25Question

A network technician is investigating severe performance degradation across an enterprise network following an after-hours maintenance window. After reviewing syslog messages and analyzing traffic patterns, the technician suspects that an incorrectly configured Link Aggregation Control Protocol (LACP) bundle on a core switch stack is creating a Layer 2 switching loop. To test this theory, the technician temporarily disables one of the aggregated member interfaces, which instantly drops CPU utilization back to baseline levels and restores network throughput. According to the CompTIA troubleshooting methodology, which of the following actions should the technician perform next?

Show answer & explanation

Answer: Develop a plan of action to resolve the misconfiguration while identifying potential impacts to the production environment.

Answer

Develop a plan of action to resolve the misconfiguration while identifying potential impacts to the production environment.
The scenario describes a technician who has successfully tested a theory (Step 3) by temporarily disabling an aggregated link, which confirmed that an LACP misconfiguration was causing a Layer 2 loop. According to the CompTIA troubleshooting methodology, after confirming the theory, the technician must next establish a plan of action to resolve the problem and identify potential effects (Step 4).

Step-by-Step Solution

1
Analyze current progress within the CompTIA 6-step troubleshooting methodology.
The technician has already identified the problem (Step 1), established a theory of cause (Step 2), and tested the theory by disabling the link to confirm the switching loop (Step 3).
Determining the completed phase establishes the entry point for the next required phase.
2
Identify the official CompTIA step immediately following 'Test the theory to determine cause' (Step 3).
Step 4 is 'Establish a plan of action to resolve the problem and identify potential effects'.
Before executing permanent configuration changes in a production enterprise environment, the technician must plan the remediation and evaluate potential risks or downtime.
3
Match Step 4 requirements to the correct option.
Developing a plan of action while identifying potential impacts accurately reflects Step 4 of the methodology.
This maintains strict adherence to standard operational procedures and prevents unexpected side effects during resolution.

Key Concept

CompTIA 6-Step Troubleshooting Methodology Sequence
Estimated Time:2m 0s
Question 26Question

A network technician needs to inspect a host computer's local cache to view the mapping of IP addresses to physical MAC addresses. Which command-line utility should the technician execute?

Show answer & explanation

Answer: arp -a

Answer

The correct command is arp -a, which lists the local Address Resolution Protocol table containing IP-to-MAC address entries.
The arp -a command displays the system ARP table, which lists cached IP addresses mapped to their corresponding physical network interface (MAC) addresses.

Step-by-Step Solution

1
Identify the troubleshooting objective.
The requirement is to display local IP-to-MAC address translations.
Address Resolution Protocol (ARP) maintains the dynamic mapping between Layer 3 IP addresses and Layer 2 MAC addresses.
2
Select the appropriate command-line command.
Running arp -a outputs the active ARP cache table.
The arp tool with the -a parameter lists all cached ARP entries for all interfaces.

Key Concept

Address Resolution Protocol (ARP) CLI Diagnostics
Estimated Time:45s
Question 27Question

A network administrator is diagnosing Layer 2 operational issues across several switch ports in an enterprise campus network. Match each observed switch log message or diagnostic symptom on the left to its correct underlying root cause on the right.

Click a left item, then click its matching right item

Items

%CDP-4-NATIVE_VLAN_MISMATCH: Native VLAN mismatch discovered on interface GigabitEthernet0/1 (10), with Switch-B GigabitEthernet0/1 (20).
%SPANTREE-2-BLOCK_BPDUGUARD: Received BPDU on port FastEthernet0/24 with BPDU Guard enabled. Disabling port.
Interface FastEthernet0/5 statistics display an abnormally high count of late collisions, FCS errors, and deferred transmissions under high traffic load.
Interface GigabitEthernet0/2 status displays 'down/down (not-connect)' after trunking failed to form, with DTP set to 'desirable' on Switch-A and 'nonegotiate' on Switch-B.

Matches

Show answer & explanation

Answer

1. CDP native VLAN mismatch log pairs with inconsistent 802.1Q untagged traffic configurations.
2. SPANTREE BPDU Guard error log pairs with an unauthorized switch or device sending BPDUs on an edge access port.
3. Late collisions and FCS errors statistics pair with speed/duplex autonegotiation failure (half/full mismatch).
4. DTP desirable vs nonegotiate failure pairs with Dynamic Trunking Protocol negotiation suppressed on one end.
Each diagnostic log or symptom matches its precise root cause based on standard Layer 2 operation: CDP mismatch logs match native VLAN discrepancies; BPDU Guard err-disable events match rogue switch detection on edge ports; late collisions match duplex autonegotiation failures; and DTP dynamic trunking failure matches a nonegotiate command suppressing DTP frame generation.

Step-by-Step Solution

1
Analyze the native VLAN log message
CDP directly reports native VLAN 10 on one end and VLAN 20 on the peer
802.1Q trunks require matching native VLANs on both endpoints to correctly process untagged frames.
2
Analyze the BPDU Guard error message
PortFast access port was disabled due to incoming BPDUs
BPDU Guard prevents rogue Layer 2 bridge insertion on ports designated for end-host devices.
3
Evaluate interface error counters for late collisions
Late collisions indicate transmission collisions occurring past the slot time window
This error signature specifically identifies duplex mismatches where full-duplex transmits while half-duplex is listening/transmitting.
4
Evaluate the DTP configuration discrepancy
DTP desirable needs incoming DTP frames, but nonegotiate turns off DTP frame output
Trunk negotiation fails if one switch stops sending DTP frames while the other relies on them for dynamic initiation.

Key Concept

Troubleshooting Layer 2 switching, VLAN trunking, STP port security, and physical interface negotiation issues
Question 28Question

A network technician needs to inspect live network traffic and decode packet headers passing through a server's network interface to troubleshoot an application issue. Which of the following tools are packet analyzers designed for this task? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: tcpdump; Wireshark

Answer

tcpdump and Wireshark are both packet analyzers capable of capturing and inspecting network protocol traffic.
tcpdump and Wireshark are software packet analyzers that intercept, log, and decode raw network frames from a network interface.

Step-by-Step Solution

1
Identify the required functional capability in the scenario.
The requirement is to capture network frames and inspect protocol headers.
Determining whether physical electrical testing or upper-layer protocol analysis is needed guides tool selection.
2
Evaluate the candidate tools based on operating layer and purpose.
tcpdump and Wireshark operate at the protocol analysis level, whereas tone probes and loopback plugs operate at the physical hardware testing level.
Hardware testing tools evaluate physical layer continuity and signal paths but cannot decode packet contents.

Key Concept

Packet analyzers (or protocol analyzers) capture and decode protocol data units across network layers, whereas hardware physical testers verify physical media and interface hardware.
Question 29Question

A network administrator provisions a new subinterface on a branch router to serve VLAN 50 (`192.168.50.0/24`). Workstations connected to VLAN 50 fail to obtain network configuration parameters and continuously assign themselves addresses in the `169.254.x.x` range. Meanwhile, devices on VLAN 10 connected to the same switch successfully acquire leases from the centralized DHCP server at `10.10.10.50`. The technician inspects the router subinterface configuration:

text
interface GigabitEthernet0/0/1.50
encapsulation dot1Q 50
ip address 192.168.50.1 255.255.255.0

Which of the following configuration changes on the router interface will resolve the connectivity issue for VLAN 50 hosts?

Show answer & explanation

Answer: Add the `ip helper-address 10.10.10.50` command under the `GigabitEthernet0/0/1.50` interface.

Answer

Add the ip helper-address 10.10.10.50 command under the GigabitEthernet0/0/1.50 subinterface configuration.
DHCP client discovery messages are Layer 2 broadcasts that cannot cross router boundaries by default. Adding the `ip helper-address 10.10.10.50` command to the subinterface enables the router to act as a DHCP relay agent, forwarding local DHCP requests to the centralized server on another subnet.

Step-by-Step Solution

1
Analyze client IP symptoms
Clients receive 169.254.x.x (APIPA) addresses, confirming that DHCP broadcast requests are not receiving replies.
When a DHCP client fails to obtain an IP lease via DORA, standard operating systems self-assign an Automatic Private IP Addressing address.
2
Evaluate network topology and broadcast boundaries
The DHCP server resides on subnet 10.10.10.0/24, whereas clients are on subnet 192.168.50.0/24 across a Layer 3 router interface.
Routers drop Layer 2 broadcast frames (such as DHCPDISCOVER) by default, preventing DHCP requests from crossing subnets.
3
Identify the missing router configuration element
The router subinterface lacks an IP helper address directive to forward broadcast DHCP requests to the central DHCP server.
Configuring `ip helper-address 10.10.10.50` converts incoming client DHCP broadcasts into unicast UDP messages directed to the specified server.

Key Concept

DHCP Relay Agent and IP Helper Configuration
Question 30Question

A network technician is troubleshooting a client workstation that failed to obtain an IP address from the DHCP server and auto-configured an APIPA address. Arrange the standard troubleshooting methodology steps in the correct sequential order from first step to last step.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct order follows the standard network troubleshooting methodology: 1) Identify the problem by gathering symptoms, 2) Establish a theory of probable cause, 3) Test the theory to confirm the cause, and 4) Establish a plan of action and implement the solution.
The correct sequence adheres strictly to the CompTIA troubleshooting framework: gathering symptoms and identifying the problem first, establishing a plausible theory of cause second, testing the theory third, and implementing the solution fourth.

Step-by-Step Solution

1
Identify the problem symptoms
Discovered the workstation has a 169.254.x.x (APIPA) address.
Before diagnosing root causes, the technician must gather information and define the scope of the problem.
2
Formulate a theory of cause
Hypothesize that either the DHCP pool is full or DHCP relay requests are failing across the router boundary.
Developing a logical hypothesis narrows down potential failure points systematically.
3
Verify the theory
Inspect the router interface configuration and DHCP pool statistics.
Testing theories prevents unnecessary changes and pinpoints the exact cause of failure.
4
Execute the resolution plan
Configure the missing IP helper address on the gateway switch interface and execute `ipconfig /renew` on the client.
Implementing the fix restores network connectivity and verifies proper DHCP operation.

Key Concept

Standard Troubleshooting Methodology for DHCP and IP Addressing Failures
Question 31Question

A network technician is troubleshooting a point-to-point wireless bridge spanning 250 meters between two corporate buildings. Signal strength readings indicate a strong Received Signal Strength Indicator (RSSI) of -51 dBm, but the link suffers from high packet corruption, fluctuating bit rates, and intermittent dropouts whenever large cargo trucks cross the intervening parking lot. Which of the following is the most likely cause of this wireless performance issue?

Show answer & explanation

Answer: Multipath fading caused by RF reflections off moving vehicles arriving out of phase at the receiving antenna.

Answer

Multipath fading caused by RF reflections off moving vehicles arriving out of phase at the receiving antenna is the primary cause of the signal degradation.
Multipath propagation occurs when RF signals take multiple paths from transmitter to receiver due to reflection off metallic surfaces like trucks. When these reflected signals arrive slightly out of phase with the direct signal, they cause destructive interference (multipath fading) and inter-symbol corruption even when overall RSSI appears high.

Step-by-Step Solution

1
Analyze diagnostic indicators
Strong RSSI (-51 dBm) confirms adequate transmission power and basic line of sight, but high frame corruption indicates physical layer RF distortion.
High signal power paired with low throughput or packet loss points toward signal quality issues (SNR/Interference) rather than attenuation.
2
Evaluate environmental variables
Intermittent corruption specifically coincides with large metal vehicles entering the path between buildings.
Metallic surfaces serve as prominent reflectors for radio waves, splitting the transmitted signal into multiple paths.
3
Identify the RF phenomenon
Reflected signals arrive at the receiving antenna milliseconds after the direct line-of-sight signal, creating phase interference.
When reflected signals arrive out of phase with the main signal, vector addition causes signal cancellation and inter-symbol interference (multipath fading).

Key Concept

Multipath Fading and RF Reflection in Point-to-Point Wireless Links
Question 32Question

A network technician deploys three wireless access points across an office building to provide coverage on the 2.4 GHz band. Users report frequent packet loss, slow speeds, and dropped connections when moving near areas covered by multiple access points. Upon inspecting the wireless controller, the technician observes that the access points are manually configured to operate on channels 1, 2, and 3, respectively. Which of the following is the most likely cause of the wireless performance degradation?

Show answer & explanation

Answer: Adjacent-channel interference caused by using overlapping channels in the 2.4 GHz frequency spectrum.

Answer

Adjacent-channel interference caused by using overlapping channels in the 2.4 GHz frequency spectrum.
In the 2.4 GHz frequency band, standard 20 MHz channels require a 25 MHz separation between channel centers to avoid overlapping. Consequently, only channels 1, 6, and 11 are non-overlapping. Setting adjacent access points to channels 1, 2, and 3 causes severe adjacent-channel interference (ACI), resulting in corrupted Wi-Fi frames, excessive retransmissions, and performance degradation in areas where signals overlap.

Step-by-Step Solution

1
Analyze the wireless spectrum configuration provided in the scenario.
The access points are set to channels 1, 2, and 3 in the 2.4 GHz band.
The 2.4 GHz Wi-Fi spectrum consists of 11 channels in North America (13 globally), each 20 MHz wide but spaced only 5 MHz apart.
2
Identify non-overlapping channels for 2.4 GHz wireless deployments.
Channels 1, 6, and 11 are the standard non-overlapping 20 MHz channels.
Channels 1, 2, and 3 share overlapping frequency ranges, causing adjacent-channel interference (ACI) where signals bleed into neighbouring frequencies.
3
Correlate channel overlap with the observed symptoms.
Adjacent-channel interference leads to frame corruption, retransmissions, high latency, and dropped connections in overlapping coverage zones.
Using channels 1, 6, and 11 eliminates adjacent-channel interference between nearby access points.

Key Concept

2.4 GHz Wireless Channel Overlap and Interference
Estimated Time:45s
Question 33Question

A network technician has established a theory of probable cause regarding a workstation's loss of network connectivity. According to the CompTIA troubleshooting methodology, which of the following actions should the technician take NEXT?

Show answer & explanation

Answer: Test the theory to determine the cause.

Answer

Test the theory to determine the cause.
According to CompTIA's official troubleshooting methodology, once a theory of probable cause has been established, the next logical step is to test the theory to determine the cause (or re-establish a new theory if the test fails).

Step-by-Step Solution

1
Identify the current step in the CompTIA troubleshooting sequence.
The technician is currently at Step 2: Establish a theory of probable cause.
The scenario explicitly states that a theory has just been established.
2
Determine the next sequential step in the official CompTIA methodology.
Step 3 is 'Test the theory to determine cause'.
Before forming a plan of action or attempting fixes, the technician must test the theory to confirm if it is correct or establish a new theory if disproven.

Key Concept

CompTIA Troubleshooting Methodology Step Order
Estimated Time:45s
Question 34Question

A network technician is setting up three wireless access points in a small office on the 2.4 GHz band. The technician notices performance issues and interference when using channels 1, 2, and 3. Which channel assignment strategy should the technician use to eliminate channel overlap?

Show answer & explanation

Answer: Assign the access points to channels 1, 6, and 11.

Answer

Assign the access points to channels 1, 6, and 11.
In 2.4 GHz Wi-Fi deployments, standard channels are 20 MHz wide with 5 MHz separation between channel centers. To avoid adjacent-channel interference, channels must be at least 5 channels apart. Channels 1, 6, and 11 are the standard set of non-overlapping channels in North America and international 2.4 GHz deployments.

Step-by-Step Solution

1
Identify the wireless frequency band specified in the scenario.
The network operates on the 2.4 GHz band with standard 20 MHz channels.
Channel separation rules depend on the specific Wi-Fi frequency band.
2
Determine the standard non-overlapping channels for 2.4 GHz.
Channels 1, 6, and 11 are separated by 25 MHz (5 channel numbers), preventing spectral overlap.
Using non-overlapping channels prevents co-channel and adjacent-channel interference.

Key Concept

2.4 GHz Non-Overlapping Channels
Question 35Question

In a high-ceiling logistics warehouse with large metal shelving units, wireless handheld inventory scanners experience severe frame loss (~40%) and dropped connections despite exhibiting a strong Received Signal Strength Indicator (RSSI) reading of 52 dBm-52\text{ dBm}. A packet analysis reveals a massive spike in 802.11802.11 Layer 2 retransmissions and corrupted preamble headers. Spectrum analysis confirms no adjacent or co-channel Wi-Fi networks exist in the area. Which of the following wireless phenomena is the primary root cause of this degraded performance?

Show answer & explanation

Answer: Multipath interference caused by radio frequency reflections creating excessive delay spread

Answer

Multipath interference caused by radio frequency reflections creating excessive delay spread is the primary root cause.
In environments with dense metal structures like warehouses, radio frequency (RF) signals bounce off reflective surfaces. These bounced signals arrive at the receiving antenna via different paths at slightly different times. This phenomenon, known as multipath interference, causes delay spread. When the delay spread exceeds the guard interval of the Wi-Fi transmission, the overlapping reflections destructively interfere with one another, corrupting frame preambles and causing severe retransmissions despite high overall received power (RSSI).

Step-by-Step Solution

1
Analyze reported signal metrics and physical environment
The RSSI reading is strong (52 dBm-52\text{ dBm}), eliminating severe signal attenuation or excessive distance as the root cause. The environment consists of reflective metallic shelving racks.
RSSI measures total received power, including reflected signals, but does not measure signal quality or phase alignment.
2
Evaluate packet capture and spectrum analysis findings
Corrupted preamble headers and high 802.11802.11 retransmission counts without active co-channel or adjacent channel interference point directly to Layer 1 RF distortion rather than channel congestion.
Corrupted preambles occur when the receiver cannot synchronize due to phase distortion and overlapping signal reflections.
3
Correlate symptoms with physical RF behavior
RF waves bounce off metallic structures, causing multiple delayed versions of the same signal to arrive at the receiver at slightly different times (delay spread), resulting in destructive multipath interference.
When delay spread exceeds the guard interval of the 802.11802.11 standard, symbols overlap and corrupt the frame headers.

Key Concept

Multipath Interference and Delay Spread
Question 36Question

A network administrator is troubleshooting severe latency and intermittent connectivity issues for users in an open-office environment. A recent site audit reveals three 802.11n wireless access points (APs) mounted on the same ceiling grid, operating on the 2.4 GHz band and configured on channels 1, 3, and 5. Which of the following identifies the primary cause of the wireless performance degradation, and what is the proper solution?

Show answer & explanation

Answer: Adjacent-channel interference caused by overlapping channel assignments; reconfigure the access points to use non-overlapping channels 1, 6, and 11.

Answer

The primary cause is adjacent-channel interference caused by overlapping channel assignments; the access points should be reconfigured to non-overlapping channels 1, 6, and 11.
In the 2.4 GHz ISM band, channel center frequencies are separated by 5 MHz, while each 802.11 channel requires 20 MHz (or 22 MHz) of bandwidth. Consequently, channels 1, 3, and 5 overlap heavily in frequency spectrum, generating adjacent-channel interference (ACI). Reconfiguring the three access points to the standard non-overlapping channels (1, 6, and 11) eliminates frequency overlap and resolves throughput degradation.

Step-by-Step Solution

1
Analyze the wireless frequency spectrum configuration provided in the scenario.
The APs are using 2.4 GHz channels 1, 3, and 5.
Channels in the 2.4 GHz band are 22 MHz wide and spaced 5 MHz apart, meaning channels closer than 5 channels apart overlap with each other.
2
Identify non-overlapping channel selection standards for 2.4 GHz Wi-Fi deployments.
The standard non-overlapping channels for 2.4 GHz are channels 1, 6, and 11.
Using channels 1, 3, and 5 causes adjacent-channel interference (ACI), which leads to corrupted frames, retransmissions, and high latency.
3
Select the correct troubleshooting resolution.
Reassigning the access points to channels 1, 6, and 11 eliminates adjacent-channel interference.
This configuration restores normal channel spacing and optimizes wireless transmission quality.

Key Concept

2.4 GHz Non-Overlapping Channel Selection and Frequency Overlap Troubleshooting
Estimated Time:1m 30s
Question 37Question

Match each wireless connectivity issue to its primary cause.

Click a left item, then click its matching right item

Items

Signal Absorption
Channel Overlap
Multipath Interference
Attenuation

Matches

Show answer & explanation

Answer

Signal Absorption matches dense building materials absorbing RF waves; Channel Overlap matches adjacent non-standard 2.4 GHz frequencies; Multipath Interference matches signals reflecting off surfaces arriving out of phase; Attenuation matches signal loss due to distance.
Each wireless symptom maps directly to its fundamental radio frequency propagation behavior: Absorption relates to barrier materials, Channel Overlap relates to frequency assignment, Multipath Interference relates to signal reflection, and Attenuation relates to distance loss.

Step-by-Step Solution

1
Identify physical barriers reducing signal strength
Dense materials like concrete absorb RF energy (Signal Absorption).
Physical obstacles weaken the signal via absorption.
2
Analyze frequency channel allocation
Adjacent overlapping channels cause frequency collision and noise (Channel Overlap).
2.4 GHz requires non-overlapping channels (1, 6, 11) to avoid interference.
3
Examine reflective environment effects
Reflected waves arriving out of phase degrade signal clarity (Multipath Interference).
Bouncing signals distort the primary transmission.
4
Assess impact of distance from the Access Point
Signal strength weakens over distance (Attenuation).
Free-space path loss naturally reduces RF power as range increases.

Key Concept

Wireless Signal Degradation Factors
Question 38Question

Match each wireless network symptom or issue to its corresponding root cause or scenario description.

Click a left item, then click its matching right item

Items

Captive Portal Redirection Failure
Signal Attenuation due to Absorption
Co-Channel Interference
Multipath Distortion

Matches

Show answer & explanation

Answer

Captive Portal Redirection Failure matches the web browser credential prompt issue; Signal Attenuation due to Absorption matches RSSI drop behind concrete walls; Co-Channel Interference matches multiple APs competing on Channel 6; Multipath Distortion matches RF signals reflecting off metal surfaces causing phase cancellation.
Each wireless symptom maps directly to its underlying physical or logical cause based on 802.11 standards and RF behavior.

Step-by-Step Solution

1
Analyze the scenario regarding web browser prompts and IP connectivity.
Identify that failure to open an authentication splash page after receiving an IP address on a public network is characteristic of a captive portal redirection failure.
Captive portals intercept web traffic to authenticate users before granting external network access.
2
Analyze the physical barrier symptom involving concrete walls and signal degradation.
Identify that dense materials absorbing RF energy cause signal attenuation.
Solid construction materials such as concrete absorb radio signals, reducing RSSI.
3
Evaluate the channel configuration symptom involving multiple APs on Channel 6.
Determine that APs sharing the same channel in the same physical space cause co-channel interference.
802.11 devices use CSMA/CA, so sharing a channel forces devices to wait for airtime.
4
Evaluate the signal reflection symptom in the warehouse environment.
Identify that RF signals reflecting off metal and arriving out of phase cause multipath distortion.
Bouncing signals create phase differences that cancel out or corrupt incoming RF frames.

Key Concept

Wireless Connectivity and Signal Troubleshooting
Question 39Question

A network technician is investigating reports of intermittent dropouts and low data rates for mobile workstations in a newly renovated wing of a medical facility. The access point status indicates normal operational health, but a site measurement near the reinforced concrete walls shows a received signal strength indicator (RSSI) of -84 dBm compared to -52 dBm in the central hallway. Which of the following is the most likely cause of the degraded wireless performance?

Show answer & explanation

Answer: Signal attenuation caused by physical absorption from building construction materials

Answer

Signal attenuation caused by physical absorption from building construction materials is the primary cause of the low RSSI readings.
The correct answer correctly identifies physical attenuation. High-density materials like reinforced concrete absorb wireless radio frequency signals, drastically reducing received signal strength (RSSI) for devices operating behind or near those barriers.

Step-by-Step Solution

1
Analyze the reported symptom and site survey metrics
Identified a severe drop in RSSI from -52 dBm (acceptable/good signal) to -84 dBm (poor/unusable signal) specifically near reinforced concrete walls.
RSSI measures signal power at the receiver; a major drop across a physical boundary points to environmental interference.
2
Evaluate RF propagation characteristics against physical barriers
Dense obstacles such as concrete, brick, and rebar cause high signal attenuation (absorption of radio frequency energy).
Physical obstacles weaken RF wave amplitude as they pass through, dropping RSSI significantly.
3
Differentiate from logical or channel configuration issues
Eliminated DHCP, duplex mismatch, and channel overlap as causes because none of these directly decrease measured RF power level (RSSI).
Only physical distance, transmission power, or physical obstacles cause RSSI reductions.

Key Concept

Wireless Signal Attenuation and Environmental Obstacles
Question 40Question

Users in an enterprise office report severe latency and high packet loss when connected to the 2.4 GHz Wi-Fi network near a central atrium. A spectral scan reveals several neighboring access points operating on channels 3, 4, and 5 with 40 MHz channel widths. Which TWO of the following actions should the network administrator take to resolve the wireless signal degradation? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Reassign the 2.4 GHz access points to non-overlapping channels (1, 6, or 11).; Reduce the 2.4 GHz channel width from 40 MHz down to 20 MHz.

Answer

The network administrator should reassign the 2.4 GHz access points to non-overlapping channels (1, 6, or 11) and reduce the channel width from 40 MHz to 20 MHz.
In the 2.4 GHz band, standard 20 MHz channels only allow three non-overlapping channels: 1, 6, and 11. Deploying access points on channels 3, 4, or 5 causes severe adjacent-channel interference, which degrades signal quality and causes packet loss. Additionally, using a 40 MHz channel width in the crowded 2.4 GHz spectrum bonds two 20 MHz channels together, leaving almost no room for non-overlapping operation. Therefore, switching to non-overlapping channels (1, 6, or 11) and reducing the channel width to 20 MHz resolves the RF contention.

Step-by-Step Solution

1
Analyze the spectral scan findings
Identified adjacent-channel interference caused by access points operating on channels 3, 4, and 5, exacerbated by wide 40 MHz channel configurations in the 2.4 GHz band.
The 2.4 GHz Wi-Fi spectrum only has 20 MHz of channel spacing between non-overlapping channels 1, 6, and 11.
2
Select non-overlapping channels
Configuring access points to use only channels 1, 6, or 11 eliminates adjacent-channel interference.
Channels 1, 6, and 11 do not share overlapping frequency spectrum with one another in standard 20 MHz channel allocations.
3
Adjust channel width configuration
Reducing channel width from 40 MHz to 20 MHz restricts the overall spectral footprint.
Using 40 MHz channels in the 2.4 GHz band consumes nearly the entire available spectrum, leading to severe co-channel and adjacent-channel interference.

Key Concept

2.4 GHz Wi-Fi Channel Planning and Channel Width Optimization
PreviousPage 2 / 25Next
Network Troubleshooting Practice Questions — CompTIA Network+ — Page 2 | Examkin