Security Fundamentals

298 questions

Question 221Question

An organization needs to deploy a virtual private network (VPN) solution for contractors connecting from untrusted public networks using standard web browsers without requiring software installation on their endpoint devices. Additionally, corporate policy mandates that only traffic bound for internal enterprise applications should pass through the VPN tunnel, while general internet traffic routes directly out through the local internet connection. Which VPN deployment model and traffic management feature combination fulfills these security and operational requirements?

Show answer & explanation

Answer: Clientless SSL VPN combined with split tunneling

Answer

Clientless SSL VPN combined with split tunneling
Clientless SSL VPN allows users to establish secure connections using a standard web browser without installing specialized client software on host machines. Combining this with split tunneling allows traffic destined for internal corporate servers to be encrypted and routed through the VPN tunnel, while general internet traffic bypasses the tunnel to exit locally.

Step-by-Step Solution

1
Identify the VPN access mode requirement based on endpoint capabilities.
Since remote users connect via standard web browsers without dedicated software installation, Clientless SSL VPN (WebVPN) is required.
Remote Access IPsec VPNs typically require client software installation, whereas Clientless SSL VPN provides web-browser portal access.
2
Determine the appropriate traffic routing mechanism for internet versus internal traffic.
Split tunneling must be implemented.
Split tunneling selectively encrypts and routes traffic destined for corporate subnets while permitting non-corporate internet traffic to route directly out of the local network interface.

Key Concept

Remote Access SSL VPN vs IPsec VPN characteristics and Split-Tunneling operations
Question 222Question

An enterprise network administrator is conducting a security risk assessment across the organization's infrastructure. Match each security incident description on the left to its appropriate technical mitigation control on the right.

Click a left item, then click its matching right item

Items

An attacker uses botnets to flood an enterprise internet edge router with ICMP traffic, causing link saturation and preventing legitimate user access.
A rogue device connected to an unmonitored switch port rapidly transmits frames with randomized source MAC addresses to overflow the switch MAC lookup table.
An external malicious actor executes an automated password-spraying script against an exposed network management portal to gain privileged access.
An unauthorized host on a shared VLAN captures cleartext management session traffic containing administrative credentials sent to network devices.

Matches

Show answer & explanation

Answer

DDoS flood attacks pair with upstream DDoS mitigation and edge ACLs. MAC table flooding pairs with Port Security limits. Password-spraying attacks pair with Multi-Factor Authentication (MFA) and lockout policies. Cleartext credential sniffing pairs with SSHv2 enforcement.
Each attack vector targets a specific network plane or resource: DDoS targets bandwidth availability (mitigated via upstream filtering), CAM table flooding targets Layer 2 switch buffer resources (mitigated via Port Security limits), password spraying targets authentication mechanisms (mitigated via MFA/lockout policies), and cleartext sniffing targets data confidentiality (mitigated via SSHv2 encryption).

Step-by-Step Solution

1
Analyze the attack mechanism in the first scenario (flooding edge router with ICMP traffic).
Identify this as a Distributed Denial of Service (DDoS) attack targeting network availability.
DDoS attacks require boundary defenses such as edge ACLs and upstream scrubbing services.
2
Analyze the attack mechanism in the second scenario (randomized source MAC frames filling switch table).
Identify this as a MAC address table (CAM table) overflow attack targeting Layer 2 switch operations.
Port Security enforces maximum MAC learning limits on access ports to block unauthorized MAC generation.
3
Analyze the attack mechanism in the third scenario (automated password-spraying script).
Identify this as a brute-force credential attack targeting authentication mechanisms.
MFA and account lockout rules prevent single factor password guessing from compromising accounts.
4
Analyze the attack mechanism in the fourth scenario (capturing cleartext management session traffic).
Identify this as an eavesdropping/sniffing vulnerability resulting from unencrypted management protocols.
SSHv2 provides cryptographic encryption and integrity checks for remote management, mitigating eavesdropping.

Key Concept

Key Security Concepts, Threats, Vulnerabilities, and Mitigations
Question 223Question

A financial enterprise requires a secure connection for dynamic, roaming field auditors back to corporate headquarter applications while allowing them to maintain simultaneous access to local subnet resources such as home printers. Concurrently, the organization must maintain a permanent, always-on encrypted connection between a fixed regional branch router and the headquarter security appliance to route entire subnet traffic transparently.

Which architectural combination correctly satisfies the operational requirements for both deployment models?

Show answer & explanation

Answer: Deploy a client-based Remote Access VPN using split-tunneling for the roaming auditors, and establish an IPsec Site-to-Site VPN using tunnel mode between the regional branch router and headquarter security appliance.

Answer

Deploy a client-based Remote Access VPN using split-tunneling for the roaming auditors, and establish an IPsec Site-to-Site VPN using tunnel mode between the regional branch router and headquarter security appliance.
Remote Access VPNs with split-tunneling allow individual endpoints to send corporate-bound traffic through an encrypted tunnel while accessing local network resources directly. Site-to-Site IPsec VPNs operate between fixed security gateways (routers or firewalls) using tunnel mode to securely bridge entire IP subnets over public networks.

