All practice questions

2237 questions

Question 921Question

A technician is deploying a wireless access point and needs to select security protocols that protect against offline dictionary password-guessing attacks while providing modern, high-strength data encryption. Which of the following wireless security standards or mechanisms fulfill these requirements? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: WPA3-Personal utilizing Simultaneous Authentication of Equals (SAE); Galois/Counter Mode Protocol (GCMP-256) encryption

Answer

WPA3-Personal with SAE and GCMP-256 encryption are the correct security selections.
WPA3-Personal replaces the traditional WPA2 Pre-Shared Key (PSK) exchange with Simultaneous Authentication of Equals (SAE), which prevents offline dictionary attacks by creating ephemeral keys for each session. Additionally, GCMP-256 (Galois/Counter Mode Protocol with 256-bit key length) provides cutting-edge authenticated encryption for modern wireless networks.

Step-by-Step Solution

1
Identify the authentication protocol that prevents offline dictionary attacks.
WPA3-Personal uses SAE (Dragonfly key exchange) which eliminates passive offline dictionary attacks.
Legacy pre-shared key methods like WPA/WPA2-Personal rely on 4-way handshakes vulnerable to offline capture and brute-force cracking.
2
Identify the modern cryptographic encryption algorithm that provides authenticated data protection.
GCMP-256 is a modern 256-bit encryption cipher suite specified for WPA3.
TKIP and RC4 are deprecate/insecure legacy ciphers, whereas AES-CCMP and GCMP offer modern authenticated encryption.

Key Concept

WPA3 Wireless Security Standards and Modern Ciphers
Estimated Time:1m 0s
Question 922Question

During a forensic analysis at a financial services organization, network engineers discover that an attacker executed a man-in-the-middle attack on an internal subnet between an application server and a SQL database. The attacker intercepted automated database queries and modified financial balances inside the packet payloads in transit without interrupting the TCP session or altering packet lengths. System uptime, server access, and network performance remained completely normal throughout the event. Which security principle of the CIA triad was directly violated, and which security control best mitigates this vulnerability?

Show answer & explanation

Answer: Integrity; this should be mitigated by enforcing IPsec using Encapsulating Security Payload (ESP) or HMAC message authentication to prevent undetected data tampering.

Answer

Integrity was compromised because the transaction payload was modified during transmission. Deploying IPsec with Encapsulating Security Payload (ESP) or HMAC message authentication protects data integrity.
The scenario describes an unauthorized alteration of data during transmission between two endpoints without causing downtime or session loss. Integrity ensures that information remains unchanged and untampered with while stored or in transit. Implementing IPsec ESP or HMAC integrity checks ensures that any modified packet is detected via hash mismatch and immediately dropped.

Step-by-Step Solution

1
Analyze the attack impact described in the scenario
Data within packet payloads was manipulated in transit, while network availability and access remained unaffected.
Determining which aspect of the data or service was impacted isolates the specific pillar of the CIA triad.
2
Map the impact to the core CIA triad security principles
Unauthorized modification of data directly violates Integrity.
Integrity guarantees that data remains in an unaltered state from source to destination.
3
Select the appropriate network security control to protect integrity in transit
IPsec ESP (or cryptographic hashing/HMAC) validates packet checksums and prevents payload tampering.
Cryptographic authentication headers detect unauthorized modifications and discard corrupted packets before processing.

Key Concept

CIA Triad - Integrity & Cryptographic Message Protection
Estimated Time:1m 30s
Question 923Question

An administrator is configuring a stateless extended IPv4 Access Control List (ACL) on a WAN edge router interface (GigabitEthernet0/1) to secure traffic between an internal database cluster (192.168.10.0/24192.168.10.0/24) and a remote external cloud database server (203.0.113.50203.0.113.50). Internal hosts initiate outbound TCP connections to the external server on destination port 54325432.

To allow outbound traffic, the outbound ACL on GigabitEthernet0/1 contains the following rule:
`access-list 101 permit tcp 192.168.10.0 0.0.0.255 host 203.0.113.50 eq 5432`

Which entry must be added to the inbound ACL on GigabitEthernet0/1 to permit return traffic from the database server back to internal hosts while preventing unrequested inbound TCP connections from external sources?

Show answer & explanation

Answer: access-list 102 permit tcp host 203.0.113.50 eq 5432 192.168.10.0 0.0.0.255 established

Answer

