Security Fundamentals

298 soru

Soru 181Soru

A network administrator is implementing Layer 2 security on VLAN 30 of a Cisco Catalyst switch. The VLAN contains both dynamic DHCP clients and devices with statically configured IP addresses. DHCP Snooping is active on VLAN 30.

To allow traffic from the static IP devices that do not exist in the DHCP snooping binding database, the administrator creates an ARP Access Control List (ACL) named `STATIC_DEVICES` matching the static MAC and IP pairs, and executes the following command:

`Switch(config)# ip arp inspection filter STATIC_DEVICES vlan 30`

Immediately after applying this command, static IP hosts communicate successfully, but all dynamic DHCP clients on VLAN 30 lose connectivity because their ARP packets are dropped by Dynamic ARP Inspection (DAI).

Which configuration modification must be made to permit ARP traffic from both static IP devices and dynamic DHCP clients?

Cevabı ve açıklamayı göster

Cevap: Re-enter the command with the `static` keyword: `ip arp inspection filter STATIC_DEVICES vlan 30 static`.

Cevap

Re-entering the command with the `static` keyword (`ip arp inspection filter STATIC_DEVICES vlan 30 static`) allows unlisted ARP packets to fall back to verification against the DHCP snooping binding database.
When an ARP ACL is bound to a VLAN for Dynamic ARP Inspection without the `static` keyword, the ARP ACL becomes the sole authority for ARP validation on that VLAN. Packets that do not match an explicit entry in the ARP ACL hit the implicit `deny any` and are dropped without consulting the DHCP snooping binding database. Appending the `static` keyword (`ip arp inspection filter STATIC_DEVICES vlan 30 static`) instructs DAI to check the ARP ACL first for static hosts, and if no match is found, fall back to checking the DHCP snooping binding database for dynamic clients.

Adım Adım Çözüm

1
Analyze how DAI evaluates ARP ACL filters without the `static` keyword.
When `ip arp inspection filter <acl-name> vlan <vlan>` is applied without `static`, DAI checks the specified ARP ACL exclusively. If an ARP packet does not match an explicit `permit` entry, it hits the implicit `deny` at the end of the ACL and is dropped without checking the DHCP snooping binding database.
Omitting `static` makes the ARP ACL authoritative for all ARP traffic on that VLAN.
2
Determine the effect of adding the `static` keyword to the DAI filter command.
Including the `static` keyword (`ip arp inspection filter <acl-name> vlan <vlan> static`) changes the evaluation flow: DAI checks the ARP ACL first. If no match is found in the ACL, DAI falls back to evaluating the packet against the DHCP snooping binding database.
This allows static IP devices (permitted by the ARP ACL) and dynamic DHCP clients (validated via the binding database) to coexist on the same VLAN.

Anahtar Kavram

DAI ARP ACL Filtering Mechanics and the `static` Keyword Fallback
Tahmini Süre:2m 0s
Soru 182Soru

Match each core network security term on the left with its corresponding enterprise security description on the right.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

Vulnerability
Threat
Exploit
Risk

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Vulnerability pairs with the unpatched operating system bug; Threat pairs with the malicious external actor; Exploit pairs with the crafted software script taking advantage of a flaw; Risk pairs with the likelihood and impact of an intrusion.
Vulnerability refers to a system flaw such as an unpatched OS bug. Threat describes the danger agent such as a malicious actor. Exploit is the actual method or script used to weaponize the flaw. Risk measures the calculated financial or operational impact resulting from a threat leveraging a vulnerability.

Adım Adım Çözüm

1
Review the formal definitions of key security terminology.
Differentiate between systemic weaknesses (vulnerability), external dangers (threat), attack tools (exploit), and calculated impact (risk).
CCNA security fundamentals require distinguishing between internal weaknesses, external danger vectors, attack implementations, and business exposure.
2
Match each term to the enterprise scenario.
Pair Vulnerability to the OS bug, Threat to the attacker, Exploit to the attack script, and Risk to the impact assessment.
Each scenario illustrates a distinct element of the risk and threat landscape.

Anahtar Kavram

Key Security Concepts: Threat, Vulnerability, Exploit, and Risk
Tahmini Süre:1m 0s
Soru 183Soru