Step-by-Step Solution

1
Analyze the requirements for the roaming field auditors.
Field auditors need access to corporate resources while retaining access to local resources (like home printers). This requires a Remote Access VPN configured with split-tunneling, which segregates corporate traffic for encryption while routing local traffic directly to the local interface.
Full-tunneling would route all traffic back through headquarters, breaking direct access to local network devices.
2
Analyze the requirements for the regional branch office connection.
The branch office requires a permanent connection between two gateway devices (router to security appliance) to pass traffic between entire subnets.
This setup defines a Site-to-Site IPsec VPN operating in tunnel mode, which encapsulates original IP packets within new outer IP headers.
3
Evaluate the combined architecture.
Pairing a Remote Access VPN with split-tunneling for mobile users and a Site-to-Site IPsec VPN in tunnel mode for gateway-to-gateway site connectivity fulfills both operational criteria without architectural conflict.
Matches standard enterprise Cisco deployment models.

Key Concept

Remote Access vs. Site-to-Site VPN Topology & Split-Tunneling Mechanics
Question 224Question

An administrator configures port security on a Cisco Catalyst switch access interface using the command switchport port-security mac-address sticky. End devices connect to the port, and their MAC addresses are dynamically converted to sticky MAC addresses. Following a scheduled reload of the switch, the connected devices lose network connectivity. What is the root cause of this issue?

Show answer & explanation

Answer: The running configuration was not saved to the startup configuration after the sticky MAC addresses were learned.

Answer

The running configuration was not saved to the startup configuration after the sticky MAC addresses were learned.
When port security sticky learning is configured, dynamically learned MAC addresses are converted into sticky entries within the running configuration. Because the running configuration resides in volatile RAM, failing to save the running configuration to the startup configuration causes all learned sticky MAC entries to be lost when the switch reloads.

Step-by-Step Solution

1
Identify how sticky MAC address learning behaves in Cisco IOS port security.
When sticky learning is enabled via `switchport port-security mac-address sticky`, dynamically learned MAC addresses are automatically added to the active running configuration as static port security entries.
Sticky learning allows dynamic learning of MAC addresses while populating the running configuration so manual entry of MAC addresses is not required.
2
Evaluate the persistence of running configuration changes across device reloads.
The running configuration resides in RAM. If `copy running-config startup-config` is not issued before a reboot, all dynamically added sticky MAC entries are erased.
The switch reloads using the startup configuration stored in NVRAM, which does not contain the un-saved sticky MAC statements.

Key Concept

Port Security Sticky MAC Persistence
Question 225Question

Match each IPsec VPN framework component or feature on the left with its correct primary operational function on the right.

Click a left item, then click its matching right item

Items

Internet Key Exchange (IKE)
Encapsulating Security Payload (ESP)
Diffie-Hellman (DH) Group
NAT Traversal (NAT-T)

Matches

Show answer & explanation

Answer

Internet Key Exchange (IKE) pairs with negotiating security parameters, authenticating peers, and managing SAs. Encapsulating Security Payload (ESP) pairs with providing data confidentiality, data integrity, and origin authentication for IP payloads. Diffie-Hellman (DH) Group pairs with enabling peers to securely derive a shared symmetric encryption key over an untrusted network. NAT Traversal (NAT-T) pairs with encapsulating ESP packets inside UDP port 4500 to traverse intermediate PAT devices.
Each IPsec component fulfills a distinct cryptographic or transport requirement: IKE handles control-plane negotiations and SA creation; ESP encrypts data payload and validates integrity; Diffie-Hellman allows safe secret derivation over public IP backbones; and NAT-T wraps ESP into UDP port 4500 so port address translation devices do not drop or modify the encrypted traffic.

Step-by-Step Solution

1
Identify the control plane protocol responsible for authentication, parameter negotiation, and Security Association (SA) management.
Match Internet Key Exchange (IKE) with SA negotiation and peer authentication.
IKE (v1 or v2) is specifically responsible for establishing control channels and negotiating cryptographic sets (SAs).
2
Distinguish between data protection mechanisms and key exchange mechanisms within the IPsec suite.
Match Encapsulating Security Payload (ESP) with data encryption and integrity, and Diffie-Hellman (DH) with shared key calculation.
ESP (IP protocol 50) encrypts user data, while DH public-key exchange algorithms generate matching symmetric keys on both endpoints.
3
Determine the solution used to overcome IPsec header modification issues caused by address translation devices.
Match NAT Traversal (NAT-T) with UDP port 4500 encapsulation.
Because ESP headers lack Layer 4 port numbers required for PAT, NAT-T inserts a UDP port 4500 header in front of the ESP packet.

Key Concept

IPsec VPN Protocol Framework and NAT Traversal Operations
Question 226Question

Match each VPN deployment scenario or operational requirement on the left with the corresponding VPN technology or protocol implementation on the right.

