All practice questions

2237 questions

Question 1161Question

A network analyst inspecting a packet capture between a wireless access point and a centralized authentication server observes that while the user password field within the Access-Request frame is obscured, the username and assigned VLAN attributes are visible in cleartext. Which operational characteristic of the RADIUS protocol accounts for this observed behavior?

Show answer & explanation

Answer: RADIUS encrypts only the password attribute within the packet body, leaving the remaining header and attribute-value pairs unencrypted over UDP.

Answer

RADIUS encrypts only the password attribute within the packet body, leaving the remaining header and attribute-value pairs unencrypted over UDP.
The RADIUS protocol (RFC 2865) operates over UDP (typically ports 1812 for authentication/authorization and 1813 for accounting) and encrypts only the User-Password attribute using an MD5-based algorithm with the shared secret. Other attributes such as User-Name, NAS-IP-Address, and vendor-specific attributes (like VLAN assignments) remain unencrypted in the packet body.

Step-by-Step Solution

1
Analyze the observed network packet capture characteristics
Password field is encrypted/obscured, but username and VLAN attributes are readable in cleartext.
This behavior directly matches the specific cryptographic boundary defined in the standard RADIUS protocol (RFC 2865).
2
Evaluate RADIUS protocol transport and security properties
RADIUS uses UDP (ports 1812/1813) and encrypts only the user password field using the shared secret.
Unlike TACACS+, which encrypts the entire payload over TCP port 49, RADIUS maintains unencrypted headers and RADIUS attributes to allow middleboxes to route packets.
3
Select the option describing RADIUS packet encryption boundaries
Identify the option stating that RADIUS encrypts only the password attribute while leaving the rest of the payload unencrypted over UDP.
This accurately explains why the analyst can read usernames and vendor attributes while seeing obscured passwords.

Key Concept

RADIUS vs TACACS+ Payload Encryption Boundaries
Question 1162Question

During a routine maintenance window, a network administrator attempts to apply a firmware update to a core distribution switch at an unmanned remote facility. The update fails, corrupting the flash memory and placing the switch into a continuous boot loop, which brings down all VLAN interfaces and primary IP routing. The administrator needs to gain low-level CLI access to the switch's bootloader to restore the operating system image and must also be able to perform a hard power-cycle if the device hangs. Which out-of-band management configuration best fulfills these requirements?

Show answer & explanation

Answer: Connect the switch's RS-232 serial console port to an out-of-band terminal server paired with an independent cellular modem, and plug the switch's power cord into a remotely managed switched PDU.

Answer

Connecting the switch's serial console port to an out-of-band terminal server with a cellular modem and utilizing a remotely managed switched PDU is the optimal solution.
When a network switch suffers flash corruption and enters a continuous boot loop, all Layer 2 and Layer 3 in-band network interfaces become unreachable. Establishing out-of-band (OOB) management via a terminal server connected to the switch's serial console port provides direct CLI access to the ROMMON bootloader over an independent cellular path. Additionally, plugging the switch into a remotely managed switched PDU enables administrators to hard power-cycle the switch remotely without requiring on-site technical personnel.

Step-by-Step Solution

1
Analyze the failure scenario and impact on management channels.
Corrupted flash memory and continuous rebooting render all primary IP routing, VLAN interfaces, and in-band management protocols (SSH, Telnet, SNMP) unusable.
In-band access requires a running operating system and functional network protocol stack.
2
Identify the required access layer for ROMMON/bootloader recovery.
Direct serial console access (RS-232/RJ-45 console) is necessary to interact with low-level bootloader environments.
Bootloader environments bypass operating system networking stack requirements and output directly over serial interfaces.
3
Determine the alternate transport and power control mechanisms.
A terminal server connected to a cellular modem provides out-of-band path connectivity, while a switched Power Distribution Unit (PDU) enables remote power-cycling.
Cellular connectivity circumvents the down primary WAN/LAN links, and a switched PDU provides power control independent of the device's responsive state.

Key Concept

Out-of-Band (OOB) Management and Remote Infrastructure Access
Question 1163Question

A network administrator is configuring a new wireless deployment for a corporate headquarters. The company's security policy requires each employee to authenticate using their individual domain credentials managed by a central RADIUS server, while ensuring robust encryption for all wireless traffic. Which wireless security configuration best fulfills these operational requirements?

Show answer & explanation

Answer: WPA3-Enterprise with 802.1X authentication and CCMP/GCMP encryption

Answer

WPA3-Enterprise with 802.1X authentication and CCMP/GCMP encryption
WPA3-Enterprise utilizes 802.1X port-based network access control to pass authentication traffic between wireless clients and a RADIUS server, ensuring each user logs in with distinct credentials. It couples this with robust AES encryption (CCMP/GCMP) for data confidentiality.