The inbound ACL entry must specify 'access-list 102 permit tcp host 203.0.113.50 eq 5432 192.168.10.0 0.0.0.255 established'.
Stateless Access Control Lists evaluate packets individually without keeping track of connection state tables. When an internal client initiates a TCP session to port 5432 on an external server, the server's return packets will have a source IP of 203.0.113.50, a source TCP port of 5432, and a destination IP in the 192.168.10.0/24 network. Additionally, valid return traffic in a TCP handshake contains the ACK or RST flag. Using the entry containing 'host 203.0.113.50 eq 5432 192.168.10.0 0.0.0.255 established' correctly checks that source port 5432 is specified and that non-SYN return packets are permitted while blocking incoming new connection attempts.

Step-by-Step Solution

1
Analyze source and destination parameters for return traffic
Return traffic originates from the external database host (203.0.113.50203.0.113.50) on source TCP port 54325432 and travels to internal hosts (192.168.10.0/24192.168.10.0/24) on dynamic high-numbered ephemeral destination ports.
When internal clients initiate a TCP connection, the database server responds from its service port (54325432) back to the client's dynamically allocated source port.
2
Evaluate statefulness and TCP flag filtering requirements
Stateless firewalls and standard router extended ACLs do not keep connection state tables. To permit return packets while blocking unsolicited inbound connection attempts (SYN packets), the ACL must inspect TCP flag bits.
The 'established' keyword forces the ACL to check for the presence of ACK (Acknowledgment) or RST (Reset) control bits, which are only present in ongoing, established TCP sessions.
3
Construct the exact syntax for the inbound ACL entry
`access-list 102 permit tcp host 203.0.113.50 eq 5432 192.168.10.0 0.0.0.255 established`
This entry matches TCP packets sourced from host 203.0.113.50203.0.113.50 port 54325432 destined for 192.168.10.0/24192.168.10.0/24 with the ACK or RST flags set.

Key Concept

Stateless extended ACL return traffic filtering using TCP flag matching (`established` keyword)
Estimated Time:3m 0s
Question 924Question

A network administrator is deploying a performance monitoring solution to track switch CPU and memory utilization across a enterprise network. The solution must support encrypted management traffic and allow standard polling queries to pass through internal firewalls. Which of the following configurations and protocols should the administrator implement? (Select TWO)

Select all that apply

Show answer & explanation

Answer: Configure SNMPv3 using the authPriv security level to ensure data encryption and authentication.; Permit UDP port 161 on internal firewalls to allow SNMP polling traffic between the manager and agents.

Answer

The administrator should configure SNMPv3 with authPriv for encrypted payload transmission and permit UDP port 161 on internal firewalls for standard SNMP agent polling.
Selecting SNMPv3 with the authPriv security level satisfies the requirement for payload encryption and message integrity. Allowing UDP port 161 on intermediate firewalls enables the central monitoring system to issue SNMP GET and SET requests to network switches.

Step-by-Step Solution

1
Identify the SNMP version and security level that provides payload encryption.
SNMPv3 with the authPriv setting provides both authentication and privacy (AES encryption).
Security compliance requires encrypted telemetry data in transit, which earlier SNMP versions cannot provide.
2
Determine the transport protocol and port number required for standard SNMP polling requests.
SNMP queries use UDP port 161.
Firewall rules must permit UDP port 161 traffic from the NMS to monitored switch agents.

Key Concept

SNMPv3 Security Levels and Port Operations
Question 925Question

A network security engineer is designing an automated system to transmit high-value financial transaction logs between remote data centers across a public network. The security baseline specifies that the system must ensure data cannot be altered during transit without detection, while also cryptographically preventing the sending system from denying it originated the log transmission. Which of the following security mechanisms should the engineer implement to fulfill these specific security principles? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Asymmetric digital signatures applied to each log payload using private keys; Cryptographic message digest generation using SHA-256 appended to the transfer protocol

Answer

The required security principles are Integrity and Non-repudiation. Cryptographic message digests (such as SHA-256 hashes) ensure Integrity by verifying that data has not been altered in transit. Asymmetric digital signatures ensure both Integrity and Non-repudiation by using a private key to sign the data, allowing any party with the public key to verify authenticity and origin.
Digital signatures provide non-repudiation and integrity through asymmetric cryptography, while cryptographic hashing (SHA-256) verifies payload integrity by enabling detectability of any modifications in transit.

Step-by-Step Solution