A network engineer configures port security on a Cisco Catalyst switch interface using the command `switchport port-security mac-address sticky`. The switch successfully learns the MAC address of the connected host and dynamically adds it to the running configuration. However, after the switch is rebooted, the port security configuration no longer retains the previously learned host MAC address. Which administrative oversight caused this issue?

Cevabı ve açıklamayı göster

Cevap: The engineer did not save the running configuration to the startup configuration after the MAC address was learned.

Cevap

The host MAC address was lost because the running configuration containing the learned sticky MAC address was not saved to the startup configuration prior to the switch reboot.
When port security is configured with sticky MAC learning, the switch dynamically converts learned MAC addresses into static-like entries within the running configuration (`running-config`). Because the running configuration resides in volatile RAM, any switch reboot causes these learned entries to be cleared unless an administrator explicitly copies the running configuration to the startup configuration in NVRAM using `copy running-config startup-config` or `write memory`.

Adım Adım Çözüm

1
Analyze how sticky MAC learning functions in Cisco Port Security.
Executing `switchport port-security mac-address sticky` instructs the switch to dynamically learn MAC addresses and write them into the volatile running configuration as `switchport port-security mac-address sticky <mac-address>` commands.
Understanding where learned MAC addresses are stored in switch memory helps identify persistence requirements.
2
Determine why volatile memory changes do not survive a switch reboot.
The running configuration is stored in RAM. Without running `copy running-config startup-config` or `write memory`, all RAM contents are lost when the device reboots.
RAM contents must be committed to non-volatile RAM (NVRAM) for settings to persist across reboots.

Anahtar Kavram

Port Security Sticky MAC Address Persistence and NVRAM Configuration Management
Tahmini Süre:45s
Soru 184Soru

An enterprise network administrator discovers that an unauthorized host on an internal VLAN is performing a Man-in-the-Middle (MitM) attack by broadcasting spoofed ARP messages, associating its own MAC address with the IP address of the default gateway. Which Layer 2 security mechanism should be implemented on the access switches to mitigate this specific threat?

Cevabı ve açıklamayı göster

Cevap: Dynamic ARP Inspection (DAI) to validate ARP requests and responses against the trusted DHCP snooping binding database.

Cevap

Dynamic ARP Inspection (DAI) should be configured on access switches to validate ARP packets against the DHCP snooping binding database.
Dynamic ARP Inspection (DAI) is the primary mitigation technique against ARP poisoning and ARP spoofing attacks. DAI intercepts all ARP requests and responses on untrusted switch ports and verifies the validity of the IP-to-MAC bindings against the trusted DHCP snooping binding database before forwarding the packet.

Adım Adım Çözüm

1
Identify the type of attack described in the scenario.
The attack described is ARP spoofing/poisoning, where an attacker sends fake ARP messages to intercept network traffic.
Understanding the attack mechanism (Layer 2 address resolution manipulation) is necessary to choose the appropriate mitigation tool.
2
Evaluate security mechanisms designed to inspect and protect Layer 2 ARP traffic.
Dynamic ARP Inspection (DAI) is specifically designed to prevent ARP poisoning by comparing ARP IP-to-MAC mapping claims against a reliable binding source (DHCP Snooping database).
DAI intercepts ARP packets on untrusted ports and drops invalid ARP responses.

Anahtar Kavram

Mitigating Layer 2 ARP Spoofing Attacks using Dynamic ARP Inspection (DAI)
Tahmini Süre:1m 30s
Soru 185Soru

An attacker on a local Ethernet network sends spoofed ARP messages to associate their MAC address with the IP address of the default gateway, allowing them to secretly intercept and relay network traffic between a victim host and the router. Which type of security threat is being executed?

Cevabı ve açıklamayı göster

Cevap: Man-in-the-middle (MitM) attack

Cevap

Man-in-the-middle (MitM) attack
A Man-in-the-middle (MitM) attack occurs when an unauthorized entity places itself between two communicating network endpoints. ARP spoofing on a local Ethernet segment is a primary technique used to execute a MitM attack at Layer 2.

Adım Adım Çözüm

1
Analyze the attack mechanism described in the scenario.
The attacker sends spoofed ARP responses mapping their MAC address to the default gateway's IP address.
This causes local endpoints to update their ARP tables and send frames intended for the router to the attacker's device instead.
2
Classify the security threat based on the attacker's operational position and capability.
The attacker can read, alter, or drop packets passing between the victim host and the default gateway without either party realizing.
Interception and relaying of communication between two unaware parties is defined as a Man-in-the-middle (MitM) attack.

