Network Security

427 questions

Question 141Question

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 142Question

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 143Question

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 144Question

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 145Question

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 146Question

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 147Question

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 148Question

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 149Question

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 150Question

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
Question 151Question

A network security engineer is designing an intrusion prevention architecture for a high-frequency trading firm's REST API gateway. The gateway receives TLS 1.3 encrypted HTTP/2 traffic routed asymmetrically across dual active-active Internet edge links. The firm requires active, real-time blocking of unknown zero-day application exploits, strict adherence to sub-millisecond added network latency limits (<1 ms< 1\text{ ms}), and complete protection against session dropping caused by asymmetric TCP packet paths. Which deployment model and inspection mechanism best fulfills all system requirements?

Show answer & explanation

Answer: Deploy a Host-based Intrusion Prevention System (HIPS) running an anomaly-based detection engine directly on the API gateway servers.

Answer

Deploying a Host-based Intrusion Prevention System (HIPS) utilizing an anomaly-based detection engine directly on the host API gateway servers is the optimal solution.
Deploying a Host-based Intrusion Prevention System (HIPS) directly on the API gateway hosts solves all technical challenges simultaneously. Because HIPS operates at the operating system/application level on the endpoint, it inspects network traffic after TLS decryption occurred. Furthermore, host placement eliminates external network inline latency and avoids TCP session corruption caused by asymmetric routing across dual ISP links. Utilizing an anomaly-based detection engine allows the system to detect and actively prevent zero-day exploits by identifying deviations from baseline behavior rather than relying on known signatures.

Step-by-Step Solution

1
Analyze asymmetric routing and network latency constraints.
Inline network appliances (NIPS) placed across active-active links suffer from state asymmetry unless synchronized across links, and introduce additional inline interface processing latency. Host-based placement (HIPS) eliminates external network-hop latency and avoids asymmetric network routing state mismatches altogether.
Host systems reassemble TCP segments locally after network routing delivers packets, rendering network asymmetry irrelevant to host-level security engines.
2
Evaluate payload encryption requirements (TLS 1.3).
Network-level sensors (NIDS/NIPS) placed before SSL/TLS termination cannot inspect encrypted HTTP/2 payload contents without complex SSL decryption proxies that add latency. HIPS operates post-decryption inside the host network stack/application layer.
Inspecting encrypted payloads requires access to the cleartext stream, which is naturally available at the host application endpoint.
3
Match detection engine logic to the threat model (zero-day exploits).
Signature-based engines depend on known exploit patterns and fail to identify novel zero-day attacks. Anomaly/behavioral-based engines establish a baseline of normal behavior and flag or block novel deviations.
Zero-day vulnerability attacks lack pre-existing signatures, making anomaly-based or heuristic detection mandatory for active prevention.

Key Concept

Host-based IPS (HIPS) vs Network-based IPS (NIPS) placement trade-offs regarding payload encryption, asymmetric routing, and anomaly vs signature detection engines.
Question 152Question

A network security engineer configures an extended stateless IPv4 Access Control List (ACL) applied inbound on a perimeter router interface (`GigabitEthernet0/1`) to filter incoming Internet traffic. The ACL contains the following sequential rules:

- Rule 10: `permit tcp any eq 443 192.168.50.0 0.0.0.255 established`
- Rule 20: `permit tcp any host 192.168.50.10 eq 443`
- Rule 30: `permit udp 192.168.50.0 0.0.0.255 eq 53 any`

An external host with IP address 198.51.100.42198.51.100.42 sends an unsolicited TCP SYN packet (initial connection request) with source port 443443 to an internal host at 192.168.50.25192.168.50.25 on destination port 80808080.

Which action does the router take when processing this incoming TCP SYN packet?

Show answer & explanation

Answer: The router drops the packet because it fails to match Rule 10 due to missing ACK/RST flags, misses subsequent rules, and triggers the implicit deny statement.

Answer