Step-by-Step Solution

1
Identify the authentication requirement from the scenario
Individual user credentials authenticated via a central RADIUS server require an 802.1X solution (Enterprise mode).
Personal modes (PSK/SAE) use a single shared key across all endpoints, which fails to provide per-user accountability.
2
Identify the standard and encryption protocols that satisfy enterprise security guidelines
WPA3-Enterprise combined with 802.1X authentication and CCMP/GCMP symmetric encryption.
WPA3-Enterprise mandates 802.1X EAP-based authentication with 128-bit or 192-bit cryptographic strength.

Key Concept

Wireless Security Standards and Encryption Protocols
Question 1164Question

During a routine security audit, a systems engineer notices that remote administration sessions to a core network switch transmit credentials in plaintext. Which administrative change should be implemented to secure interactive command-line access to the switch?

Show answer & explanation

Answer: Enable SSH and disable Telnet on the switch management interface.

Answer

Enable SSH and disable Telnet on the switch management interface.
Replacing Telnet with SSH ensures all management sessions are cryptographically secured using TCP port 22. SSH encrypts administrative credentials and commands, preventing eavesdropping and packet capture attacks across the network.

Step-by-Step Solution

1
Identify the security vulnerability in the current remote management configuration.
The current remote administration protocol transmits credentials and commands in cleartext.
Telnet operates on TCP port 23 without cryptographic protection, leaving sessions vulnerable to packet sniffing.
2
Select the industry standard encrypted protocol for interactive command-line management.
SSH (Secure Shell) provides confidentiality and integrity using strong payload encryption over TCP port 22.
Hardening switch management requires disabling legacy cleartext services in favor of secure, encrypted alternatives.

Key Concept

Device Hardening via Secure Management Protocols
Estimated Time:45s
Question 1165Question

An organization is deploying a centralized AAA architecture, configuring RADIUS for 802.1X wireless access and TACACS+ for administration of network infrastructure devices. Which of the following operational characteristics accurately describe these protocols in this design? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: TACACS+ encrypts the entire body of the packet, whereas RADIUS encrypts only the password field.; TACACS+ separates authentication, authorization, and accounting functions into independent processes, whereas RADIUS combines authentication and authorization.

Answer

TACACS+ encrypts the entire payload of the packet while RADIUS encrypts only the password field, and TACACS+ separates AAA functions into independent processes while RADIUS combines authentication and authorization.
TACACS+ encrypts the entire packet body and separates authentication, authorization, and accounting into distinct processes operating over TCP port 49. In contrast, RADIUS encrypts only the password field within packets and combines authentication and authorization over UDP ports 1812/1813.

Step-by-Step Solution

1
Analyze encryption boundaries between RADIUS and TACACS+.
Identify that TACACS+ encrypts the complete packet payload, whereas RADIUS encrypts only the user's password within the attribute payload.
TACACS+ offers greater confidentiality for command arguments and packet contents across the wire.
2
Evaluate AAA functional decoupling and transport protocol requirements.
Determine that TACACS+ decouples authentication, authorization, and accounting over TCP port 49, while RADIUS combines authentication and authorization over UDP ports 1812 and 1813.
Modular AAA separation allows TACACS+ to enforce command-by-command authorization during network management sessions.

Key Concept

RADIUS vs. TACACS+ Protocol Architecture and Features
Question 1166Question

A network administrator is preparing to update SNMP community strings and syslog server configurations across all data center switches to align with an updated security baseline. The administrator has already drafted the configuration syntax and conducted a risk assessment identifying potential monitoring outages. Which of the following actions should the administrator perform next in accordance with formal change management procedures?

Show answer & explanation

Answer: Submit a formal Request for Change (RFC) to the Change Advisory Board (CAB) for authorization.

Answer

The administrator should submit a formal Request for Change (RFC) to the Change Advisory Board (CAB) for authorization.
In standard IT change management, once a configuration change is planned and its operational risks are assessed, the next mandatory step is to submit a Request for Change (RFC) for review and approval by the Change Advisory Board (CAB). Implementation and maintenance window scheduling can only occur after CAB approval.

Step-by-Step Solution

1
Analyze the current stage of the change management process.
The proposed technical changes have been drafted and initial risk assessment has been completed.
Establishing the current phase identifies the required next step in the standard change lifecycle.
2
Identify the required governance gate prior to implementation.
Formal authorization via a Change Advisory Board (CAB) review of the Request for Change (RFC) is necessary.
Standard operational procedures mandate that non-emergency production modifications undergo review and approval before scheduling execution windows.

Key Concept

Change Management Lifecycle and Authorization Procedures
Question 1167Question