1
Analyze the requirements stated in the scenario stem.
Identified two target core security requirements: detecting unauthorized alterations in transit (Integrity) and cryptographically proving the sender's identity to prevent denial of origin (Non-repudiation).
Matching technical security controls directly to specific CIA triad pillars and related core principles is required.
2
Evaluate technical controls for Integrity.
Cryptographic hashing (SHA-256) generates a unique checksum derived from the original payload. Any tampering during transit alters the checksum at the destination, fulfilling the integrity requirement.
Hashing functions provide data verification against tampering.
3
Evaluate technical controls for Non-repudiation and Integrity combined.
Asymmetric digital signatures use the sender's private key to sign the hash of the message. Because only the sender possesses the private key, successful verification with the corresponding public key guarantees both origin authenticity (non-repudiation) and payload integrity.
Asymmetric key pairs bind identity to transaction signatures.

Key Concept

CIA Triad & Core Security Principles (Integrity and Non-repudiation)
Question 926Question

A network engineer must implement a true out-of-band (OOB) remote management architecture for a critical enterprise data center. During a widespread core routing outage where the primary WAN connection and internal IP infrastructure are completely unreachable, the administrator needs direct console-level command-line access to reconfigure core switches. Which solution meets these out-of-band remote access and resilience requirements?

Show answer & explanation

Answer: Connect the serial console ports of all core devices to an OOB console terminal server equipped with a dedicated cellular modem connection.

Answer

Connecting the serial console ports of core devices to an out-of-band console terminal server backed by a dedicated cellular modem provides true out-of-band management independent of primary IP network availability.
The correct option describes a true out-of-band (OOB) management solution. Connecting physical serial console ports to a console terminal server with a dedicated cellular modem ensures administrators can reach network hardware CLI shells even when all primary wired ISP links, switches, and internal IP routing protocols have failed.

Step-by-Step Solution

1
Analyze the outage condition and management requirements.
Identified that primary WAN links and internal IP routing are fully down, eliminating all in-band IP-based management paths.
Out-of-band (OOB) access requires a completely isolated media path that does not depend on the operational state of the primary network hardware or IP routing stack.
2
Evaluate hardware interface requirements for console-level control.
Serial console (RS-232/RJ-45 console) connections directly communicate with device bootloaders and shells without requiring active IP stacks on the target network devices.
Terminal servers (console servers) pool these serial connections into a central management node.
3
Select the independent transmission medium for external connection.
A dedicated cellular modem interface attached to the terminal server allows administrators to dial in externally when landline ISP connections fail.
Cellular connectivity operates completely out-of-band from the site's primary wired internet infrastructure.

Key Concept

Out-of-Band (OOB) Management and Console Servers
Question 927Question

A network security administrator is evaluating centralized AAA protocols to manage enterprise infrastructure. The design requires implementing TACACS+ for device administration and RADIUS for network access control. Which TWO of the following characteristics accurately differentiate the operational behavior of TACACS+ from RADIUS? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: TACACS+ decouples authentication and authorization into independent processes, whereas RADIUS combines authentication and authorization into a single exchange.; TACACS+ encrypts the entire payload of the packet during transmission, whereas RADIUS encrypts only the password attribute within the packet.

Answer

The correct selections state that TACACS+ decouples authentication and authorization while RADIUS combines them, and that TACACS+ encrypts the entire packet body while RADIUS encrypts only the password field.
TACACS+ is a Cisco-proprietary/standardized administrative protocol that operates over TCP port 49, separating authentication and authorization while encrypting the entire packet payload. In contrast, RADIUS is an open standard operating over UDP ports 1812 and 1813 that combines authentication and authorization into single transactions and encrypts only the password attribute.

Step-by-Step Solution

1
Analyze AAA architecture decoupling
Identify that TACACS+ separates AAA functions into independent modules, permitting per-command authorization, whereas RADIUS binds authentication and authorization together.
This is a core architectural difference between RADIUS and TACACS+.
2
Evaluate cryptographic boundary differences
Confirm that TACACS+ encrypts the full body of every packet, while RADIUS obfuscates only the password attribute.
Security boundary requirements specify full payload privacy for device administration sessions using TACACS+.
3
Verify transport layer protocol assignments
Rule out transport misidentifications by recalling TACACS+ uses TCP port 49 and RADIUS uses UDP ports 1812/1813.
Distinguishing connection-oriented (TCP) vs connectionless (UDP) transport is vital for AAA firewall configuration.

Key Concept

AAA Protocol Differentiation (RADIUS vs TACACS+)
Question 928Question

During an incident investigation on an enterprise dual-stack subnet, a network administrator observes that workstations are directing outbound traffic to an unauthorized device on the local segment. Packet captures indicate that while Dynamic ARP Inspection (DAI) and DHCP Snooping are active and successfully blocking rogue IPv4 gateway announcements, client dual-stack nodes have automatically updated their default gateway settings to a link-local IPv6 address transmitted via unsolicited ICMPv6 Type 134 messages from an unknown host. Which of the following attack vectors is occurring, and what is the primary Layer 2 mitigation required to block it?