Click a left item, then click its matching right item

Items

Connecting two fixed corporate branch office routers across an untrusted WAN using static peer IP addresses and pre-shared keys without dynamic overlay routing.
Providing web-browser-only remote access to internal intranet web portals for external contractors without installing software on endpoint devices.
Authenticating mobile teleworkers using dedicated endpoint software to secure all IP network layer traffic with optional split-tunnel capabilities.
Establishing scalable dynamic spoke-to-spoke encrypted tunnels between multiple enterprise sites using Multipoint GRE and Next Hop Resolution Protocol.

Matches

Show answer & explanation

Answer

Static branch gateway connections match Static Site-to-Site IPsec VPN. Browser-only contractor access matches Clientless SSL VPN. Mobile endpoint client software matches Client-Based Remote Access VPN. Scalable dynamic spoke-to-spoke using mGRE/NHRP matches DMVPN.
Each requirement maps precisely to its characteristic VPN architecture: standard point-to-point router links map to Static Site-to-Site IPsec, browser-bound contractor access maps to Clientless SSL VPN, full network layer remote connectivity maps to Client-Based Remote Access VPN, and dynamic multi-site scaling with mGRE/NHRP maps to DMVPN.

Step-by-Step Solution

1
Analyze fixed gateway requirements
Connecting static branch routers with fixed peer IPs corresponds to standard Site-to-Site IPsec VPN.
Site-to-Site IPsec provides seamless, transparent network-to-network connectivity between static gateways.
2
Analyze clientless endpoint access requirements
Web portal access via web browser without endpoint software installation corresponds to Clientless SSL VPN.
Clientless SSL VPN operates via TLS within standard browsers to grant restricted access to intranet applications.
3
Analyze full network layer remote access client requirements
Dedicated endpoint software managing split-tunneling and IP layer security corresponds to Client-Based Remote Access VPN.
Client software like Cisco AnyConnect encapsulates and encrypts IP layer traffic for mobile users.
4
Analyze dynamic multi-site topology requirements
Combining mGRE, NHRP, and IPsec for dynamic direct spoke-to-spoke tunnels corresponds to DMVPN.
DMVPN simplifies hub-and-spoke and mesh topologies by dynamically resolving and establishing tunnels between spoke routers.

Key Concept

Classification and operational mechanics of Remote Access (Clientless SSL and Client-based AnyConnect) versus Site-to-Site VPN architectures (Static IPsec and DMVPN).
Question 227Question

During a security audit of an enterprise network infrastructure, an engineer reviews several identified security vulnerabilities and proposed mitigation steps across administrative access, ACL filtering, and switchport security. Which of the following correctly pairs an identified security threat or vulnerability with its proper mitigation strategy?

Show answer & explanation

Answer: To mitigate eavesdropping and tampering of administrative command authorization, deploy TACACS+ for AAA because TACACS+ encrypts the entire packet payload, unlike RADIUS which encrypts only the password.

Answer

Deploying TACACS+ for AAA correctly mitigates eavesdropping on administrative authorization because TACACS+ encrypts the complete body of every packet and separates authentication from authorization, whereas RADIUS encrypts only the password field.
Deploying TACACS+ is the correct mitigation for administrative eavesdropping because TACACS+ encrypts the complete body of every packet and separates authentication, authorization, and accounting functions, allowing granular command-level authorization in ciphertext over TCP.

Step-by-Step Solution

1
Analyze protocol encryption characteristics for administrative access security.
TACACS+ uses TCP port 49 and encrypts the entire payload of every packet. RADIUS uses UDP ports 1812/1813 (or 1645/1646) and encrypts only the password attribute.
Cleartext command authorization payloads in RADIUS expose administrative operations to network sniffing.
2
Evaluate access control list behavior.
Cisco IPv4 ACLs feature an invisible implicit 'deny ip any any' at the end of every list.
Relying on an assumed implicit permit would lead to unexpected blocking of desired traffic or misunderstanding of ACL flow.
3
Evaluate port security persistent MAC address learning.
Sticky MAC learning writes dynamically discovered MAC addresses into the running-config file in RAM.
Failing to save running-config to startup-config causes all sticky MAC bindings to disappear when the switch restarts.

Key Concept

Key Security Concepts, Threats, Vulnerabilities, and Mitigations
Estimated Time:2m 0s
Question 228Question

A network administrator needs to secure remote administrative access to a Cisco IOS switch by requiring users to authenticate against the local user database. Which two steps are required to implement local user database authentication for remote VTY line access? (Select two.)

Select all that apply

Show answer & explanation

Answer: Configure a local user account using the global configuration command 'username <name> secret <password>'.; Apply the line configuration command 'login local' under the VTY lines.

Answer

To configure local user database authentication for remote VTY line access, you must define a local user account in global configuration mode using 'username <name> secret <password>' and configure 'login local' under the line configuration mode for VTY lines.
Local authentication requires both the creation of user credentials in the local security database using the global 'username' command and configuring the terminal lines (VTY) with 'login local' so Cisco IOS checks incoming connections against that database.