Match each wireless signal issue with its primary cause or physical manifestation.

Click a left item, then click its matching right item

Items

Signal Attenuation
Co-Channel Interference
Multipath Interference
Refraction

Matches

Show answer & explanation

Answer

Signal Attenuation pairs with RF energy weakening through dense walls; Co-Channel Interference pairs with access points broadcasting on the same channel; Multipath Interference pairs with RF signals bouncing off metal obstacles; Refraction pairs with RF signals bending when passing through different mediums.
Each wireless propagation phenomenon is paired directly with its underlying physical behavior or cause: attenuation reduces signal strength over distance/materials; co-channel interference stems from frequency overlap; multipath occurs via signal reflection; refraction is signal deflection through differing media density.

Step-by-Step Solution

1
Analyze Signal Attenuation
Matches with loss of RSSI/strength when penetrating obstacles such as concrete walls.
Attenuation represents natural energy loss as RF travels through media.
2
Analyze Co-Channel Interference
Matches with multiple APs operating on the exact same frequency channel.
Shared channels cause contention and airtime inefficiency.
3
Analyze Multipath Interference
Matches with RF signals bouncing off reflective surfaces like metal shelves.
Reflections cause signals to reach the receiving antenna at staggered intervals.
4
Analyze Refraction
Matches with signal bending through media of different densities.
Refraction alters the propagation direction of radio waves.

Key Concept

Identifying wireless propagation phenomena and interference sources
Question 1168Question

A network infrastructure team is deploying an edge micro data center enclosure on an active manufacturing floor to process real-time telemetry. Due to high physical traffic, ambient dust, and unauthorized personnel in the vicinity, the team must implement appropriate physical security access controls and environmental protection measures for the enclosure. Which TWO of the following controls should be deployed to address these specific access and environmental threats?

Select all that apply

Show answer & explanation

Answer: Install smartcard badge readers with PIN keypads on the enclosure doors and configure positive air pressure system within the cabinet; Deploy environmental monitoring sensors that trigger alerts if enclosure ambient temperature or humidity breaches defined thresholds

Answer

The two correct measures are installing smartcard badge readers with PIN keypads alongside a positive pressure HVAC/air filtration system, and deploying environmental monitoring sensors for temperature and humidity tracking.
Implementing smartcard badge readers with PIN keypads establishes multi-factor physical authentication to prevent unauthorized physical access on the factory floor, while positive air pressure prevents dust and particulates from entering the cabinet. In addition, environmental monitoring sensors provide essential real-time monitoring of cabinet temperature and humidity levels to protect delicate network hardware from environmental stress.

Step-by-Step Solution

1
Analyze the physical access requirements of the scenario.
Identified the need to prevent unauthorized physical opening of the edge enclosure on a high-traffic manufacturing floor.
Combining smartcard badges with PIN keypads establishes multifactor physical authentication, ensuring only authorized technicians can open cabinet doors.
2
Analyze the environmental threat requirements.
Identified dust contamination and ambient heat/humidity risks present on an active manufacturing plant floor.
Positive pressure HVAC prevents dust ingress by forcing clean air outward whenever cabinet seals flex, and internal environmental sensors ensure real-time alerting for temperature and humidity anomalies.
3
Evaluate and eliminate incorrect logical security tools and misapplied hardware testing utilities.
Discarded OTDR usage for perimeter security, IP ACLs for physical security, and insecure SNMPv2c protocol downgrades.
Physical security controls must directly address physical touch, access doors, particulate protection, and thermal monitoring rather than logical network layer rules or fiber diagnostic tools.

Key Concept

Physical Access Control and Environmental Protection Measures
Question 1169Question

A network technician is troubleshooting a workstation that is experiencing name resolution issues. Arrange the following diagnostic and remediation steps in the correct sequential order from first to last.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct order begins with verifying the client's IP and DNS server configuration, followed by checking local resolution entries, performing an nslookup test against the DNS server, and finally flushing the local DNS cache.
Troubleshooting begins by verifying basic client IP settings and DNS server assignments. Next, local resolution mechanisms (such as the HOSTS file and resolver cache) must be inspected. Once local settings are confirmed, interactive tools like `nslookup` are used to test DNS server responses directly. Finally, clearing stale cache entries with `ipconfig /flushdns` ensures updated records are loaded.

Step-by-Step Solution