Show answer & explanation

Answer: Rogue IPv6 Router Advertisement (RA) spoofing; mitigate by enabling IPv6 RA Guard on access switchports.

Answer

Rogue IPv6 Router Advertisement (RA) spoofing; mitigate by enabling IPv6 RA Guard on access switchports.
In dual-stack network environments, hosts automatically configure IPv6 default gateways upon receiving ICMPv6 Type 134 Router Advertisement (RA) messages. Attackers exploit this behavior by broadcasting rogue RAs, directing client traffic through the attacker's system. Because traditional IPv4 security measures such as Dynamic ARP Inspection (DAI) do not process ICMPv6 frames, network switches must run IPv6 RA Guard to inspect and drop unauthorized RA frames on non-router switchports.

Step-by-Step Solution

1
Analyze protocol telemetry and message types
Identified ICMPv6 Type 134 (Router Advertisement) messages as the source of unauthorized default gateway manipulation.
ICMPv6 Type 134 is specifically used by IPv6 routers in Neighbor Discovery Protocol (NDP) to announce prefix information and default gateway availability to client nodes.
2
Evaluate existing security controls and protocol scope
Confirmed that Dynamic ARP Inspection (DAI) and DHCP Snooping only safeguard IPv4 ARP and DHCPv4 transactions.
Dual-stack hosts often prefer IPv6 by default. If IPv6 control traffic is unsecured, attackers can bypass IPv4 security mechanisms by acting as an IPv6 default router.
3
Determine the precise attack type and Layer 2 countermeasure
Diagnosed Rogue IPv6 Router Advertisement spoofing and identified IPv6 RA Guard as the mandatory switchport mitigation.
RA Guard operates at Layer 2 to inspect ICMPv6 Router Advertisement messages and drop unauthorized RAs on user-facing switchports before they reach client machines.

Key Concept

Rogue IPv6 Router Advertisement Spoofing and RA Guard
Question 929Question

A security engineer is tasked with monitoring a high-traffic enterprise network segment to identify zero-day attacks and unauthorized behavioral deviations. The organization requires that the monitoring solution must not introduce processing latency, drop legitimate packets during peak traffic hours, or create a single point of failure on the link. Which deployment architecture and detection method should the engineer implement?

Show answer & explanation

Answer: An out-of-band NIDS utilizing anomaly-based detection

Answer

An out-of-band Network Intrusion Detection System (NIDS) utilizing anomaly-based detection logic satisfies all requirements by inspecting copied traffic passively without latency while detecting unknown zero-day threats.
Out-of-band NIDS deployments receive copied frame streams from a network TAP or SPAN port, ensuring zero latency impact and removing single-point-of-failure risks on the active link. Anomaly-based detection establishes a baseline of normal network behavior, allowing the system to identify zero-day attacks and abnormal traffic patterns that lack known signatures.

Step-by-Step Solution

1
Analyze placement topology requirements (inline vs. out-of-band).
Requirements specify zero added latency, no packet drops during congestion, and no single point of failure, which eliminates inline (in-band) NIPS architectures in favor of passive (out-of-band) NIDS connected via TAP or SPAN.
Inline devices process traffic in real-time on the wire, introducing latency and potentially blocking traffic if overwhelmed.
2
Analyze detection mechanism requirements (signature-based vs. anomaly-based).
The requirement to catch zero-day attacks and unknown behavioral deviations mandates anomaly-based (or baseline/behavioral) detection logic.
Signature-based engines require pre-existing pattern definitions and cannot detect previously unseen zero-day exploits.
3
Synthesize placement and detection engine selection.
Combining out-of-band passive placement with anomaly-based detection logic fulfills both performance constraints and threat detection goals.
This combination ensures full visibility of novel threats while keeping live network performance unaffected.

Key Concept

NIDS vs NIPS Placement Topology and Detection Engine Logic
Estimated Time:1m 30s
Question 930Question

During an automated compliance scan, a network operations team discovers that several edge firewalls have drifted from the approved baseline configuration due to unrecorded manual modifications made during a previous outage. To bring the firewalls back into compliance while adhering to strict change management protocols, which of the following actions MUST the team perform? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Submit a formal Request for Change (RFC) detailing the configuration drift, risk evaluation, rollback procedures, and proposed baseline synchronization.; Obtain authorization from the Change Advisory Board (CAB) and schedule the baseline restoration within an approved maintenance window.