The router drops the packet because it fails to match Rule 10 due to missing ACK/RST flags, misses subsequent rules, and triggers the implicit deny statement.
When evaluating stateless extended ACL rules, the router checks fields in exact top-to-bottom order. For Rule 10, the packet matches protocol (TCP), source address (`any`), source port (`eq 443`), and destination subnet (192.168.50.0/24192.168.50.0/24). However, Rule 10 includes the `established` keyword, which requires the TCP ACK or RST control bit to be set. Because an initial unsolicited connection attempt sends a TCP SYN packet (without ACK or RST), Rule 10 does not match. The packet subsequently fails Rule 20 (wrong host and destination port) and Rule 30 (wrong protocol), causing it to hit the default implicit deny rule at the end of the ACL and be dropped.

Step-by-Step Solution

1
Analyze incoming packet header details against Rule 10 criteria
The packet has source IP 198.51.100.42198.51.100.42, source port 443443, destination IP 192.168.50.25192.168.50.25, destination port 80808080, and TCP flags set to SYN only. Rule 10 specifies `established`, which requires ACK or RST flags to be present. Thus, Rule 10 does not match.
Stateless ACL rules using the `established` keyword inspect TCP control flags to allow return traffic while blocking incoming initial session setups.
2
Evaluate packet against Rule 20 and Rule 30
Rule 20 expects destination host 192.168.50.10192.168.50.10 and destination port 443443 (packet is for .25.25 on port 80808080). Rule 30 expects UDP protocol (packet is TCP). Neither rule matches.
Extended ACLs perform top-to-bottom sequential rule checking until an exact match is identified.
3
Apply final default ACL behavior
Having matched no explicit permit statements, the packet encounters the unwritten default rule: `deny ip any any`.
All standard and extended ACLs terminate with an implicit deny statement that drops all unapproved IP traffic.

Key Concept

Stateless ACL TCP Flag Filtering and Implicit Deny Logic
Estimated Time:2m 0s
Question 153Question

A network security administrator is mapping enterprise authentication protocols and frameworks to their core operational characteristics. Match each authentication protocol or framework on the left with its correct operational description on the right.

Click a left item, then click its matching right item

Items

TACACS+
RADIUS
Kerberos
802.1X

Matches

Show answer & explanation

Answer

TACACS+ matches full payload encryption over TCP port 49; RADIUS matches password-only encryption over UDP ports 1812/1813; Kerberos matches ticket-granting tokens for SSO; 802.1X matches port-based access control encapsulating EAP traffic.
Each protocol is accurately matched to its operational characteristics: TACACS+ encrypts the entire payload over TCP port 49 with decoupled AAA; RADIUS encrypts only passwords over UDP ports 1812/1813 with combined authentication/authorization; Kerberos uses a Key Distribution Center and tickets for SSO; and 802.1X provides port-level protection using EAP encapsulation.

Step-by-Step Solution

1
Identify the transport protocol and encryption boundary for administrative device management.
Recognize that TACACS+ uses TCP port 49, separates AAA components, and encrypts the complete payload.
TACACS+ was engineered specifically for router/switch management where full command encryption and granular authorization are needed.
2
Identify the transport protocol and encryption behavior of network access AAA.
Associate RADIUS with UDP ports 1812/1813 and password-only encryption.
RADIUS combines authentication and authorization into single response packets while obfuscating only user credentials.
3
Examine token-based domain single sign-on protocols.
Link Kerberos to ticket-granting tokens and Key Distribution Centers.
Kerberos facilitates secure authentication across network services using mutual authentication and cryptographic tokens.
4
Analyze port-based network boundary enforcement mechanisms.
Pair 802.1X with EAP encapsulation at Layer 2.
802.1X prevents unauthorized network port access until an authentication server validates the supplicant's credentials.

Key Concept

AAA Framework and Centralized Authentication Protocols
Question 154Question

A network technician is documenting security controls across an enterprise network infrastructure. Match each intrusion detection or prevention system deployment on the left with its defining operational capability or structural characteristic on the right.

Click a left item, then click its matching right item

Items

Inline NIPS deployment
Out-of-band NIDS via TAP
Signature-based HIDS
Anomaly-based NIDS

Matches

Show answer & explanation

Answer