Step-by-Step Solution

1
Define local user account
Local database contains valid credentials.
The system requires a defined user account stored in the local running-config database to check credentials against upon user connection.
2
Enable local authentication on line VTY mode
VTY lines prompt for username and password checked against local database.
By default, line configuration might look for simple line passwords or no password; 'login local' directs the line to check the username and password against the local device database.

Key Concept

Local User Database Authentication on Cisco IOS VTY Lines
Question 229Question

A network security engineering team is analyzing threat vectors affecting enterprise switch and router infrastructure. Match each security threat scenario on the left with its primary technical mitigation mechanism on the right.

Click a left item, then click its matching right item

Items

An attacker transmits forged ARP responses on a campus VLAN to intercept traffic intended for the default gateway.
An attacker floods an edge router with high volumes of TCP SYN packets to exhaust CPU and control plane resources.
An unauthorized laptop connects to an unassigned Ethernet port in a conference room to gain access to internal subnet resources.
An attacker performs automated dictionary login attempts against exposed SSH remote management endpoints.

Matches

Show answer & explanation

Answer

Forged ARP responses map to Dynamic ARP Inspection (DAI). Control plane TCP SYN flooding maps to Control Plane Policing (CoPP). Unauthorized wired switch port connection maps to 802.1X Port-Based Network Access Control. Automated SSH dictionary attacks map to Multi-Factor Authentication (MFA) and Rate Limiting.
Dynamic ARP Inspection checks ARP packets against trusted bindings to stop ARP poisoning. Control Plane Policing protects router processing resources by enforcing rate limits on traffic destined to the control plane. 802.1X enforces identity verification before opening switch port access. Multi-Factor Authentication combined with login rate limiting neutralizes automated password guessing.

Step-by-Step Solution

1
Analyze Layer 2 address spoofing attacks on local switch subnets.
Identify ARP spoofing / poisoning as the threat vector.
Dynamic ARP Inspection intercepts and verifies invalid IP-to-MAC bindings using the DHCP snooping database.
2
Evaluate infrastructure plane threats targeting router CPU processing.
Identify control plane Denial-of-Service (DoS) exhaust attacks.
Control Plane Policing applies QoS policies directly to CPU-bound traffic queues to throttle malicious floods.
3
Examine physical access security and port-level network access control.
Identify unauthorized host connectivity on campus switch ports.
802.1X authenticates endpoints at Layer 2 before permitting traffic forwarding on the access switch port.
4
Assess administrative application threats targeting remote login services.
Identify credential harvesting and brute-force password attacks.
MFA ensures stolen or guessed passwords alone are insufficient, while rate limiting restricts high-frequency login attempts.

Key Concept

Classification of Network Security Threats and Primary Mitigation Controls
Estimated Time:2m 0s
Question 230Question

A network administrator configures an IPv4 extended access control list (ACL) on a Cisco router interface to allow web traffic using the following command:

`access-list 100 permit tcp host 192.168.1.50 any eq 80`

No other ACL entries are configured on the router. What happens when host 192.168.1.50 sends an ICMP echo request (ping) packet through the interface where this ACL is applied?

Show answer & explanation

Answer: The ICMP packet is dropped because of the unwritten implicit deny statement at the end of the access control list.

Answer

The ICMP packet is dropped because of the unwritten implicit deny statement at the end of the access control list.
All IPv4 ACLs on Cisco IOS devices end with an implicit 'deny ip any any' clause. When an ICMP echo request is processed against the rule `access-list 100 permit tcp host 192.168.1.50 any eq 80`, it fails to match because ICMP is a separate protocol from TCP. Because there are no further explicit permit rules, the packet matches the implicit deny clause and is dropped.

Step-by-Step Solution

1
Evaluate the incoming packet against the configured explicit ACL statement.
The incoming packet is an ICMP echo request, whereas statement 100 permits only TCP traffic targeting port 80.
ACLs process rules sequentially from top to bottom.
2
Check for subsequent matching statements or default end-of-list processing behavior.
No additional permit statements exist, so the packet falls through to the invisible final rule: `deny ip any any`.
All Cisco IPv4 ACLs automatically append an implicit deny statement at the end.
3
Determine the final packet disposition.
The ICMP packet is dropped at the router interface.
Unmatched traffic is discarded by the implicit deny rule.

Key Concept

Access Control List (ACL) Implicit Deny Clause
Question 231Question

Match each Cisco Layer 2 security feature or interface trust state on the left with its correct operational behavior or dependency on the right.

Click a left item, then click its matching right item

Items

Dynamic ARP Inspection (DAI)
DHCP Snooping Untrusted Interface
Port Security Sticky MAC Learning
DHCP Snooping Binding Database

Matches

Show answer & explanation

Answer