1
Verify basic IP and DNS server configuration.
Ensures the host is on the correct subnet and has a valid DNS server IP address configured.
If local network settings or DNS server addresses are misconfigured, diagnostic lookup utilities will fail.
2
Inspect local static mappings and DNS resolver cache.
Identifies if local override files (HOSTS) or stale cached responses are interfering with name resolution.
Operating systems check local files and caches before issuing network DNS queries.
3
Query the DNS server directly using `nslookup`.
Determines whether the remote DNS server returns valid IP addresses or errors such as SERVFAIL/NXDOMAIN.
Isolates network/DNS server responsiveness from client-side application behavior.
4
Flush the DNS cache using `ipconfig /flushdns`.
Removes outdated or corrupt records from memory so subsequent lookups retrieve current records.
Remediates client-side cached failures after resolving upstream or local issues.

Key Concept

Sequential DNS Troubleshooting Methodology
Question 1170Question

A senior network security architect is designing physical and environmental defense controls for a tier-four enterprise data facility housing mission-critical financial databases. Match each physical or environmental control mechanism on the left with its primary security or environmental risk mitigation capability on the right.

Click a left item, then click its matching right item

Items

Aspirating Smoke Detection System (VESDA)
Clean-Agent Gaseous Fire Suppression System
Interlocked Mantrap with Integrated Mass Sensors
Alarmed Protected Distribution System (PDS)

Matches

Show answer & explanation

Answer

Aspirating Smoke Detection System (VESDA) matches with continuous air sampling for sub-micron particulate detection; Clean-Agent Gaseous Fire Suppression System matches with non-conductive, residue-free electrical fire extinguishment; Interlocked Mantrap with Integrated Mass Sensors matches with mass-threshold single-occupancy enforcement to prevent piggybacking; Alarmed Protected Distribution System (PDS) matches with optical or acoustic vibration monitoring along conduit runs.
Each physical security and environmental measure corresponds directly to a distinct threat vector: VESDA provides active sub-micron air sampling prior to visible smoke; clean agents suppress electrical fires without damaging hardware or leaving chemical residue; weight-sensing mantraps prevent physical tailgating via mass verification; and alarmed PDS monitors cabling conduits for vibration or tapping anomalies.

Step-by-Step Solution

1
Analyze the operational mechanism of high-sensitivity early warning smoke detection.
Identify Aspirating Smoke Detection Systems (VESDA) as active sampling units that detect sub-micron combustion particles before visible smoke forms.
Early warning detection allows engineers to remove power from overheating components before open flames ignite.
2
Evaluate fire suppression systems suitable for sensitive energized networking hardware.
Match Clean-Agent Gaseous Fire Suppression Systems to non-conductive gas discharge that leaves no corrosive residue.
Water sprinklers cause catastrophic short circuits and hardware destruction, whereas clean gaseous agents suppress electrical fires without damaging active electronics.
3
Determine physical access control mechanisms engineered specifically against piggybacking/tailgating.
Link Interlocked Mantraps with Integrated Mass Sensors to weight-verified single-occupancy access.
Standard card readers confirm identity but cannot verify total human count; integrated weight plates prevent secondary unauthorized individuals from walking through behind an authorized person.
4
Identify physical infrastructure monitoring controls for high-security network cabling.
Associate Alarmed Protected Distribution Systems (PDS) with acoustic/optical conduit intrusion sensing.
Alarmed PDS provides automated real-time alerts whenever physical tampering or drilling into protected conduit lines is attempted.

Key Concept

Physical Security Controls and Environmental Protection Measures
Estimated Time:2m 0s
Question 1171Question

During an internal penetration test, an analyst connects a laptop to a standard user access port on a Managed Layer 2 switch. Without deploying double-encapsulated 802.1Q tags or compromising any credentials, the analyst crafts specific control frames that force the switch port into an active trunking state. This allows the laptop to send and receive traffic across multiple restricted VLANs. Which attack vector was exploited to breach VLAN isolation, and what is the primary mitigation step required to prevent it?

Show answer & explanation

Answer: Dynamic Trunking Protocol (DTP) exploitation; mitigate by explicitly setting switch ports to static access mode and disabling negotiation.

Answer

Dynamic Trunking Protocol (DTP) exploitation; mitigate by explicitly setting switch ports to static access mode and disabling negotiation.
The correct answer identifies Dynamic Trunking Protocol (DTP) exploitation. When switch access ports are left in default dynamic modes (such as dynamic auto or desirable), an attacker sending spoofed DTP frames can trick the switch into forming an 802.1Q trunk. This grants the attacker access to all VLANs traversing that trunk. Hardcoding access ports statically (`switchport mode access`) and explicitly disabling DTP (`switchport nonegotiate`) prevents this vulnerability.

Step-by-Step Solution