Anahtar Kavram

Man-in-the-Middle (MitM) Threats and ARP Spoofing
Tahmini Süre:45s
Soru 186Soru

Place the following Cisco IOS password encryption types in order of security strength, from weakest (least secure) to strongest (most secure).

Öğeleri doğru sıraya koymak için sürükleyin

Cevabı ve açıklamayı göster

Cevap

The correct order from weakest to strongest security strength is Type 0 (Plaintext), Type 7 (Reversible Vigenère cipher), Type 5 (MD5 hash), and Type 9 (scrypt hash).
The sequence from weakest to strongest begins with Type 0 (unencrypted plaintext). Next is Type 7, which uses weak, reversible Vigenère encryption intended only to stop casual viewing. Type 5 uses a one-way MD5 hash which cannot be mathematically decrypted. Finally, Type 9 uses the modern memory-hard scrypt algorithm to provide maximum protection against high-speed dictionary and brute-force attacks.

Adım Adım Çözüm

1
Identify unencrypted plaintext storage
Type 0 represents completely unencrypted text in the configuration file.
Plaintext offers no protection because anyone viewing the running configuration can read the password.
2
Identify weakly obfuscated passwords
Type 7 is created by 'service password-encryption' using a reversible algorithm.
Type 7 prevents casual shoulder surfing but can be trivially reversed back to plaintext.
3
Identify standard cryptographic hashes
Type 5 relies on the MD5 one-way hash algorithm.
One-way hashes cannot be decrypted back to plaintext, making Type 5 much stronger than Type 7 obfuscation.
4
Identify modern memory-hard password hashes
Type 9 uses the scrypt algorithm for enhanced key derivation.
scrypt is designed to resist hardware-accelerated offline brute-force attacks, making it stronger than MD5.

Anahtar Kavram

Cisco IOS Password Encryption Algorithm Types and Relative Security Strengths
Soru 187Soru

Match each enterprise network security threat on the left with its corresponding operational description or attack vector characteristic on the right.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

Distributed Denial of Service (DDoS)
Man-in-the-Middle (MitM)
Spear Phishing
Zero-Day Exploit

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Distributed Denial of Service (DDoS) matches flooding resources from multiple distributed endpoints; Man-in-the-Middle (MitM) matches intercepting traffic in the active communication path; Spear Phishing matches targeted social engineering targeting specific individuals; Zero-Day Exploit matches attacking an undisclosed vulnerability before a patch exists.
Each security threat term is accurately mapped to its primary attack vector and operational impact within enterprise network environments.

Adım Adım Çözüm

1
Analyze Distributed Denial of Service (DDoS)
Identified as a multi-source resource exhaustion attack targeting availability.
DDoS specifically leverages multiple distributed hosts to saturate network bandwidth or host processing capacity.
2
Analyze Man-in-the-Middle (MitM)
Identified as an active path insertion and packet interception attack.
MitM relies on tricking two endpoints into routing data through an adversary's host to eavesdrop or modify traffic.
3
Analyze Spear Phishing
Identified as a tailored social engineering vector.
Spear phishing differs from generic mass phishing by customizing content to deceive specific targeted individuals or organizations.
4
Analyze Zero-Day Exploit
Identified as an attack on unpatched, publicly unknown code vulnerabilities.
Zero-day refers to software flaws exploited prior to patch availability or public security advisory release.

Anahtar Kavram

Key Security Concepts, Threats, Vulnerabilities, and Mitigations
Soru 188Soru

Match each enterprise security threat scenario on the left with its most effective primary mitigation strategy on the right.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

Password Spray Attack attempting low-frequency authentication across hundreds of corporate accounts
Man-in-the-Middle (MitM) eavesdropping on unencrypted transit traffic across an untrusted network segment
Spear Phishing campaign directing executive targets to a spoofed login portal
Zero-Day software vulnerability targeting an unpatched network management daemon

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Password Spray Attack matches Multi-Factor Authentication (MFA) and smart lockout policies. Man-in-the-Middle eavesdropping matches end-to-end cryptographic transport protocols (TLS/IPsec). Spear Phishing matches email authentication standards (SPF/DKIM/DMARC) and user training. Zero-Day software vulnerability matches vendor micro-segmentation, IPS signatures, and rapid patching.
Each threat targets a specific layer or operational vulnerability, requiring an aligned mitigation control: Password Spraying is countered by Multi-Factor Authentication; Man-in-the-Middle transit interception is countered by TLS/IPsec encryption; Spear Phishing is countered by SPF/DKIM/DMARC and security awareness; and Zero-Day software flaws are countered by IPS signatures, network segmentation, and prompt patching.