Answer

The team must submit a formal Request for Change (RFC) outlining the drift remediation plan and obtain approval from the Change Advisory Board (CAB) to execute the restoration within a scheduled maintenance window.
Remediating configuration drift requires filing a formal Request for Change (RFC) to document the planned modifications, impacts, and rollback procedures. Furthermore, because production firewalls affect network availability and security, the change must be reviewed by the Change Advisory Board (CAB) and scheduled during an authorized maintenance window.

Step-by-Step Solution

1
Identify and document the extent of configuration drift across the target firewall devices.
Discrepancies between running configurations and the authorized baseline repository are cataloged.
Accurate scope definition is required before assessing risk and writing an RFC.
2
Draft a detailed Request for Change (RFC) including a rollback plan and risk assessment.
Formal change documentation is submitted for administrative review.
Every planned modification to production network infrastructure must undergo standard change management evaluation.
3
Present the RFC to the Change Advisory Board (CAB) for authorization and schedule the execution window.
Approval is granted and the task is assigned to an official maintenance window.
CAB approval ensures stakeholder alignment and minimizes disruption to business operations.

Key Concept

Configuration Drift Remediation and Change Management Governance
Estimated Time:2m 0s
Question 931Question

A network security specialist is implementing an 802.1X Port-based Network Access Control architecture across an enterprise Ethernet infrastructure. In this deployment, network switches operate as authenticators that relay authentication requests from supplicants to a centralized backend server. Which TWO of the following statements accurately describe the operational and security characteristics of the RADIUS protocol in this AAA environment?

Select all that apply

Show answer & explanation

Answer: RADIUS combines authentication and authorization into a single functional service process while isolating accounting to a separate operational port.; RADIUS encrypts only the password attribute within the packet payload, leaving attributes such as usernames and NAS identifiers in cleartext.

Answer

The RADIUS protocol combines authentication and authorization into a single operational process while separating accounting to a distinct port, and it encrypts only the password field within packet payloads while leaving other header attributes exposed in cleartext.
RADIUS integrates authentication and authorization within a unified packet structure while isolating accounting services to a separate UDP port. Furthermore, RADIUS enforces encryption strictly on the password attribute using a pre-shared key, leaving contextual attributes like usernames visible in cleartext over the network.

Step-by-Step Solution

1
Analyze AAA functional architecture for RADIUS.
RADIUS binds authentication and authorization into a unified protocol exchange, while accounting functions are handled separately over a different UDP port (e.g., UDP 1813).
This contrasts with TACACS+, which fully decouples all three AAA components into separate processes.
2
Evaluate the cryptographic encryption boundary of RADIUS packets.
RADIUS encrypts only the user password field inside Access-Request packets using a shared secret key and MD5 hashing; parameters such as usernames and NAS IP addresses remain unencrypted.
Security auditors must account for cleartext metadata exposure when capturing RADIUS network traffic.
3
Verify transport layer protocol and port usage.
RADIUS operates statelessly over UDP ports 1812 (Authentication/Authorization) and 1813 (Accounting), avoiding TCP connection setup overhead.
Claims that RADIUS uses TCP or port 49 are incorrect misconceptions confusing RADIUS with TACACS+ or misidentifying transport protocols.

Key Concept

RADIUS AAA Protocol Characteristics and Security Boundaries
Question 932Question

A network administrator needs to allow remote employees to securely access internal web applications using only a standard web browser, without requiring any dedicated software installation on user endpoints. Which remote access VPN technology best satisfies this requirement?

Show answer & explanation

Answer: Clientless SSL/TLS VPN

Answer

Clientless SSL/TLS VPN
A clientless SSL/TLS VPN provides secure access to internal web application portals through a standard web browser over HTTPS, eliminating the need to install, configure, or maintain VPN client software on remote end-user devices.

Step-by-Step Solution

1
Analyze the access and deployment constraints in the scenario
The target resources are web applications, and endpoints must not require dedicated software installation.
Eliminating client software deployment narrows the options to browser-native remote access mechanisms.
2
Evaluate VPN protocol client requirements
SSL/TLS VPNs leverage standard HTTPS sessions built into web browsers, whereas IPsec, L2TP, and GRE require operating system drivers or dedicated VPN client software.
Selecting the protocol that natively interfaces with web browsers satisfies the clientless constraint.

Key Concept

Clientless SSL/TLS Remote Access VPN
Question 933Question