1
Analyze the observed attack mechanics
The attacker connected to a standard access port and sent control frames that successfully negotiated an 802.1Q trunking operational state without using double-tagging.
Unmanaged or default switch port configurations often run Cisco Dynamic Trunking Protocol (DTP) in 'dynamic auto' or 'dynamic desirable' modes.
2
Identify the specific attack vector
The vector is DTP Exploitation (VLAN Hopping via DTP spoofing).
By spoofing DTP negotiation frames from an end-user device, the port switches from an access port to a trunk port, giving the attacker access to traffic from all VLANs allowed on the trunk.
3
Determine the proper remediation strategy
Configure user-facing interfaces with `switchport mode access` and `switchport nonegotiate` (or manually disable DTP).
Hardcoding ports as static access interfaces disables automatic trunk negotiation, ensuring that end-user ports cannot be coerced into establishing trunk links.

Key Concept

VLAN Hopping via Dynamic Trunking Protocol (DTP) Exploitation and Switch Port Hardening
Question 1172Question

During a wireless network performance audit of a open-plan office, a network administrator observes high frame retransmission rates and latency for clients connected to the 2.4 GHz band. A physical scan reveals that three neighboring access points (APs) mounted along the main corridor are assigned to channels 1, 3, and 6, each operating with a 20 MHz channel width. What is the primary cause of this performance degradation, and how should it be resolved?

Show answer & explanation

Answer: The APs are experiencing adjacent-channel interference because channel 3 overlaps with both channels 1 and 6; the APs should be reassigned to non-overlapping channels 1, 6, and 11.

Answer

The primary cause is adjacent-channel interference (ACI) caused by assigning overlapping channel 3 alongside channels 1 and 6. The issue is resolved by reconfiguring the access points to operate on standard non-overlapping channels 1, 6, and 11.
In the 2.4 GHz Wi-Fi band (2.412 GHz to 2.472 GHz), 20 MHz wide channels require 25 MHz of spacing between center frequencies to avoid spectral overlap. Channels 1, 6, and 11 are the only three standard non-overlapping channels in regulatory domains adhering to North American standards. Operating an access point on channel 3 causes adjacent-channel interference with APs on channels 1 and 6, as their frequency masks overlap. This interference corrupts frames mid-transmission, causing high retry rates and severe latency. Changing the channel plan to 1, 6, and 11 eliminates adjacent-channel interference.

Step-by-Step Solution

1
Analyze the 2.4 GHz channel assignment layout.
Identified access points running on 2.4 GHz channels 1, 3, and 6.
Each 20 MHz 802.11 channel in the 2.4 GHz ISM band spans 22 MHz of frequency space. Channels separated by fewer than 5 channel numbers share overlapping frequencies.
2
Evaluate the spectrum overlap of channel 3.
Channel 3 center frequency (2422 MHz) overlaps with channel 1 (2412 MHz) and channel 6 (2437 MHz).
Because 802.11 devices on adjacent overlapping channels cannot decode each other's preamble headers reliably for CSMA/CA clear channel assessment, overlapping transmissions cause raw RF noise and packet corruption (adjacent-channel interference).
3
Determine the proper remediation strategy.
Select standard non-overlapping channels 1, 6, and 11 for the 3 APs.
Channels 1, 6, and 11 provide sufficient frequency separation so that adjacent access points operate without spectral overlap.

Key Concept

2.4 GHz Non-Overlapping Channel Selection and Adjacent-Channel Interference (ACI)
Estimated Time:2m 0s
Question 1173Question

A network administrator is setting up a secure remote access VPN that uses Layer 2 Tunneling Protocol over IPsec (L2TP/IPsec). Place the steps required to establish a fully functional L2TP/IPsec VPN connection in the correct chronological order from first to last.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct order for establishing an L2TP/IPsec remote access VPN session is: 1) Negotiating IPsec Phase 1 (ISAKMP SA) over UDP port 500, 2) Negotiating IPsec Phase 2 Quick Mode SAs to encrypt UDP port 1701 via ESP, 3) Establishing the L2TP control connection and session inside the IPsec tunnel, 4) Performing PPP LCP negotiation and user authentication (MS-CHAPv2/EAP), and 5) Completing PPP IPCP to assign an internal IP address and network configuration to the client.
L2TP/IPsec is a dual-protocol VPN solution where IPsec provides confidentiality/authentication and L2TP provides data link tunneling. The sequence must strictly begin with IPsec Phase 1 (UDP 500) to build the ISAKMP SA, followed by IPsec Phase 2 to secure UDP 1701 via ESP. Once IPsec encryption is active, the L2TP tunnel is established, followed by PPP user authentication (MS-CHAPv2/EAP), and finally PPP IPCP address assignment to complete remote network integration.

Step-by-Step Solution