Adım Adım Çözüm

1
Analyze the Password Spray threat vector.
Identify that password spraying avoids single-account lockout by trying one password against many accounts.
MFA is the primary defense because even if a password matches, login fails without the second factor.
2
Analyze the Man-in-the-Middle (MitM) threat vector.
Identify that MitM exploits cleartext communication channels.
Cryptographic transport protocols like TLS and IPsec encrypt payload data and verify server identity via certificates.
3
Analyze the Spear Phishing threat vector.
Identify that spear phishing uses targeted fraudulent emails to fool specific personnel.
Combining domain verification controls (SPF/DKIM/DMARC) with human security training reduces email spoofing and link clicking.
4
Analyze the Zero-Day vulnerability threat vector.
Identify that zero-day exploits target unpatched software weaknesses.
Deploying IPS signatures, micro-segmentation, and timely vendor security patches directly mitigates software vulnerability risks.

Anahtar Kavram

Threat, Vulnerability, and Mitigation Mapping
Soru 189Soru

A security analyst is reviewing measures to enforce the Confidentiality, Integrity, and Availability (CIA) triad across an enterprise network. Which of the following security controls directly address the Integrity leg of the CIA triad? (Select two.)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: Applying cryptographic hash functions (such as SHA-256) to verify system configuration files; Utilizing asymmetric digital signatures to validate the authenticity and unmodified state of software updates

Cevap

Cryptographic hash functions (such as SHA-256) and digital signatures directly enforce data Integrity by detecting unauthorized modifications.
Data Integrity ensures that information is accurate and unaltered during storage or transit. Using SHA-256 cryptographic hashing allows systems to verify file content against expected checksums. Digital signatures use hashing combined with public key infrastructure to ensure software updates remain unaltered and authentic.

Adım Adım Çözüm

1
Define the Integrity component of the CIA triad.
Integrity ensures that network data and system configurations remain accurate, complete, and protected against unauthorized modification or tampering.
Security controls for integrity must detect or prevent unauthorized alterations to data.
2
Evaluate mechanisms that protect or verify data against alteration.
SHA-256 hashing generates a unique checksum to detect file changes, and digital signatures verify both sender identity and content immutability.
Both techniques specifically address data tampering and change detection.

Anahtar Kavram

CIA Triad - Integrity Security Controls
Soru 190Soru

An enterprise organization suffers a security incident where an unauthorized actor intercepts and alters router configuration files in transit across an unencrypted network link, causing network routing tables to become corrupted. The security team must implement controls to ensure that data cannot be modified in transit without detection. Which core principle of the CIA triad was violated during this attack, and which security mechanism directly mitigates this specific vulnerability?

Cevabı ve açıklamayı göster

Cevap: Integrity was violated; it is mitigated by implementing cryptographic message hashing and digital signatures.

Cevap

Integrity was violated; it is mitigated by implementing cryptographic message hashing and digital signatures.
The security incident involved the unauthorized modification of data in transit. In the CIA triad, protecting data against unauthorized alteration or tampering is the core requirement of Integrity. To mitigate this threat, cryptographic mechanisms such as message hashing (e.g., HMAC) and digital signatures are deployed to detect any payload tampering.

Adım Adım Çözüm

1
Analyze the nature of the security incident described in the scenario.
The attacker intercepted and modified configuration files in transit, corrupting routing tables.
Identifying whether data was disclosed, modified, or rendered unavailable determines which CIA triad pillar was breached.
2
Map the incident characteristics to the CIA Triad (Confidentiality, Integrity, Availability).
Unauthorized modification of data in transit is a breach of Integrity.
Integrity guarantees that information is authentic and protected against unauthorized alteration or tampering.
3
Determine the appropriate security mitigation mechanism for preserving Integrity.
Cryptographic hashing algorithms (such as SHA-256) and digital signatures verify data authenticity and detect tampering.
Hashing produces a unique checksum that changes if even a single bit of data is altered during transmission.