Dynamic ARP Inspection matches with validating ARP packets against IP-to-MAC mappings. DHCP Snooping Untrusted Interface matches with dropping unauthorized DHCP server responses. Port Security Sticky MAC Learning matches with adding dynamically learned MAC addresses to the running configuration. DHCP Snooping Binding Database matches with tracking IP, MAC, VLAN, and interface bindings.
Dynamic ARP Inspection operates by validating incoming ARP packets against trusted IP-to-MAC bindings stored in the DHCP snooping binding database. An untrusted DHCP snooping interface blocks incoming server response messages (OFFER/ACK) to prevent rogue DHCP server deployment. Port Security sticky MAC learning writes dynamically learned host MAC addresses directly into the running configuration. The DHCP Snooping Binding Database stores client IP, MAC, VLAN, and port associations which are referenced by security features like DAI.

Step-by-Step Solution

1
Analyze Dynamic ARP Inspection (DAI) functionality
DAI inspects ARP packets on untrusted ports and compares their source MAC and IP against trusted database entries.
DAI mitigates ARP spoofing by verifying ARP packet payload integrity.
2
Analyze DHCP Snooping interface trust states
Untrusted ports only permit DHCP client requests (DISCOVER, REQUEST); server responses (OFFER, ACK) are dropped.
Access ports default to untrusted to prevent unauthorized rogue DHCP servers.
3
Analyze Port Security sticky MAC learning behavior
Learned MAC addresses are written to the running configuration under the interface context.
Sticky MAC allows automatic MAC learning while preserving learned entries across link resets without manual static entry.
4
Identify the role of the DHCP Snooping Binding Database
It holds the IP-MAC-VLAN-Port binding entries populated by DHCP ACK messages.
Other L2 security mechanisms like DAI rely on this database to validate packets.

Key Concept

Layer 2 Security Mechanisms and Dependencies (Port Security, DHCP Snooping, DAI)
Question 232Question

An administrator configures the following extended IPv4 access control list on a Cisco IOS router to control traffic between subnets:

ip access-list extended SECURE_ACCESS
10 deny tcp host 192.168.10.15 host 10.1.20.10 eq 22
20 permit tcp host 192.168.10.15 10.1.20.0 0.0.0.255 eq 80
30 permit tcp host 192.168.10.15 10.1.20.0 0.0.0.255 eq 443
40 permit icmp 192.168.10.0 0.0.0.255 host 10.1.20.254 echo

The access list is applied inbound on the interface facing the 192.168.10.0/24 subnet. Which TWO statements accurately describe how traffic will be processed by this access control list?

Select all that apply

Show answer & explanation

Answer: SSH traffic initiated from host 192.168.10.15 destined for host 10.1.20.10 is explicitly denied by sequence 10.; ICMP echo requests sent from host 192.168.10.50 destined for host 10.1.20.10 are dropped due to the implicit deny at the end of the access list.

Answer

The correct statements are that SSH traffic from host 192.168.10.15 to host 10.1.20.10 is explicitly denied by sequence 10, and ICMP echo requests from host 192.168.10.50 to host 10.1.20.10 are dropped due to the implicit deny clause.
SSH packets from 192.168.10.15 to 10.1.20.10 hit sequence 10 directly and are denied. Meanwhile, ICMP echo requests from 192.168.10.50 to 10.1.20.10 fail to match sequence 40 (which restricts the destination to 10.1.20.254) and are consequently dropped by the implicit deny at the end of the ACL.

Step-by-Step Solution

1
Analyze sequence 10: 'deny tcp host 192.168.10.15 host 10.1.20.10 eq 22'
Matches TCP traffic originating from IP 192.168.10.15 destined for IP 10.1.20.10 on port 22 (SSH). This packet matches the first statement and is immediately denied.
Cisco ACLs process statements sequentially from top to bottom and stop at the first matching entry.
2
Analyze HTTP traffic from host 192.168.10.20 to 10.1.20.5 against sequence 20: 'permit tcp host 192.168.10.15 10.1.20.0 0.0.0.255 eq 80'
The source address is constrained by the 'host' keyword to 192.168.10.15 only. Host 192.168.10.20 does not match.
The 'host' modifier specifies a single IP address (/32 equivalent), not an entire subnet.
3
Analyze ICMP traffic from host 192.168.10.50 to 10.1.20.10 against sequence 40: 'permit icmp 192.168.10.0 0.0.0.255 host 10.1.20.254 echo'
Although the source subnet matches, the destination host is explicitly set to host 10.1.20.254. Traffic directed to 10.1.20.10 fails sequence 40.
Both source and destination criteria in an extended ACL statement must match for the rule to take effect.
4
Determine final ACL evaluation outcome for unmatched traffic
All packets that pass through sequence lines 10–40 without a match hit the default implicit 'deny ip any any' at the end of the ACL and are dropped.
Every IPv4 ACL in Cisco IOS has an unwritten implicit deny entry at the end of its structure.

Key Concept

Extended Access Control List Sequential Processing and Implicit Deny Mechanics
Question 233Question