1
Identify the foundational security layer establishment.
IPsec Phase 1 (UDP port 500) initiates first.
L2TP lacks native encryption, so the IPsec secure channel must be built prior to L2TP negotiation.
2
Identify the data protection layer for the tunneling protocol.
IPsec Phase 2 negotiates ESP parameters specifically protecting UDP port 1701.
L2TP operates over UDP port 1701, which requires an active IPsec transform set to encrypt L2TP control and payload traffic.
3
Establish the L2TP tunnel.
L2TP control connection and session form within the secure IPsec transport.
Now that UDP port 1701 traffic is encrypted by IPsec, L2TP can safely negotiate its tunnel endpoints.
4
Authenticate the remote user.
PPP user authentication (MS-CHAPv2/EAP) executes across the L2TP session.
L2TP frames carry PPP payloads, allowing the gateway to verify user identity over the encrypted channel.
5
Provision network layer parameters.
PPP IPCP assigns an internal private IP address and DNS details to the client.
IP configuration must happen last so the authenticated client can begin routing IP traffic through the established tunnel.

Key Concept

L2TP/IPsec Encapsulation and Session Establishment Sequence
Question 1174Question

Following an overnight firmware upgrade on a multi-building enterprise network, users in one building report intermittent access to resources on other subnets. A network engineer systematically tests several hypotheses, eventually capturing traffic on the distribution switch and confirming that an unannounced native VLAN configuration change on a trunk link is causing tagged frame leaks and packet drops. Having successfully confirmed the root cause of the issue, which of the following actions should the engineer take next in accordance with the CompTIA troubleshooting methodology?

Show answer & explanation

Answer: Establish a plan of action to rectify the native VLAN mismatch, considering potential impacts on connected segments, and implement the solution.

Answer

Establish a plan of action to rectify the native VLAN mismatch, considering potential impacts on connected segments, and implement the solution.
According to the CompTIA 6-step troubleshooting methodology, the steps in order are: 1) Identify the problem, 2) Establish a theory of probable cause, 3) Test the theory to determine cause, 4) Establish a plan of action to resolve the problem and implement the solution, 5) Verify full system functionality and, if applicable, implement preventive measures, and 6) Document findings, actions, and outcomes. In the scenario, the technician has successfully tested and confirmed the theory (Step 3). The mandatory next phase is Step 4: establishing a plan of action to resolve the issue and implementing the solution.

Step-by-Step Solution

1
Identify the troubleshooting step completed within the scenario context
The engineer performed traffic captures and confirmed that an unannounced native VLAN configuration change was causing the packet drops, completing Step 3 (Test the theory to determine cause).
Determining the exact step completed allows identification of the next required step in the methodology.
2
Recall the official CompTIA 6-step troubleshooting methodology sequence
Sequence: 1. Identify the problem -> 2. Establish a theory of probable cause -> 3. Test the theory to determine cause -> 4. Establish a plan of action to resolve the problem and implement the solution -> 5. Verify full system functionality and implement preventive measures -> 6. Document findings, actions, and outcomes.
Adherence to CompTIA's official workflow order is strictly evaluated on Network+ exams.
3
Select the immediate next step in the sequence following Step 3
Step 4: Establish a plan of action to resolve the problem and implement the solution.
Once a theory is validated, the technician must design a resolution plan and execute it before verifying or documenting.

Key Concept

CompTIA 6-Step Troubleshooting Methodology Sequence
Question 1175Question

An IT consultant is diagnosing severe throughput degradation and high retransmission rates on a corporate suite's 2.4 GHz wireless network in a multi-tenant office building. A spectrum analyzer capture indicates that a neighboring tenant's unmanaged access point is broadcasting on Channel 4 using a standard 20 MHz channel width. To eliminate adjacent-channel interference and establish total RF spectrum isolation for the corporate suite on the 2.4 GHz band, which channel should the administrator assign to the internal access point?

Show answer & explanation

Answer: Reassign the access point to Channel 11

Answer

Assigning the access point to Channel 11 completely isolates the wireless signal from Channel 4's spectral envelope.
In the 2.4 GHz Wi-Fi band, each 20 MHz wide channel requires roughly 22 MHz of channel separation. Channel 4 has a center frequency of 2427 MHz, causing its signal to occupy frequencies from roughly 2416 MHz to 2438 MHz. Channel 1 (2401–2423 MHz) and Channel 6 (2426–2448 MHz) both share overlapping frequency space with Channel 4. Channel 11 (2451–2473 MHz) resides entirely clear of Channel 4's upper limit, providing complete spectral isolation and eliminating adjacent-channel interference.

Step-by-Step Solution