Anahtar Kavram

CIA Triad Principles and Integrity Verification Mitigations
Soru 191Soru

An enterprise network administrator discovers a weakness in a router's firmware that has not yet been patched by the vendor. This weakness could potentially allow unauthorized access if targeted by malicious traffic. Which security term specifically describes this software weakness?

Cevabı ve açıklamayı göster

Cevap: Vulnerability

Cevap

Vulnerability best describes an unpatched software weakness or flaw in system firmware.
The term vulnerability specifically refers to any weakness, flaw, or bug in system design, implementation, or firmware that leaves it open to attack.

Adım Adım Çözüm

1
Analyze the item description
The scenario describes a software flaw/weakness present in router firmware.
Security terminology distinguishes between the flaw itself, the potential attacker, the mechanism of attack, and the overall business impact.
2
Map to fundamental security definitions
A weakness or flaw in system software/hardware is defined as a Vulnerability.
Threats act upon vulnerabilities using exploits, resulting in risk to the organization.

Anahtar Kavram

Key Security Definitions: Vulnerability vs. Threat vs. Exploit vs. Risk
Soru 192Soru

During an enterprise security audit following a system compromise, an incident response team discovers that a database server was accessed without authorization. The investigation shows that an outdated operating system service contained a coding flaw, which permitted an attacker to run a publicly available script to gain administrative access. Which security term specifically describes the flaw in the outdated operating system service?

Cevabı ve açıklamayı göster

Cevap: Vulnerability

Cevap

The correct terminology for the coding flaw in the outdated operating system service is a vulnerability.
In security fundamentals, a vulnerability is defined as any weakness, flaw, or bug in software, hardware, or administrative controls that can be leveraged by a threat actor. The unpatched legacy operating system service containing a coding flaw is the system vulnerability.

Adım Adım Çözüm

1
Analyze the security components described in the scenario.
Identified four elements: the unpatched operating system service flaw, the publicly available script, the external attacker, and the potential business damage.
Deconstructing an incident report into core security definitions is necessary to accurately classify each component.
2
Differentiate between Vulnerability, Exploit, Threat, and Risk.
The flaw/weakness in software is the Vulnerability; the script taking advantage of it is the Exploit; the external attacker is the Threat; the calculated impact/likelihood of loss is the Risk.
Standard security framework definitions (such as ISO/IEC 27000 and NIST) strictly define these core security terms.
3
Match the specific target of the question to the correct definition.
The question specifically asks about the coding flaw present in the service, which aligns exactly with Vulnerability.
The software weakness itself is the vulnerability that enables an attack to occur.

Anahtar Kavram

Core Information Security Terminology (Threat vs. Vulnerability vs. Exploit vs. Risk)
Soru 193Soru

A network engineer configures IPsec encryption on a site-to-site VPN tunnel connecting two corporate offices to ensure that intercepted data packets cannot be read by unauthorized individuals. Which core security principle of the CIA triad is directly achieved by this control?

Cevabı ve açıklamayı göster

Cevap: Confidentiality

Cevap

Confidentiality
Confidentiality ensures that information is kept secret and inaccessible to unauthorized entities. Implementing IPsec encryption scrambles packet payloads into ciphertext, preventing eavesdroppers from reading the contents.

Adım Adım Çözüm

1
Identify the primary objective described in the scenario.
The goal is to prevent unauthorized users from reading intercepted packets sent across the network.
Protecting data secrecy and preventing eavesdropping is the baseline requirement.
2
Map the technical control (IPsec encryption) to its corresponding CIA triad pillar.
Encryption renders plaintext data unreadable without the secret key, fulfilling the requirement for confidentiality.
Confidentiality is specifically concerned with keeping data hidden from unauthorized eyes.

Anahtar Kavram

CIA Triad: Confidentiality
Tahmini Süre:45s
Soru 194Soru

An enterprise network experiences an internal security incident where an unauthorized host on access VLAN 10 poisons the ARP caches of adjacent endpoints by advertising its own MAC address as the default gateway. A network engineer must implement a Layer 2 mitigation strategy that intercepts, inspects, and validates ARP requests and responses against a trusted IP-to-MAC binding table built by DHCP snooping. Which security mechanism directly mitigates this threat?