A network operations engineer needs to apply a vendor-recommended firmware update to a stack of core network switches. To adhere to standard change management best practices and maintain high availability during the maintenance window, which TWO of the following tasks should be completed prior to deploying the patch into production?

Select all that apply

Show answer & explanation

Answer: Verify the patch integrity using a vendor-provided cryptographic hash and test it in a non-production staging environment.; Export and archive a baseline configuration backup of the switch stack to enable a rapid rollback if issues occur.

Answer

Prior to deploying a patch in production, network administrators must verify the update integrity, perform lab/staging testing, and save a baseline configuration backup.
Verifying the update file using a cryptographic checksum, testing in a staging environment, and backing up switch configuration baselines are essential pre-deployment steps to ensure software safety and maintain a clear rollback path.

Step-by-Step Solution

1
Analyze patch validation procedures.
Confirming checksum cryptographic hashes ensures file integrity, while lab staging isolates potential software bugs before production impact.
Prevents deploying corrupted binaries or incompatible code to operational devices.
2
Evaluate backup requirements.
Archiving current running/startup configurations enables fast restoration to a known working state if the firmware fails.
Establishes an essential safety baseline for emergency rollback procedures.
3
Identify risky deployment practices.
Direct multi-switch deployment without prior staging or rollback planning introduces critical operational risk.
Violates formal change management and troubleshooting sequence methodology.

Key Concept

Pre-deployment Patch Staging, Validation, and Configuration Backup
Question 934Question

Match each wireless security standard on the left with its primary encryption cipher or key exchange protocol on the right.

Click a left item, then click its matching right item

Items

WEP (Wired Equivalent Privacy)
WPA2 (Wi-Fi Protected Access 2)
WPA3 (Wi-Fi Protected Access 3)

Matches

Show answer & explanation

Answer

WEP matches RC4 stream cipher with a 24-bit IV; WPA2 matches AES-CCMP cipher block chaining; WPA3 matches SAE with GCMP-256.
Each security standard uniquely aligns with its defining cryptographic architecture: legacy WEP uses weak RC4 with a 24-bit IV, WPA2 standardizes robust AES-CCMP, and modern WPA3 mandates SAE key agreement alongside GCMP-256.

Step-by-Step Solution

1
Identify the encryption mechanism for WEP.
WEP relies on RC4 stream cipher with a short 24-bit IV.
WEP is a legacy 802.11 security protocol known for cryptographic flaws due to small IV size.
2
Identify the encryption mechanism for WPA2.
WPA2 mandates AES-CCMP.
AES-CCMP provides reliable data integrity and confidentiality in WPA2 wireless deployments.
3
Identify the primary protocol and cipher suite for WPA3.
WPA3 uses SAE key exchange along with GCMP-256 encryption.
WPA3 introduces SAE to prevent dictionary attacks and upgrades encryption to GCMP.

Key Concept

Wireless Security Standards and Encryption Protocols
Question 935Question

A system architect is upgrading a research organization's WLAN infrastructure to protect sensitive data transfers. The security policy mandates centralized per-user authentication integrated with an identity provider, mutual authentication between clients and RADIUS servers, and resistance against credential theft via offline dictionary attacks. Which of the following technical requirements and protocol implementations must be selected to satisfy this policy? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Implementation of WPA3-Enterprise mode operating with 802.1X framework for centralized identity management; Deployment of Extensible Authentication Protocol-Transport Layer Security (EAP-TLS) using X.509 digital certificates

Answer

The organization must implement WPA3-Enterprise mode with 802.1X and deploy EAP-TLS authentication with digital certificates.
WPA3-Enterprise enforces the 802.1X port-based network access control framework, allowing user authentication against centralized directory services like Active Directory via RADIUS. Combining this with EAP-TLS delivers mutual authentication through X.509 digital certificates, ensuring both client and network identity are validated while rendering offline dictionary attacks ineffective.

Step-by-Step Solution

1
Analyze the identity and authentication requirements
Centralized per-user authentication requires an 802.1X framework and RADIUS server, which is provided by WPA3-Enterprise rather than pre-shared key modes.
WPA3-Personal relies on a single shared secret across clients, whereas WPA3-Enterprise delegates authentication to a central directory service.
2
Evaluate protocol mechanisms for mutual authentication and dictionary attack prevention
EAP-TLS mandates asymmetric cryptography with PKI certificates on both client and server sides.
By eliminating password-only authentication exchanges, EAP-TLS provides robust mutual authentication and prevents offline dictionary attacks against user credentials.

Key Concept

WPA3-Enterprise Architecture and EAP-TLS Mutual Authentication
Question 936Question