1
Analyze the spectral footprint of the interfering signal on Channel 4.
In 20 MHz 802.11 deployments, Channel 4 operates at a center frequency of 2427 MHz and occupies an RF passband from approximately 2416 MHz to 2438 MHz.
Understanding the exact frequency boundaries of the interference source is required to select a non-overlapping channel.
2
Evaluate candidate 2.4 GHz non-overlapping channels against Channel 4's boundaries.
Channel 1 (2401–2423 MHz) overlaps Channel 4 between 2416 MHz and 2423 MHz. Channel 6 (2426–2448 MHz) overlaps Channel 4 between 2426 MHz and 2438 MHz.
Adjacent-channel interference causes near-far framing errors and unrecoverable packet collisions because radios cannot decode corrupted headers.
3
Verify Channel 11 frequency isolation.
Channel 11 operates at center frequency 2462 MHz with a passband from 2451 MHz to 2473 MHz. Its lowest frequency (2451 MHz) is well above Channel 4's highest frequency (2438 MHz).
Operating above 2438 MHz guarantees complete frequency separation and eliminates adjacent-channel interference.

Key Concept

2.4 GHz Channel Overlap and Spectral Passband Calculation
Estimated Time:2m 0s
Question 1176Question

A network technician is configuring a new standalone wireless access point using WPA3-Personal for a small branch office that lacks a centralized AAA/RADIUS infrastructure. Which of the following technical features are native capabilities of WPA3-Personal that directly enhance security compared to WPA2-Personal? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Simultaneous Authentication of Equals (SAE) protocol to provide forward secrecy and resistance against offline dictionary attacks.; Mandatory Protected Management Frames (PMF) to prevent rogue deauthentication and disassociation spoofing attacks.

Answer

The native features of WPA3-Personal that enhance security over WPA2-Personal are Simultaneous Authentication of Equals (SAE) for forward secrecy and offline dictionary attack resistance, and mandatory Protected Management Frames (PMF) to protect against management frame spoofing.
WPA3-Personal significantly improves Wi-Fi security by replacing WPA2's PSK exchange with Simultaneous Authentication of Equals (SAE), a Diffie-Hellman-based key exchange protocol that prevents offline dictionary attacks even when weak passphrases are used. Additionally, WPA3 makes Protected Management Frames (PMF / 802.11w) mandatory, safeguarding management traffic such as deauthentication and disassociation frames from being spoofed by malicious actors.

Step-by-Step Solution

1
Analyze the scenario constraints and requirements
The branch office lacks RADIUS infrastructure, meaning WPA3-Enterprise features are not applicable, focusing the analysis on WPA3-Personal enhancements.
WPA3-Personal is designed for environments without 802.1X/RADIUS servers.
2
Evaluate key WPA3-Personal security enhancements
SAE replaces PSK to defend against brute-force dictionary attacks, and PMF (IEEE 802.11w) becomes mandatory to block unauthenticated management frame attacks.
These two specifications constitute the defining technical security upgrades from WPA2-Personal to WPA3-Personal.

Key Concept

WPA3-Personal Security Enhancements (SAE and PMF)
Question 1177Question

A network engineer is drafting a formal Request for Change (RFC) to update the configuration baseline and firmware of critical core switches in a financial datacenter. Which of the following elements must be included in the RFC documentation before submitting it for Change Advisory Board (CAB) review? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: A detailed rollback plan specifying clear metric triggers and procedures for reverting to the previous baseline if implementation issues occur; A defined maintenance window detailing the exact scheduled timeframe, affected network services, and expected business impact

Answer

The essential RFC components are a detailed rollback plan with explicit failure triggers and a defined maintenance window specifying execution timeframes and business impact.
A formal Request for Change must include both an explicit rollback plan (with actionable triggers for reverting changes) and a scheduled maintenance window (defining the operational impact and exact time bounds). These elements allow the Change Advisory Board to assess operational risk accurately and ensure business continuity.

Step-by-Step Solution

1
Analyze standard components of a Request for Change (RFC) in formal network operations.
Identified that RFCs must contain risk assessments, execution steps, rollback plans, and maintenance schedules.
CAB approval depends on comprehensive documentation that evaluates risk and limits downtime exposure.
2
Evaluate the requirement for a rollback plan.
Determined that documenting specific triggers and reversion steps ensures rapid recovery in the event of an unexpected outage during deployment.
A change cannot proceed safely without a reliable method to return to the functional baseline configuration.
3
Evaluate the requirement for maintenance window scheduling.
Determined that defining the precise timeframe and scope of impact allows the organization to coordinate around planned maintenance.
Proper scheduling prevents unannounced outages for critical business functions.

Key Concept

Request for Change (RFC) Essential Elements
Question 1178Question

A system administrator executes a lookup command to test hostname resolution for a new database server. The command output is as follows:

text
$ dig db01.company.local
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 38419
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 1

Which of the following issues is directly indicated by the response status in this output?

Show answer & explanation