Cevabı ve açıklamayı göster

Cevap: Dynamic ARP Inspection (DAI), which checks ARP packets on untrusted ports against the DHCP snooping binding database to discard spoofed ARP replies.

Cevap

Dynamic ARP Inspection (DAI), which checks ARP packets on untrusted ports against the DHCP snooping binding database to discard spoofed ARP replies.
Dynamic ARP Inspection (DAI) is a Layer 2 security feature that defends against ARP poisoning and spoofing attacks. When DAI is enabled on a VLAN, switch ports are designated as trusted or untrusted. DAI intercepts all ARP requests and responses on untrusted ports and verifies the IP-to-MAC address bindings against a database built by DHCP snooping. If the ARP packet contains invalid or spoofed mappings, DAI drops the packet.

Adım Adım Çözüm

1
Identify the specific threat scenario
The attack involves ARP poisoning (cache poisoning), where a malicious host sends gratuitous or forged ARP responses linking the default gateway's IP address to its own MAC address, facilitating a Man-in-the-Middle (MitM) attack.
Understanding the attack vector at Layer 2 is critical for selecting the appropriate mitigation control.
2
Evaluate required mitigation mechanisms against Layer 2 threats
Dynamic ARP Inspection (DAI) is designed specifically to prevent ARP spoofing by inspecting ARP packets on untrusted interfaces.
DAI compares the incoming ARP packet's MAC and IP address fields against valid entries in the DHCP snooping binding database.
3
Distinguish DAI from other Layer 2 and AAA security controls
Port Security limits MAC address counts, ACLs filter Layer 3/4 headers, and RADIUS handles AAA, leaving DAI as the only feature that validates ARP frame integrity against DHCP snooping data.
A comprehensive security strategy relies on applying the correct feature to its corresponding vulnerability.

Anahtar Kavram

Mitigating Layer 2 ARP Poisoning Threats using Dynamic ARP Inspection (DAI) and DHCP Snooping
Soru 195Soru

An infrastructure auditor reviews the local access credentials and line configuration snippet on an enterprise Cisco IOS switch:

text
username auditmgr privilege 15 secret 8 88 vG4k$9mP...
username techuser privilege 1 password 0 Cisco123!
service password-encryption
!
line console 0
login local
!
line vty 0 4
login local
transport input ssh
!
line vty 5 15
login
transport input ssh

Based on this configuration, which statement accurately describes the operational and security impact on administrative access?

Cevabı ve açıklamayı göster

Cevap: VTY lines 5 through 15 will fail local database authentication because they specify login instead of login local, while techuser credentials are protected only by weak Type 7 encryption.

Cevap

VTY lines 5 through 15 will fail local database authentication because they specify 'login' instead of 'login local', and 'techuser' credentials are stored using weak reversible Type 7 encryption.
The statement identifying that VTY lines 5 through 15 will fail local database authentication due to using 'login' instead of 'login local', alongside identifying that 'techuser' relies on weak Type 7 encryption, is correct. On Cisco IOS lines, 'login' requires a line-specific password and ignores the local username database. Additionally, 'service password-encryption' only applies weak Type 7 reversible obfuscation to 'password' commands rather than strong 'secret' hashing (Type 5, 8, or 9).

Adım Adım Çözüm

1
Analyze VTY line configuration for authentication mode consistency.
Lines 0-4 use 'login local' which queries the local database. Lines 5-15 use 'login' which expects a line password rather than checking local usernames, resulting in authentication failures for local database users accessing lines 5-15.
The 'login' command alone tells IOS to prompt for a line password set via 'password <str>' under the line context, whereas 'login local' instructs IOS to authenticate against configured 'username' database statements.
2
Evaluate local username password security types.
The 'auditmgr' account uses 'secret 8' (Type 8 PBKDF2 SHA-256 hash). The 'techuser' account uses 'password 0' which 'service password-encryption' transforms into a weak, easily reversible Type 7 cipher.
Type 7 encryption is weak Vigenère obfuscation meant only to prevent shoulder surfing. Type 8 (PBKDF2) and Type 9 (scrypt) secret hashes are cryptographically secure.
3
Combine line authentication behavior and password security analysis.
The configuration suffers from both line authentication misconfiguration on VTY 5-15 and weak credential protection for 'techuser'.
Combining these evaluations identifies the statement correctly detailing line authentication failure for local accounts on VTY 5-15 and weak Type 7 encryption.