An administrator attempts to secure VLAN 20 on a Cisco Catalyst switch by executing the commands `ip dhcp snooping vlan 20` and `ip arp inspection vlan 20`. Access interface GigabitEthernet0/2 is in VLAN 20 and remains in its default untrusted state for both security features. Clients connected to GigabitEthernet0/2 are configured with static IP addresses, but all outgoing ARP packets from these clients are intercepted and dropped by the switch, preventing any network communication. Which root cause explains why Dynamic ARP Inspection (DAI) is dropping this ARP traffic?

Show answer & explanation

Answer: Global DHCP snooping was not activated using the `ip dhcp snooping` command, causing the DHCP binding database to remain unpopulated and DAI to reject all ARP packets on untrusted ports.

Answer

Global DHCP snooping was not activated using the `ip dhcp snooping` command, preventing the switch from building the DHCP binding database required by Dynamic ARP Inspection (DAI) to validate ARP packets on untrusted ports.
The correct option explains that Dynamic ARP Inspection (DAI) depends directly on the DHCP snooping binding database to inspect ARP packets received on untrusted ports. Enabling DHCP snooping on a VLAN (`ip dhcp snooping vlan 20`) without executing the global `ip dhcp snooping` command leaves DHCP snooping globally disabled. As a result, the switch does not build a binding database. When DAI is enabled on VLAN 20 (`ip arp inspection vlan 20`), it intercepts all ARP packets on untrusted ports; because the binding table is empty and no ARP ACL is defined for static hosts, DAI drops all incoming ARP packets.

Step-by-Step Solution

1
Analyze how Dynamic ARP Inspection (DAI) validates ARP packets.
DAI inspects incoming ARP requests and responses on untrusted ports and verifies the sender IP and MAC addresses against the DHCP Snooping Binding Database (or configured ARP ACLs).
Untrusted ports drop ARP packets if no corresponding IP-to-MAC entry exists in the binding table.
2
Evaluate the switch configuration sequence provided in the scenario.
The administrator configured `ip dhcp snooping vlan 20`, but omitted the global `ip dhcp snooping` command.
In Cisco IOS, VLAN-level DHCP snooping does not take effect unless DHCP snooping is enabled globally.
3
Determine the impact on static IP hosts on untrusted ports.
Because global DHCP snooping is disabled, no DHCP binding database is built. Additionally, statically assigned hosts generate no DHCP transactions to populate the database.
Without static ARP ACL mappings or an active DHCP binding database entry, DAI drops all ARP traffic on untrusted interfaces like GigabitEthernet0/2.

Key Concept

Dynamic ARP Inspection (DAI) reliance on the DHCP Snooping Binding Database and global feature enablement prerequisites.
Question 234Question

A corporate web application suddenly becomes unresponsive after an external adversary directs a massive, synchronized volume of HTTP request traffic from thousands of compromised hosts, fully saturating the internet edge routers. A subsequent incident investigation confirms that no sensitive data was intercepted or modified, but internal employees were completely prevented from accessing the application during the outage. Which principle of the CIA triad was directly violated by this attack?

Show answer & explanation

Answer: Availability

Answer

Availability is the principle of the CIA triad directly compromised because the attack prevented authorized users from accessing the service without violating data confidentiality or integrity.
The correct answer is Availability. The CIA triad consists of Confidentiality (preventing unauthorized data disclosure), Integrity (preventing unauthorized data tampering), and Availability (ensuring system and data accessibility for authorized users). A Distributed Denial of Service (DDoS) attack depletes system or network resources to cause service unresponsiveness, directly violating the Availability pillar.

Step-by-Step Solution

1
Analyze the attack scenario characteristics.
The attack involved thousands of compromised hosts flooding the network (DDoS attack), leading to service downtime and saturated bandwidth.
Identifying the threat vector (DDoS) helps determine which security boundary was breached.
2
Evaluate the impact on data confidentiality and integrity based on the incident report.
No unauthorized data viewing (Confidentiality breach) or data modification (Integrity breach) took place.
Rule out CIA pillars that were preserved during the event.
3
Map the primary impact to the CIA triad principles.
Because authorized users were denied legitimate access to the operational application, the Availability pillar was compromised.
Availability guarantees timely and reliable access to data and resources for authorized personnel.

Key Concept

CIA Triad (Confidentiality, Integrity, Availability) in Network Security
Question 235Question

A network engineer configures the following named extended IPv4 Access Control List (ACL) on a Cisco IOS router to regulate inbound traffic from a branch office subnet (10.20.0.0/2210.20.0.0/22) destined for a data center network (172.16.100.0/24172.16.100.0/24):

`ip access-list extended BRANCH_POLICY`
` 10 permit tcp host 10.20.2.45 host 172.16.100.10 eq 22`
` 20 permit tcp host 10.20.2.45 host 172.16.100.10 eq 443`
` 30 deny tcp 10.20.0.0 0.0.3.255 172.16.100.0 0.0.0.255 eq 80`
` 40 deny tcp 10.20.0.0 0.0.3.255 172.16.100.0 0.0.0.255 eq 443`