Inline NIPS deployment pairs with filtering traffic in the active physical path to drop malicious packets in real time; Out-of-band NIDS via TAP pairs with monitoring mirrored traffic streams without introducing latency; Signature-based HIDS pairs with inspecting local host log files and system calls against known threat patterns; Anomaly-based NIDS pairs with flagging network traffic dynamics that deviate from an established baseline of normal activity.
Each deployment model matches its distinct functional characteristic. Inline NIPS processes live traffic in-band to enable active prevention. Out-of-band NIDS passively analyzes duplicated traffic via TAP/SPAN ports with zero latency. Host-based IDS monitors internal endpoint events using signatures, and anomaly-based NIDS flags deviations from established traffic baselines.

Step-by-Step Solution

1
Evaluate network path positioning (in-band vs out-of-band).
Inline NIPS sits directly in the traffic flow to perform active packet blocking, whereas out-of-band NIDS sits off-path receiving copied frames with zero latency overhead.
Physical placement determines whether an enforcement engine can block traffic inline or only generate passive alerts.
2
Determine target monitoring scope (Host vs Network).
HIDS focuses on endpoint internal states such as system calls and host log entries, while NIDS inspects packet headers and payloads across network segments.
Host-based mechanisms protect single endpoints from internal process manipulation, while network-based mechanisms inspect wire traffic.
3
Differentiate detection algorithms (Signature vs Anomaly/Behavioral).
Signature engines compare activity against a database of known bad indicators, while anomaly engines compare activity against a recorded baseline of normal operation.
Anomaly detection identifies novel zero-day attacks by detecting statistical variations from normal patterns.

Key Concept

Intrusion Detection and Prevention Systems (IDS/IPS) Architecture and Detection Engines
Question 155Question

A network administrator configures a standard router Access Control List (ACL) to permit web traffic to an internal server. After applying the rule, the administrator observes that all other inbound network traffic to that interface is blocked, even though no specific deny statements were explicitly written. Which of the following explains this behavior?

Show answer & explanation

Answer: ACLs conclude with an unwritten implicit deny rule that drops all traffic not explicitly permitted.

Answer

Access Control Lists end with an unwritten implicit deny statement that drops any packet not explicitly allowed by a preceding rule.
Every Access Control List contains an invisible, unwritten implicit deny all rule at the end of the rule list. If incoming traffic does not match any explicit permit statement, it hits this implicit deny entry and is dropped by the router.

Step-by-Step Solution

1
Analyze the ACL evaluation process for incoming network packets.
The router checks packet fields top-down against each sequential rule in the list.
ACL entries are evaluated in sequential order until a match is found.
2
Determine packet disposition when no configured rules match the traffic.
The packet hits the invisible final statement at the bottom of the ACL list.
All standard and extended ACLs implicitly terminate with a deny-all statement to ensure a secure default-deny posture.

Key Concept

ACL Implicit Deny Behavior
Estimated Time:45s
Question 156Question

An enterprise network security administrator is establishing a secure procedure for receiving automated network device configuration updates from third-party vendor systems over an open network. The security policy dictates that the system must guarantee the configuration payload has not been modified during transmission and must also ensure that the vendor cannot deny having created and sent the specific configuration update. Which of the following mechanisms best fulfills both of these security requirements?

Show answer & explanation

Answer: Digitally signing the configuration payload using the vendor's private key

Answer

Digitally signing the configuration payload using the vendor's private key
Digital signatures rely on asymmetric public key infrastructure (PKI). By hashing the configuration payload and signing the digest with the vendor's private key, the system ensures data integrity (any modification breaks the hash verification) and non-repudiation (only the owner of the private key could have signed it).

Step-by-Step Solution

1
Identify the required core security principles
The requirements are data integrity (verifying payload was not altered) and non-repudiation (preventing the sender from denying origin).
The scenario explicitly requests verification of payload contents and indisputable sender origin.
2
Evaluate symmetric key mechanisms against non-repudiation
Symmetric keys (such as AES-256 or HMAC pre-shared secrets) are shared between two endpoints. Since either party can create or alter the encrypted data/digest, neither mechanism satisfies non-repudiation.
Non-repudiation strictly requires asymmetric cryptography where only one unique entity possesses the private signing key.
3
Evaluate asymmetric digital signatures
The sender generates a hash digest of the configuration payload and encrypts it using their private key. The recipient validates integrity by computing the hash and decrypting the signature using the sender's public key.
Only the holder of the private key could have produced the signature, satisfying both integrity and non-repudiation.