Anahtar Kavram

Line Access Authentication and Cisco IOS Password Encryption Types
Soru 196Soru

A network administrator is conducting a security baseline review for an enterprise network to distinguish key security concepts and apply suitable mitigation strategies. Which two statements accurately describe key security principles or valid mitigation practices? (Select two.)

Geçerli olan tümünü seçin

Cevabı ve açıklamayı göster

Cevap: A vulnerability represents a weakness or flaw in system design, implementation, or configuration that could be exploited by a threat actor.; Implementing 802.1X Port-Based Network Access Control mitigates unauthorized network connectivity by authenticating endpoints before granting switch port access.

Cevap

The correct statements define a vulnerability as a system flaw or weakness that can be exploited by a threat, and describe 802.1X Port-Based Network Access Control as a valid mitigation that authenticates devices before granting network switch port access.
A vulnerability is defined as an internal weakness or flaw in system design, software, or configuration that can be exploited by a threat actor. 802.1X Network Access Control serves as a robust mitigation mechanism by forcing endpoints to authenticate before granting access to the LAN switch port.

Adım Adım Çözüm

1
Differentiate security baseline concepts such as threats, vulnerabilities, and mitigations.
Identify that a vulnerability is a weakness in code, design, or implementation that creates potential exposure.
Accurate conceptual taxonomy is necessary for risk assessment and system hardening.
2
Evaluate identity and access control mitigations for local network access.
Confirm that 802.1X enforces port-level security by restricting traffic until authentication succeeds.
Network access controls prevent unauthorized devices from attaching to switch ports.
3
Analyze distractors related to AAA protocols and switch security operations.
Recognize that TACACS+ encrypts the complete packet payload (unlike RADIUS) and that sticky MAC addresses reside in running-config until saved to NVRAM.
Misinterpreting protocol mechanics or configuration state persistence leads to invalid security assumptions.

Anahtar Kavram

Key Security Terminology and Network Access Mitigations
Soru 197Soru

Match each network security threat on the left with its corresponding primary mitigation strategy on the right.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

Ransomware infection
IP address spoofing
Password brute-force attack
Unescorted server room access

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Ransomware infection matches maintaining immutable offsite backups and deploying endpoint protection software. IP address spoofing matches configuring anti-spoofing Access Control Lists and Unicast Reverse Path Forwarding. Password brute-force attack matches enforcing multi-factor authentication and account lockout threshold policies. Unescorted server room access matches installing biometric scanners, smart card locks, and physical security logs.
Each threat item is correctly paired with the corresponding operational defense: Ransomware requires immutable backups and endpoint detection; IP spoofing requires packet header validation via anti-spoofing ACLs or uRPF; Brute-force attacks require authentication controls like lockout thresholds and multi-factor authentication; and unauthorized facility access requires physical security controls such as biometric devices and locks.

Adım Adım Çözüm

1
Analyze each security threat to determine its attack vector.
Identified four distinct threat vectors: file encryption (Ransomware), packet header manipulation (IP spoofing), credential guessing (Brute-force), and physical intrusion (Server room access).
Selecting the correct mitigation requires identifying whether the threat is physical, network-layer, identity-based, or software-based.
2
Match each threat vector with the technical or physical security control engineered to mitigate it.
Ransomware maps to backups/endpoint defense; IP spoofing maps to ACLs/uRPF; Brute-force maps to MFA/Lockout policies; Physical intrusion maps to biometrics/badge controls.
Effective defense-in-depth requires applying targeted controls aligned with specific vulnerability types and threat vectors.

Anahtar Kavram

Security Threats and Mitigation Controls
Soru 198Soru

An enterprise network administrator needs to securely connect a fixed branch office network to the corporate headquarters over the public Internet. The connection must operate transparently to end users and encrypt all traffic between the two network gateways without requiring software installation on individual host computers. Which VPN deployment model and technology best satisfies this requirement?

Cevabı ve açıklamayı göster

Cevap: Site-to-Site IPsec VPN

Cevap

Site-to-Site IPsec VPN
A Site-to-Site IPsec VPN is specifically engineered to securely connect two static locations across an untrusted public network. Gateway devices (such as Cisco ISR routers or ASA/FTD firewalls) handle all encryption and decryption at the network boundary, allowing end hosts on both subnets to communicate seamlessly without requiring local client software.