The ACL is applied to the inbound direction of the interface facing the branch network. What happens when a user at host 10.20.1.1010.20.1.10 attempts to send ICMP echo request packets to server 172.16.100.1172.16.100.1?

Show answer & explanation

Answer: The ICMP packets are dropped because they fail to match any explicit permit statement and hit the implicit deny all clause.

Answer

The ICMP packets are dropped because they fail to match any explicit permit statement and fall through to the implicit deny all clause at the end of the ACL processing list.
Cisco IOS access control lists evaluate traffic top-down. The list contains explicit rules only for TCP protocol packets (ports 22, 443, and 80). Because ICMP traffic does not match any of the TCP rules, it continues through the entire list without a match and is dropped by the mandatory implicit `deny ip any any` rule at the bottom of the ACL.

Step-by-Step Solution

1
Evaluate incoming packet parameters against ACL criteria
The packet protocol is ICMP, source IP is 10.20.1.10, and destination IP is 172.16.100.1.
Sequential evaluation requires comparing the packet fields with each entry in order.
2
Compare packet attributes against ACL sequence numbers 10, 20, 30, and 40
Sequence entries 10, 20, 30, and 40 all specify protocol 'tcp'. The packet protocol is ICMP.
Since ICMP is a distinct Layer 3/4 protocol from TCP, none of these statements match the packet.
3
Determine the action after reaching the end of the explicit ACL statements
The packet reaches the unwritten end of the access list.
Every Cisco IPv4 access list has an invisible final rule: 'deny ip any any'. Without an explicit permit rule matching ICMP, the packet is dropped.

Key Concept

ACL Sequential Evaluation and the Implicit Deny Clause
Question 236Question

A network administrator performs a security audit on a remote branch's main Intermediate Distribution Frame (IDF) closet. The auditor discovers two primary compliance issues: unbadged visitors routinely tailgate behind employees through the entrance door, and staff members frequently leave the access door propped open during work hours due to a lack of security protocol knowledge. Which pair of measures—consisting of one physical access control and one security program element—most effectively remediates these specific vulnerabilities?

Show answer & explanation

Answer: Installing a mantrap vestibule with interlocking doors and delivering targeted user security awareness training regarding physical access policies.

Answer

Installing a mantrap vestibule with interlocking doors and delivering targeted user security awareness training regarding physical access policies.
The correct response properly pairs a physical access control with a security program element. A mantrap utilizes interlocking doors to physically restrict access so that only one authenticated person can enter at a time, directly preventing tailgating. Security awareness training is a critical security program element that educates employees on the risks of propping open sensitive facility doors and enforces organizational security policies.

Step-by-Step Solution

1
Analyze the physical tailgating vulnerability.
Identified that tailgating requires a physical barrier control that physically restricts door throughput to one validated individual at a time.
Single-door badge scanners allow unauthorized individuals to follow authorized personnel.
2
Evaluate physical control solutions.
A mantrap (interlocking door system) physically enforces single-entry validation and prevents unauthorized physical tailgating.
Mantraps lock the outer door until the inner door is secured and authentication is re-verified.
3
Analyze human behavioral compliance (propping doors open).
Identified that propping doors open stems from user behavior and lack of policy adherence.
Technical controls cannot prevent a physical door from being mechanically propped open by staff.
4
Select the corresponding security program element.
User security awareness training directly educates employees on security risks, physical access responsibilities, and policy compliance.
Security awareness programs foster proper security posture and administrative policy compliance.

Key Concept

Physical Access Controls vs. Security Program Elements
Question 237Question

A network administrator configures Multi-Factor Authentication (MFA) for engineers establishing SSH connections to core routers. The login policy requires engineers to enter their domain password followed by a dynamic time-based passcode generated by a mobile application on their corporate-managed phone. Which two authentication factor categories are being used in this scenario?

Show answer & explanation

Answer: Something you know and something you have

Answer

Something you know and something you have
Multi-Factor Authentication requires combining factors from at least two different categories. A password is a knowledge factor ('something you know'), and a mobile phone generating single-use passcodes serves as a possession factor ('something you have').

Step-by-Step Solution

1
Identify the first authentication element required by the policy.
The domain password is information memorized by the user.
Secrets or information memorized by a user fall under the 'something you know' (knowledge) factor.
2
Identify the second authentication element required by the policy.
The dynamic passcode generated on the corporate mobile phone requires physical access to that specific registered device.
Physical devices or software tokens tied to a device fall under the 'something you have' (possession) factor.
3
Combine the identified factors to determine the overall MFA combination.
The combination consists of 'something you know' and 'something you have'.
Using two factors from distinct categories satisfies Multi-Factor Authentication requirements.

Key Concept

Multi-Factor Authentication (MFA) Factor Categorization
Question 238Question

Match each enterprise security initiative to the corresponding element classification within an overall enterprise security framework.

Click a left item, then click its matching right item

Items