Key Concept

Non-repudiation & Integrity in Security Architecture
Question 157Question

A network administrator is deploying a centralized authentication mechanism to manage administrative access to enterprise switches. The security policy mandates that every shell command executed by network personnel must be authorized on an individual, per-command basis, and all communication between the network switches and the AAA server must encrypt the entire packet body. Which protocol should the administrator implement to satisfy these requirements?

Show answer & explanation

Answer: TACACS+, because it encrypts the full payload of the packet and decouples authentication and authorization functions to support per-command control.

Answer

TACACS+ is the correct choice because it encrypts the entire packet payload and decouples AAA components, enabling per-command administrative authorization.
TACACS+ (Terminal Access Controller Access-Control System Plus) operates over TCP port 49 and is designed specifically for device administration. It encrypts the entire body of every packet exchanged between the client device and the server, ensuring privacy for all command data. Crucially, TACACS+ decouples authentication, authorization, and accounting, which enables granular per-command authorization policies where every command typed by an administrator must be approved by the server.

Step-by-Step Solution

1
Analyze the encryption requirement.
The requirement specifies encrypting the entire packet body, not just the password field.
TACACS+ encrypts the entire body of the packet, whereas RADIUS only encrypts the password.
2
Analyze the authorization requirement.
The requirement specifies per-command authorization for CLI access on network switches.
TACACS+ separates authentication, authorization, and accounting into distinct modules, allowing the network device to query the AAA server for authorization on every individual command. RADIUS combines authentication and authorization into a single process.
3
Select the protocol that satisfies both cryptographic and operational criteria.
TACACS+ (running over TCP port 49) meets all constraints.
Only TACACS+ provides full payload encryption combined with decoupled per-command authorization.

Key Concept

AAA Protocol Features (RADIUS vs TACACS+)
Estimated Time:1m 30s
Question 158Question

An enterprise network architect is evaluating security controls across a multi-tier network deployment. Match each technical implementation on the left with the core security principle or objective it primarily satisfies on the right.

Click a left item, then click its matching right item

Items

Enforcing Ephemeral Diffie-Hellman (ECDHE) key exchange for secure web gateway TLS connections
Implementing SHA-256 HMAC checksum validation on dynamic routing protocol updates
Deploying BGP Anycast routing paired with multi-datacenter active-active firewall clusters
Applying PKI asymmetric digital signatures with cryptographic timestamps to automated network audit logs

Matches

Show answer & explanation

Answer

The correct pairings match ECDHE key exchange with Confidentiality, SHA-256 HMAC validation with Integrity, BGP Anycast active-active architecture with Availability, and PKI asymmetric signatures with Non-repudiation.
Each control is paired with its primary objective: ECDHE protects session confidentiality via forward secrecy; HMAC validation guarantees data integrity by detecting unauthorized alterations; BGP Anycast with active-active clustering guarantees system availability through fault tolerance; digital signing of logs ensures non-repudiation by mathematically tying log generation to the signing entity.

Step-by-Step Solution

1
Analyze the objective of ECDHE key exchange
Identified that ephemeral keys protect past session data from future compromise (Confidentiality).
Perfect Forward Secrecy ensures encrypted traffic remains confidential even if long-term credentials leak.
2
Analyze HMAC usage in network routing protocols
Identified that hash-based message authentication codes detect unauthorized payload modifications (Integrity).
Cryptographic hashes verify payload data remains unchanged between peers.
3
Analyze multi-datacenter active-active clustering with BGP Anycast
Identified that fault-tolerant and distributed network infrastructure maintains uptime (Availability).
Redundancy and load distribution prevent single points of failure from causing outages.
4
Analyze asymmetric digital signatures on audit records
Identified that private-key signing prevents a system or user from denying log generation (Non-repudiation).
Digital signatures bind identity cryptographically to specific data at a specific time.

Key Concept

Mapping Advanced Network Security Controls to CIA Triad and Non-repudiation Principles
Question 159Question