Adım Adım Çözüm

1
Identify the topology requirement from the scenario
The requirement calls for interconnecting two fixed site locations (branch office and corporate headquarters) using infrastructure devices.
Differentiating between site-to-site connectivity and individual user connectivity determines whether a Site-to-Site or Remote Access VPN model is needed.
2
Evaluate host software dependencies and transparency requirements
A Site-to-Site IPsec VPN uses routers or firewalls as dedicated tunnel endpoints to encrypt and decrypt network traffic transparently, requiring zero configuration or software on end-user hosts.
Remote Access solutions (both SSL and IPsec host-based models) rely on individual endpoint software or user sessions.

Anahtar Kavram

Site-to-Site vs Remote Access VPN Topology Characteristics
Soru 199Soru

A company requires a VPN solution for mobile employees working from personal laptops. The organization wants to grant secure remote access to internal web-based applications without requiring users to install dedicated VPN client software on their endpoints. Which VPN deployment model best satisfies this requirement?

Cevabı ve açıklamayı göster

Cevap: Clientless SSL VPN

Cevap

Clientless SSL VPN is the appropriate solution because it provides web browser-based access to internal web applications without requiring client software installation.
Clientless SSL VPN uses standard web browsers on the user device to establish a secure SSL/TLS connection back to the corporate ASA/Secure Firewall device, permitting access to web-based internal services without requiring local administrative privileges or software installation.

Adım Adım Çözüm

1
Analyze the business requirements from the scenario.
Identified key requirements: individual mobile user access (Remote Access VPN) and no pre-installed client software required on endpoints.
VPN solutions differ by topology (Site-to-Site vs Remote Access) and endpoint client requirements.
2
Evaluate candidate VPN technologies based on endpoint software requirements.
Clientless SSL VPN relies on Web browser TLS/SSL sessions, whereas IPsec and client-based SSL VPNs require dedicated software applications to be installed on the client device.
Browsers natively support TLS/SSL, eliminating client installation overhead.
3
Select the option that matches both Remote Access topology and zero-client installation requirements.
Clientless SSL VPN is chosen as the correct deployment model.
It fulfills access needs specifically for web resources without endpoint software deployment.

Anahtar Kavram

Remote Access VPN Technologies: Clientless SSL VPN vs Client-based VPN
Soru 200Soru

Match each VPN technology or deployment concept to its corresponding operational characteristic.

Soldaki öğeye tıklayın, sonra eşleşen sağdaki öğeye tıklayın

Öğeler

Site-to-Site IPsec VPN
Remote Access SSL VPN
Split Tunneling
IPsec Encapsulating Security Payload (ESP)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Site-to-Site IPsec VPN matches fixed network gateway interconnection; Remote Access SSL VPN matches individual remote user connections; Split Tunneling matches selective corporate destination routing; IPsec ESP matches payload confidentiality and integrity.
Each concept correctly aligns with its core CCNA VPN definition: Site-to-Site links gateways, Remote Access links individual endpoints, Split Tunneling routes selectively to conserve bandwidth, and ESP encrypts payload data.

Adım Adım Çözüm

1
Identify the deployment topology of Site-to-Site IPsec VPNs.
Match Site-to-Site VPNs to the description of connecting fixed location gateways without host software.
Site-to-Site VPNs join static remote subnets seamlessly across an untrusted network.
2
Identify the primary use case of Remote Access SSL VPNs.
Match Remote Access VPNs to secure client connections for mobile and remote workers.
Remote access VPN solutions cater to individual user endpoints dynamically establishing secure sessions.
3
Analyze the operational traffic behavior of Split Tunneling.
Match Split Tunneling to routing corporate traffic into the tunnel while internet traffic bypasses it.
Split tunneling isolates targeted internal subnets for tunnel routing while preserving local internet connectivity.
4
Identify the core security service offered by IPsec ESP.
Match IPsec ESP to data confidentiality via payload encryption.
ESP encapsulates and encrypts payload data to maintain privacy across IP networks.

Anahtar Kavram

Remote Access and Site-to-Site VPN Concepts
ÖncekiSayfa 10 / 15Sonraki
Security Fundamentals Alıştırma Soruları — Cisco CCNA — Sayfa 10 | Examkin