A network security architect is evaluating security enforcement mechanisms across an enterprise infrastructure. Match each intrusion detection/prevention architecture and engine mechanism on the left to its distinct operational characteristic or structural limitation on the right.

Click a left item, then click its matching right item

Items

Inline NIPS utilizing signature-based detection
Passive out-of-band NIDS connected via switch TAP/SPAN
Host-based IPS (HIPS) utilizing behavioral/anomaly detection
Inline NIPS utilizing stateful protocol anomaly analysis

Matches

Show answer & explanation

Answer

Inline NIPS utilizing signature-based detection matches with active in-band inspection against static patterns that can suffer under asymmetric routing; Passive out-of-band NIDS via TAP/SPAN matches with zero-latency passive monitoring relying on reactive TCP RST generation; Host-based IPS (HIPS) utilizing behavioral/anomaly detection matches with endpoint system call monitoring that consumes local host compute resources; Inline NIPS utilizing stateful protocol anomaly analysis matches with in-band enforcement comparing network flows against RFC protocol baseline standards.
Each deployment model and engine mechanism aligns strictly with its functional placement and detection methodology: inline signature NIPS inspects in-path traffic for known attack patterns but is vulnerable to state loss under asymmetric routing; passive TAP/SPAN NIDS operates out-of-band without traffic latency but must rely on TCP RSTs; host-based behavioral IPS monitors OS system calls at the host cost of endpoint performance overhead; and stateful protocol anomaly NIPS enforces RFC protocol conformance to block zero-day protocol abuse.

Step-by-Step Solution

1
Differentiate between in-band (inline) and out-of-band network deployment topologies.
In-band appliances sit in the physical/logical data path with packet dropping capabilities, while out-of-band systems receive mirrored traffic copies with zero added transport latency.
Topology dictates whether an enforcement system can perform true real-time inline packet dropping versus out-of-band passive alerting and TCP reset injection.
2
Distinguish between network-based (NIDS/NIPS) and host-based (HIDS/HIPS) security agent locations.
Host-based systems analyze endpoint process calls, system memory, and unencrypted local files, whereas network-based systems inspect transit packets.
Endpoint placement allows inspection of decrypted traffic and host execution state at the cost of endpoint host CPU/memory consumption.
3
Compare signature-based detection against behavioral/anomaly and protocol state analysis mechanisms.
Signature detection matches static patterns of known threats, behavioral/anomaly detection identifies deviations from established normal baselines, and stateful protocol analysis checks adherence to RFC protocol standards.
Understanding detection engine mechanics explains how zero-day threats, malformed protocols, and known exploits are individually detected or missed.

Key Concept

Intrusion Detection and Prevention Systems (IDS/IPS) Deployment Topologies and Detection Engines
Question 937Question

During a network audit, a systems engineer observes peak-hour throughput saturation on a primary WAN edge switch. The engineer must implement telemetry monitoring to track traffic volume by source/destination IP address pairs, protocols, and port numbers without capturing full packet payloads. Additionally, hardware health metrics must be polled securely across the management VLAN with requirements for cryptographic user authentication and data encryption. Which combination of monitoring technologies and security configurations meets all specified requirements?

Show answer & explanation

Answer: IPFIX to export flow-based traffic statistics, paired with SNMPv3 configured with the authPriv security level for device polling.

Answer

IPFIX to export flow-based traffic statistics, paired with SNMPv3 configured with the authPriv security level for device polling.
The correct answer combines IPFIX for flow metadata aggregation (analyzing bandwidth utilization, top talkers, and protocol distribution without storing complete frame payloads) with SNMPv3 operating at the authPriv security tier. The authPriv setting enforces SHA/MD5 message digest authentication and AES/DES payload encryption, satisfying all organizational security requirements.

Step-by-Step Solution

1
Identify the telemetry technology suitable for non-intrusive traffic composition analysis.
IPFIX (or NetFlow) collects traffic statistics such as source/destination IP addresses, port numbers, and protocol types without recording full packet payloads.
Flow-based monitoring provides top-talker and bandwidth usage distribution without consuming significant storage or violating payload privacy.
2
Evaluate SNMP versions and security parameters required for secure device metrics polling.
SNMPv3 with the authPriv (Authentication and Privacy) level is required.
authNoPriv only authenticates without encrypting, while SNMPv1 and SNMPv2c rely on cleartext community strings. authPriv ensures both cryptographic authentication (MD5/SHA) and payload encryption (DES/AES).
3
Combine the compliant technologies to select the correct configuration.
IPFIX combined with SNMPv3 authPriv satisfies all requirements.
This combination fulfills both the metadata flow analysis requirement and the secure encrypted polling mandate.