A network security analyst is investigating simultaneous security alerts on two separate VLANs within an enterprise network. On VLAN 20, client workstations attempting to reach the internal ERP server (10.20.4.50) present browser certificate warnings. Packet captures on VLAN 20 show a flood of unsolicited ARP responses associating the default gateway IP address (10.20.4.1) with the MAC address of an unrecognized host on the local segment. On VLAN 30, clients resolving the hostname erp.corporate.local receive IP address 198.51.100.44 (an external host) instead of 10.20.4.50. Packet captures on VLAN 30 reveal forged UDP port 53 responses arriving prior to replies from the legitimate internal DNS server, with no abnormal Layer 2 ARP activity detected. Which of the following correctly identifies the distinct attack vectors operating on VLAN 20 and VLAN 30, respectively?

Show answer & explanation

Answer: VLAN 20 is undergoing ARP cache poisoning (Layer 2 Man-in-the-Middle), while VLAN 30 is undergoing DNS cache poisoning (DNS spoofing).

Answer

VLAN 20 is undergoing ARP cache poisoning (Layer 2 Man-in-the-Middle), while VLAN 30 is undergoing DNS cache poisoning (DNS spoofing).
The scenario describes two distinct attack mechanisms. On VLAN 20, the adversary sends unsolicited ARP responses to bind the default gateway's IP address to a rogue MAC address, corrupting local ARP tables and creating a Layer 2 Man-in-the-Middle state (ARP cache poisoning). On VLAN 30, the adversary sends forged DNS reply packets over UDP port 53 that arrive before the legitimate server replies, poisoning client DNS caches with a malicious IP address (DNS cache poisoning).

Step-by-Step Solution

1
Analyze telemetry and packet behavior for VLAN 20.
Unsolicited ARP replies map the default gateway IP address (10.20.4.1) to an unauthorized host's MAC address, corrupting client ARP caches and redirecting Layer 2 frames through an intermediary machine (Man-in-the-Middle).
ARP operate at Layer 2 to map IP addresses to MAC addresses on local broadcast domains.
2
Analyze telemetry and packet behavior for VLAN 30.
Forged DNS responses delivered via UDP port 53 arrive faster than responses from the legitimate internal DNS server, causing clients to cache an external IP address for an internal hostname.
DNS spoofing / cache poisoning injects false hostname-to-IP mappings into resolvers by exploiting connectionless UDP responses.
3
Synthesize the findings to select the matching vector pair.
VLAN 20 exhibits ARP cache poisoning, while VLAN 30 exhibits DNS cache poisoning.
Differentiating Layer 2 MAC resolution spoofing from Layer 7 name resolution spoofing identifies the exact attack mechanisms.

Key Concept

Differentiating Layer 2 ARP Cache Poisoning from Layer 7 DNS Cache Poisoning Vectors
Estimated Time:2m 0s
Question 160Question

A network technician is configuring an Access Control List (ACL) on a router interface to allow web traffic to an internal web server at 192.168.1.50 via HTTPS (TCP port 443). The technician adds an explicit rule permitting this traffic. However, after applying the ACL, all other network traffic passing through the interface is immediately blocked, despite no explicit deny rules being added to the configuration. Which fundamental ACL feature causes this automatic blocking behavior?

Show answer & explanation

Answer: Implicit deny

Answer

The implicit deny feature causes this behavior, as firewalls and ACLs automatically append an unwritten rule at the end of every rule list that drops all unmatched traffic.
The implicit deny feature is a standard security default in network ACLs and firewalls. Once an ACL is active on an interface, any packet that fails to match any explicit permit statement is automatically dropped by the implicit deny rule at the end of the evaluation list.

Step-by-Step Solution

1
Analyze the observed issue after applying the ACL.
Traffic not explicitly matched by the permit rule is blocked automatically.
Network ACLs process packets sequentially from top to bottom until a match is found.
2
Identify the default catch-all mechanism at the end of an ACL.
The final implied statement is 'deny all traffic'.
This implicit deny rule ensures a default-deny security posture by dropping any traffic that was not explicitly permitted.

Key Concept

ACL Implicit Deny Feature
PreviousPage 8 / 22Next
Network Security Practice Questions — CompTIA Network+ — Page 8 | Examkin