Mandatory annual workforce training covering social engineering tactics, mobile device security, and clean desk practices.
Installation of interlocked double-door mantrap vestibules and biometric readers at server room entry points.
Establishment of an Incident Response Plan (IRP) detailing notification hierarchies, reporting procedures, and post-event audits.
Enforcement of 802.1X port-based authentication with dynamic VLAN assignment on access switches.

Matches

Show answer & explanation

Answer

Workforce education aligns with User Security Awareness; Mantraps and biometric access align with Physical Access Control; Incident response planning aligns with Administrative Policy; 802.1X network access control aligns with Technical/Logical Access Control.
Each security initiative maps precisely to its functional classification: regular employee training addresses user security awareness, physical barriers like mantraps provide physical access control, incident management policies establish administrative governance, and 802.1X network access protocol provides technical access control.

Step-by-Step Solution

1
Analyze human-focused education initiatives.
Identify that employee training on social engineering and security practices builds the human defense layer (User Security Awareness).
Security awareness focuses on human behaviors and risk reduction through training.
2
Evaluate tangible facility barriers and hardware entry controls.
Classify physical vestibules (mantraps) and biometric locks as Physical Access Control mechanisms.
Physical security controls restrict direct physical exposure to hardware and network facilities.
3
Review governance and operational framework documentation.
Map incident response policies, guidelines, and management escalation rules to Administrative Policy and Governance.
Administrative controls define organizational rules, emergency procedures, and operational expectations.
4
Distinguish technical/logical security configurations from physical/administrative elements.
Map port-based network authentication (802.1X) to Technical/Logical Access Control.
Software and protocol-level mechanisms enforcing network boundary security are technical controls.

Key Concept

Distinction among Security Program Elements (Physical Access Controls, User Security Awareness, Administrative Policies, and Technical Controls)
Estimated Time:2m 0s
Question 239Question

An organization's Chief Financial Officer receives a highly tailored email that appears to originate from the company's primary banking institution. The message references specific details regarding a recent internal corporate transaction and directs the executive to a credential-harvesting website disguised as the bank's portal. Which security threat is demonstrated in this scenario?

Show answer & explanation

Answer: Spear phishing

Answer

Spear phishing is the security threat demonstrated in this scenario.
Spear phishing specifically targets a specific high-value individual or organizational role by leveraging tailored contextual information, such as recent financial transaction details, to trick the recipient into revealing sensitive credentials.

Step-by-Step Solution

1
Analyze the target specificity and delivery vector presented in the scenario.
The threat uses a spoofed email directed specifically at a high-ranking executive (CFO) rather than a broad, generic distribution list.
Identifying target specificity establishes whether an attack is generic phishing or targeted spear phishing.
2
Evaluate the contextual customization contained in the message.
The message incorporates confidential internal details (recent transaction data) to deceive a specific recipient.
Tailored contextual details distinguish spear phishing from standard bulk phishing campaigns.

Key Concept

Social engineering threat vectors and spear phishing characteristics
Question 240Question

An organization is updating its enterprise security program policy for network edge enclosures located in multi-tenant facilities. The Chief Information Security Officer (CISO) requires a security architecture that combines an administrative security program element with a physical access control mechanism to prevent unauthorized physical hardware tampering by facility personnel. Which set of measures correctly pairs an administrative security program element with a physical access control to fulfill this mandate?

Show answer & explanation

Answer: Establishing a formal access authorization policy requiring pre-approved visitor lists and badge verification, paired with installing chassis intrusion sensors and lockable rack enclosures.

Answer

Establishing a formal access authorization policy requiring pre-approved visitor lists and badge verification, paired with installing chassis intrusion sensors and lockable rack enclosures.
Developing a formal access authorization policy with visitor verification represents an administrative control (governance, policy, and procedure). Installing lockable enclosures with chassis intrusion detection represents a physical access control that directly prevents and monitors physical contact with hardware components.

Step-by-Step Solution

1
Identify the requested security control categories from the problem statement.
The scenario specifically asks for one administrative security program element paired with one physical access control mechanism.
Security programs classify controls into administrative (policies, procedures, personnel controls), physical (barriers, locks, environmental sensors), and technical/logical (passwords, ACLs, encryption).
2
Analyze each proposed pairing to classify its control types.
Creating an access authorization policy is administrative (governance/policy), and using lockable rack enclosures with chassis intrusion sensors is physical (hardware boundary/detection).
Administrative controls dictate rules and operational procedures, whereas physical controls protect physical assets from direct human intervention.
3
Differentiate administrative/physical controls from technical/logical controls present in wrong choices.
Measures involving TACACS+, IPsec VPNs, Port Security, ACLs, and DHCP Snooping are strictly technical/logical controls implemented in software or network device configurations.
Confusing technical network security mechanisms with administrative policies or physical barriers is a common conceptual mistake.

Key Concept

Classification of Enterprise Security Controls (Administrative vs. Physical vs. Technical)
PreviousPage 12 / 15Next