Answer: The queried domain name does not exist or lacks a matching resource record on the DNS server.

Answer

The NXDOMAIN status indicates that the specified domain name does not exist in the DNS database.
The NXDOMAIN (Non-Existent Domain) status code indicates that the targeted DNS server was reached successfully, but no valid host or A record exists for the queried domain name (db01.company.local).

Step-by-Step Solution

1
Examine the status field in the dig command output header.
The status field explicitly states `status: NXDOMAIN`.
The status field reports the response code returned by the DNS resolver.
2
Interpret the meaning of the NXDOMAIN response code.
NXDOMAIN stands for Non-Existent Domain.
This code confirms that the DNS server successfully received the query but holds no matching A or host record for the target name.

Key Concept

DNS Response Codes (NXDOMAIN)
Estimated Time:45s
Question 1179Question

A network administrator is designing an enterprise monitoring and telemetry strategy. Match each monitoring technology or protocol to its primary functional characteristic.

Click a left item, then click its matching right item

Items

SNMPv3 (authPriv)
NetFlow / IPFIX
Syslog
sFlow

Matches

Show answer & explanation

Answer

SNMPv3 (authPriv) matches with authenticated and encrypted MIB polling; NetFlow/IPFIX matches with flow table aggregation for IP conversation statistics; Syslog matches with unprompted event log messaging categorized by facility and severity; and sFlow matches with hardware packet sampling for scalable switch monitoring.
Each monitoring technology serves a distinct operational purpose: SNMPv3 with authPriv secures device MIB polling; NetFlow/IPFIX aggregates traffic into flow records; Syslog delivers centralized event messages organized by facility and severity; and sFlow provides hardware-level packet sampling for high-density switches.

Step-by-Step Solution

1
Analyze management querying protocols and security modes.
Identify SNMPv3 authPriv as the mode offering both authentication and payload privacy (encryption) when polling device MIB counters.
Security compliance standards require encrypted management queries to safeguard device telemetry.
2
Compare flow monitoring against packet sampling mechanisms.
Differentiate stateful flow tracking (NetFlow/IPFIX) which aggregates IP 5-tuple records from statistical packet sampling (sFlow) implemented in switch ASICs.
NetFlow builds connection records in cache, whereas sFlow samples raw packets to scale across wire-speed interfaces.
3
Identify event notification messaging protocols.
Recognize Syslog as an unprompted message transport mechanism using facility and severity codes to log status changes.
Syslog operates asynchronously when events occur rather than via periodic polling.

Key Concept

Network Telemetry and Performance Monitoring Protocols
Question 1180Question

A network technician is performing a wireless site survey to diagnose several radio frequency (RF) signal degradation issues across an enterprise environment. Match each RF propagation phenomenon to its primary physical cause or characteristic manifestation.

Click a left item, then click its matching right item

Items

Reflection and Multipath Distortion
Absorption Attenuation
Free Space Path Loss
Adjacent Channel Interference

Matches

Show answer & explanation

Answer

Reflection and Multipath Distortion matches RF signals bouncing off metallic obstacles; Absorption Attenuation matches RF energy converted into heat passing through dense concrete walls; Free Space Path Loss matches RF signal amplitude naturally diminishing over distance; Adjacent Channel Interference matches partially overlapping frequency channels creating non-demodulable RF noise.
Each wireless propagation phenomenon corresponds directly to its underlying physical cause: Reflection causes out-of-phase multipath arrival when hitting metal; Absorption converts RF power into heat as it penetrates dense walls; Free Space Path Loss is the natural attenuation of RF energy over distance; and Adjacent Channel Interference occurs when overlapping channel frequencies generate undecodable interference.

Step-by-Step Solution

1
Identify Reflection and Multipath Distortion
Correlate signal bouncing off metal with out-of-phase arrival delays.
Metallic surfaces reflect RF waves, producing multipath signals that cause inter-symbol interference at the receiving antenna.
2
Identify Absorption Attenuation
Correlate signal loss through dense barriers with energy conversion to heat.
Solid obstacles absorb electromagnetic energy, causing signal strength attenuation as the wave penetrates the obstacle.
3
Identify Free Space Path Loss
Correlate distance-based signal decay with wavefront expansion in open air.
As an RF signal travels away from an omnidirectional antenna, its power density decreases over distance following the inverse-square law.
4
Identify Adjacent Channel Interference
Correlate overlapping channel assignments with non-demodulable packet noise.
Operating on overlapping channels (e.g., 2.4 GHz channels 1 and 2 or 3) causes sideband energy spillovers that disrupt frame transmissions.

Key Concept

RF propagation characteristics and wireless signal troubleshooting
PreviousPage 59 / 112Next
All practice questions — CompTIA Network+ | Examkin