Key Concept

Flow-based Telemetry vs. Secure SNMP Polling
Estimated Time:2m 0s
Question 938Question

A company is planning to modify the access control lists (ACLs) on its main gateway router to accommodate a new internal service. Before submitting the Request for Change (RFC) to the Change Advisory Board (CAB), which element is most critical to include in the proposal to minimize potential downtime if the modification causes unexpected network instability?

Show answer & explanation

Answer: A validated rollback plan detailing steps to restore the previous configuration

Answer

A validated rollback plan detailing steps to restore the previous configuration
The correct answer emphasizes a validated rollback plan. In formal change management processes, every Request for Change (RFC) must include an explicit rollback strategy detailing how to quickly revert systems to their original baseline configuration if the implementation fails or triggers unexpected downtime.

Step-by-Step Solution

1
Identify the primary purpose of a Request for Change (RFC) in configuration management
Recognize that changes carry inherent risk to network availability
RFCs must document risk mitigations prior to approval and implementation
2
Evaluate the necessary components designed to recover from a failed change
Determine that a predefined and tested rollback plan enables rapid recovery
Having explicit instructions to restore the last known good configuration minimizes downtime if unexpected outages occur

Key Concept

Rollback Planning in Change Management
Estimated Time:45s
Question 939Question

During a network performance check of a real-time audio application, an administrator notices that speech quality degrades due to irregular delivery times of audio packets. Which network performance metric specifically measures this variation in packet arrival times?

Show answer & explanation

Answer: Jitter

Answer

Jitter is the specific metric measuring packet arrival delay variation.
Jitter quantifies the variance in delay between received packets. In real-time audio transmissions, inconsistent delay causes buffer underflows or frame drops, leading to distorted sound.

Step-by-Step Solution

1
Identify the symptom described in the scenario
The issue involves irregular arrival times and delay variation of real-time audio packets.
Real-time applications like VoIP require consistent packet timing to reconstruct stream data smoothly.
2
Match the symptom to the corresponding performance metric
Jitter (packet delay variation) quantifies the fluctuation in latency between consecutive packets.
By definition, jitter measures arrival timing consistency across a network path.

Key Concept

Packet Delay Variation (Jitter) in Network Performance
Estimated Time:45s
Question 940Question

A network security administrator is tasked with deploying a wireless network across a financial organization's operations center. Executive policy mandates strict compliance with 192-bit cryptographic strength for all payload encryption, mandatory Protected Management Frames (PMF), and centralized identity validation through a RADIUS infrastructure using digital certificates. Which wireless security suite and cipher implementation must the administrator select to satisfy all organizational security mandates?

Show answer & explanation

Answer: WPA3-Enterprise 192-bit Mode using GCMP-256 cipher suite with EAP-TLS authentication

Answer

WPA3-Enterprise 192-bit Mode using GCMP-256 cipher suite with EAP-TLS authentication
WPA3-Enterprise 192-bit mode is specifically designed for high-security government and enterprise environments requiring robust protection. It mandates 256-bit Galois/Counter Mode Protocol (GCMP-256) encryption, SHA-384 message integrity check, 802.1X authentication using EAP-TLS with strong certificates, and mandatory Protected Management Frames (PMF).

Step-by-Step Solution

1
Analyze authentication requirements
Centralized authentication using digital certificates via RADIUS requires an 802.1X EAP architecture (such as EAP-TLS), which eliminates Personal/Pre-Shared Key (PSK/SAE) modes.
Enterprise modes use 802.1X/RADIUS, whereas Personal modes use pre-shared keys or passphrase-derived keys.
2
Evaluate cryptographic strength requirements
The requirement for 192-bit cryptographic security mandates the WPA3-Enterprise 192-bit Mode operating with GCMP-256.
Standard WPA2/WPA3 Enterprise typically uses 128-bit AES-CCMP, whereas 192-bit mode strictly uses 256-bit Galois/Counter Mode Protocol (GCMP-256) along with HMAC-SHA384 and ECDSA/RSA with strong key sizes.
3
Verify Protected Management Frames (PMF) compliance
WPA3 mandates Protected Management Frames (802.1w) across all operational profiles.
PMF protection prevents management frame spoofing and disassociation attacks.

Key Concept

WPA3 Wireless Security Modes and Cipher Suites
PreviousPage 47 / 112Next
All practice questions — CompTIA Network+ | Examkin