Tüm alıştırma soruları

1987 soru

Soru 601Soru

Match each Public Key Infrastructure (PKI) component on the left with its primary function on the right.

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

Öğeler

Certificate Authority (CA)
Certificate Signing Request (CSR)
Certificate Revocation List (CRL)
Public Key Infrastructure (PKI)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Certificate Authority (CA) matches with the trusted entity that validates identities and issues certificates. Certificate Signing Request (CSR) matches with the encoded application file containing identity details and a public key. Certificate Revocation List (CRL) matches with the published record of invalidated certificates. Public Key Infrastructure (PKI) matches with the framework of policies, hardware, software, and procedures.
Matching each term to its core function correctly aligns the elements of digital certificate lifecycle management: the CA issues certificates, the CSR requests them, the CRL tracks revoked certificates, and PKI provides the overall management framework.

Adım Adım Çözüm

1
Identify the role of the Certificate Authority (CA).
The CA is responsible for issuing and signing digital certificates after identity verification.
CA is the central trust entity in digital certificate deployments.
2
Identify the purpose of a Certificate Signing Request (CSR).
The CSR is the request block generated locally containing public key info sent to the CA.
Before a CA can issue a certificate, it requires the applicant's public key and identity data via a CSR.
3
Determine how revoked certificates are tracked using a CRL.
A CRL holds serial numbers of certificates prematurely revoked due to compromise or decommissioning.
Clients query CRLs (or OCSP) to ensure a presented certificate is still valid.
4
Define the overarching structure known as PKI.
PKI encompasses all tools, protocols, CAs, and policies managing public-key cryptography.
PKI is the umbrella term for the entire digital certificate ecosystem.

Anahtar Kavram

Digital Certificates and PKI Component Roles
Soru 602Soru

A Cisco router receives an IPv4 packet destined for 192.168.10.45192.168.10.45. The router has a single static route configured as follows: `ip route 192.168.10.0 255.255.255.0 10.1.1.2`. Arrange the steps of the router's lookup and packet forwarding process in the correct sequential order from first to last.

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

Cevabı ve açıklamayı göster

Cevap

The correct order of steps for processing a recursive static route lookup is: (1) Receive the IPv4 packet on an ingress interface, (2) Match the destination IP to the static route prefix 192.168.10.0/24192.168.10.0/24, (3) Identify next-hop IP 10.1.1.210.1.1.2 and initiate a recursive lookup, (4) Resolve the next-hop IP to connected route 10.1.1.0/3010.1.1.0/30 on interface GigabitEthernet0/1, and (5) Encapsulate the packet into a Layer 2 frame and transmit out GigabitEthernet0/1.
When a static route is configured using a next-hop IP address rather than an explicit exit interface (e.g., `ip route 192.168.10.0 255.255.255.0 10.1.1.2`), Cisco IOS performs a recursive lookup process. The router first matches the packet's destination IPv4 address to the static route entry. Next, it extracts the next-hop IP address and performs a second routing table lookup to find which interface connects to that next-hop subnet. Once the exit interface is identified from a connected or secondary route, the router encapsulates the packet in a Layer 2 frame and sends it out the resolved interface.

Adım Adım Çözüm

1
Receive IPv4 packet
Packet destination IP 192.168.10.45192.168.10.45 is extracted for table inspection.
Ingress processing triggers the forwarding decision engine.
2
Match static route prefix
Destination matches `192.168.10.0/24` with next-hop `10.1.1.2`.
Static route entry specifies the destination network reachable via a next-hop IP address.
3
Perform recursive route lookup
Secondary lookup query initiated for IP address 10.1.1.210.1.1.2.
Static routes configured with only a next-hop IP address require a recursive lookup to identify the outgoing physical interface.
4
Resolve outbound interface
Next-hop 10.1.1.210.1.1.2 resolves to connected interface GigabitEthernet0/1.
The routing table contains a directly connected prefix 10.1.1.0/3010.1.1.0/30 attached to GigabitEthernet0/1.
5
Encapsulate and forward frame
Packet is sent out GigabitEthernet0/1.
Final packet transmission requires determining the Layer 2 header rewrite details for the specific exit interface.

Anahtar Kavram

IPv4 Static Route Recursive Lookup Mechanism
Soru 603Soru

A network administrator needs to enable DHCP relay functionality on a Cisco IOS router so that hosts located in VLAN 40 (10.40.0.0/2410.40.0.0/24) can receive dynamic IP addresses from a centralized DHCP server located at 192.168.100.50192.168.100.50 in the management network. Subinterface GigabitEthernet0/0/0.40 serves as the default gateway for VLAN 40, while GigabitEthernet0/0/1 connects directly to the core switch leading to the DHCP server. On which interface must the administrator execute the `ip helper-address 192.168.100.50` command?

Cevabı ve açıklamayı göster

Cevap: Subinterface GigabitEthernet0/0/0.40

Cevap

Subinterface GigabitEthernet0/0/0.40 is the correct interface for configuring the helper address.
DHCP DISCOVER and REQUEST messages are sent as Local Subnet Broadcasts (255.255.255.255255.255.255.255). To forward these requests across network boundaries to a remote DHCP server, the router must intercept the broadcast at the client's default gateway interface. Therefore, `ip helper-address` must be applied to subinterface GigabitEthernet0/0/0.40, which inspects incoming broadcasts, inserts its IP address into the `giaddr` field, and unicasts the request to 192.168.100.50192.168.100.50.

Adım Adım Çözüm

1
Identify the ingress boundary for client broadcast traffic
Hosts on VLAN 40 send DHCP DISCOVER broadcasts to their default gateway at subinterface GigabitEthernet0/0/0.40.
Routers block broadcast traffic by default. The DHCP relay agent listens for incoming UDP broadcasts on the specific client gateway interface.
2
Apply the IP helper address configuration
Entering `ip helper-address 192.168.100.50` under interface configuration mode for subinterface GigabitEthernet0/0/0.40 enables broadcast-to-unicast conversion.
This sets the Gateway IP Address (giaddr) field to the subinterface IP address and forwards the unicast packet to the centralized DHCP server.

Anahtar Kavram

DHCP Relay Agent Interface Configuration
Tahmini Süre:1m 30s
Soru 604Soru

A network engineering team is updating management access policies to reduce vulnerabilities associated with credential sniffing, brute-force access attempts, and unauthenticated administrative sessions across enterprise devices. Which two security controls directly mitigate these specific vulnerabilities and threats? (Select two.)

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

Cevabı ve açıklamayı göster

Cevap: Enforcing Secure Shell (SSH) for device management to encrypt access credentials and session data in transit; Implementing Multi-Factor Authentication (MFA) for administrative access to prevent unauthorized logins from compromised passwords

Cevap

Enforcing SSH for device management and implementing Multi-Factor Authentication (MFA) for administrative access directly mitigate packet sniffing and credential-based unauthorized access.
Enforcing SSH encrypts administrative network traffic to prevent eavesdropping and credential theft in transit. Implementing Multi-Factor Authentication (MFA) adds a critical layer of defense ensuring that compromised administrative passwords alone cannot grant access to network devices.

Adım Adım Çözüm

1
Identify the threat vectors described in the scenario
The identified threat vectors are credential sniffing (packet eavesdropping), unauthorized access, and brute-force/compromised password usage.
Security controls must specifically target the operational mechanisms of the identified threats and vulnerabilities.
2
Evaluate the control that addresses packet sniffing of administrative sessions
SSH provides encrypted transport for remote management traffic, ensuring passwords and commands cannot be read in cleartext over the network.
Cleartext protocols like Telnet leave management sessions vulnerable to active and passive eavesdropping.
3
Evaluate the control that addresses weak or compromised administrative passwords
Multi-Factor Authentication requires a second independent credential factor (such as a time-based token or push notification), stopping attackers who obtain static passwords.
Password complexity alone is vulnerable to phishing and brute-force attacks without multi-factor verification.

Anahtar Kavram

Key Security Threats, Vulnerabilities, and Mitigations
Soru 605Soru

A network engineer is configuring HSRP version 2 on interface GigabitEthernet0/1 of a Cisco IOS router. The interface has been assigned an IPv4 address of 192.168.50.1/24192.168.50.1/24. The engineer enters the command `standby 10 ip 192.168.50.1` under interface configuration mode. Which statement accurately describes the operational result of executing this command?

Cevabı ve açıklamayı göster

Cevap: The router rejects the command with an error because HSRP does not permit the virtual IP address to match an interface physical IP address.

Cevap

The router rejects the command with an error because HSRP does not permit the virtual IP address to match an interface physical IP address.
In HSRP (both version 1 and version 2), the virtual IP address must be an unused IP address within the local subnet and cannot match the physical IP address of any interface participating in the HSRP group. Attempting to assign the physical interface IP address as the HSRP virtual IP results in an immediate Cisco IOS CLI error.

Adım Adım Çözüm

1
Analyze HSRP virtual IP address configuration requirements.
HSRP (v1 and v2) mandates that the virtual IP address must be a unique IP address within the local IP subnet, distinct from all physical interface IP addresses assigned to participating routers.
Preventing duplicate IP usage and ensuring proper ARP resolution and packet routing logic across participating routers.
2
Compare HSRP behavior with VRRP IP address ownership rules.
Unlike VRRP—which allows the virtual IP address to be identical to a router's physical interface IP address (making that router the IP address owner with priority 255)—HSRP explicitly rejects commands attempting to assign an existing physical interface IP address as the standby virtual IP.
Distinguishing protocol-specific rules between Cisco proprietary HSRP and industry-standard VRRP.
3
Determine the CLI command execution outcome.
When `standby 10 ip 192.168.50.1` is entered on an interface already using 192.168.50.1/24192.168.50.1/24, Cisco IOS returns an error message and rejects the configuration.
The CLI parser enforces the HSRP virtual IP constraint upon command execution.

Anahtar Kavram

HSRP Virtual IP Address Assignment vs. VRRP IP Address Ownership
Soru 606Soru

An administrator hardens interface GigabitEthernet1/0/5 on a Cisco Catalyst switch by executing `switchport port-security`, `switchport port-security maximum 2`, and `switchport port-security mac-address sticky`. During business hours, two authorized workstations connect to the switch port and successfully transmit data. However, following a scheduled power outage that causes an ungraceful switch reload, users report that connecting the exact same workstations to GigabitEthernet1/0/5 triggers a security violation, placing the port into an err-disabled state. Inspection via `show port-security interface gigabitEthernet1/0/5` shows a Total MAC Addresses count of 0. Which administrative oversight directly caused this loss of MAC address bindings?

Cevabı ve açıklamayı göster

Cevap: The administrator failed to execute `copy running-config startup-config` after the sticky MAC addresses were dynamically learned into the active configuration.

Cevap

The administrator failed to save the running configuration to NVRAM after the sticky MAC addresses were dynamically learned.
When port security is configured with the `mac-address sticky` feature, learned MAC addresses are dynamically added to the switch's volatile running configuration (RAM). If the administrator does not save the running configuration to the startup configuration using `copy running-config startup-config` or `write memory`, any switch reload or power cycle will restore the previous startup configuration, losing all dynamically learned sticky MAC addresses. Consequently, when endpoints reconnect after the reboot, the switch sees them as unknown MAC addresses, resulting in a port security violation.

Adım Adım Çözüm

1
Analyze the operational mechanics of sticky MAC address learning.
When `switchport port-security mac-address sticky` is configured, the switch dynamically learns connected MAC addresses up to the configured maximum and appends them as `switchport port-security mac-address sticky <MAC>` lines directly into the running configuration in RAM.
Understanding where sticky MAC addresses are stored during runtime is critical to diagnosing reboot persistence issues.
2
Evaluate the effect of an ungraceful switch reload on volatile memory (RAM).
Because running-config resides in RAM, any switch reboot or reload clears all unsaved runtime entries unless they have been explicitly saved to startup-config in NVRAM.
If `copy running-config startup-config` (or `write memory`) is not executed, the running configuration reverts to the last saved startup configuration upon reload, removing all learned sticky MAC entries.
3
Correlate MAC count 0 and port security violation after reboot.
With 0 sticky MAC addresses saved, the switch treats the returning endpoints as unrecognized devices. Because maximum allowed MACs was reached or default security policies triggered, the incoming frames violate port security, driving the port into err-disabled state.
Confirms that missing configuration persistence in NVRAM is the root cause of the violation.

Anahtar Kavram

Port Security Sticky MAC Address Persistence
Tahmini Süre:2m 0s
Soru 607Soru

A network administrator initializes OSPFv2 process 1 on a Cisco router named Branch-GW. The router does not have an explicit `router-id` command configured under `router ospf 1`. The operational status and IPv4 addresses of the router interfaces are listed below:

- Loopback1: 10.10.10.10/32 (Up / Up)
- Loopback2: 10.200.1.1/32 (Up / Up)
- Loopback3: 172.16.50.1/32 (Up / Up)
- GigabitEthernet0/0: 192.168.100.1/24 (Up / Up)
- GigabitEthernet0/1: 192.168.200.1/24 (Up / Up)

What IPv4 address will OSPFv2 elect as the router ID for Branch-GW?

Cevabı ve açıklamayı göster

Cevap: 172.16.50.1

Cevap

172.16.50.1
OSPFv2 elects the router ID using a strict three-tier precedence hierarchy: 1) Manually configured `router-id` command, 2) Highest IPv4 address among active (Up/Up) loopback interfaces, 3) Highest IPv4 address among active physical interfaces. Because no manual router ID is specified, OSPF evaluates the active loopback interfaces. Among Loopback1 (10.10.10.10), Loopback2 (10.200.1.1), and Loopback3 (172.16.50.1), Loopback3 has the highest IPv4 address (172.16.50.1). Active loopbacks take precedence over physical interfaces, so the higher physical interface addresses (192.168.100.1 and 192.168.200.1) are ignored.

Adım Adım Çözüm

1
Check for an explicitly configured router ID under the OSPF process.
No `router-id` command is configured.
A manually configured router ID has the highest priority in OSPF election logic.
2
Identify active (Up/Up) loopback interfaces on the router.
Three active loopback interfaces exist: Loopback1 (10.10.10.10), Loopback2 (10.200.1.1), and Loopback3 (172.16.50.1).
Active loopback interfaces take precedence over all physical interfaces regardless of IP address values.
3
Determine the highest IPv4 address among the active loopback interfaces.
172.16.50.1 is numerically greater than 10.200.1.1 and 10.10.10.10.
When multiple active loopbacks are present, OSPF selects the highest numeric IPv4 address as the router ID.

Anahtar Kavram

OSPFv2 Router ID Election Priority Logic
Tahmini Süre:1m 0s
Soru 608Soru

A network engineer is configuring a Cisco IOS router to relay DHCP requests from hosts on VLAN 50 (192.168.50.0/24192.168.50.0/24) to a centralized DHCP server with the IP address 10.10.10.510.10.10.5 located on VLAN 10. The default gateway for VLAN 50 is configured on subinterface GigabitEthernet 0/0/0.50.

Which two statements accurately describe the required configuration and behavior of the DHCP relay agent in this scenario? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: The `ip helper-address 10.10.10.5` command must be configured under subinterface GigabitEthernet 0/0/0.50.; The router converts incoming client DHCP DISCOVER broadcast packets into unicast UDP packets directed to 10.10.10.5.

Cevap

The helper address command must be applied on subinterface GigabitEthernet 0/0/0.50, and the router converts incoming client broadcast packets into unicast UDP packets directed to the DHCP server IP address.
DHCP relay agents must be configured on the client-facing gateway interface that receives client broadcast messages. When a client broadcasts a DHCP DISCOVER message, the router intercepts it on subinterface GigabitEthernet 0/0/0.50, populates the Gateway IP Address (giaddr) field with its own interface IP address, and unicasts the frame to the specified DHCP server IP address (10.10.10.5).

Adım Adım Çözüm

1
Identify the ingress interface receiving client broadcasts
Client hosts reside on VLAN 50, which connects to the router via subinterface GigabitEthernet 0/0/0.50.
DHCP broadcast messages arrive on the gateway interface for that subnet.
2
Apply the IP helper address configuration
The command `ip helper-address 10.10.10.5` is placed directly under subinterface GigabitEthernet 0/0/0.50.
This instructs the router interface to listen for incoming IPv4 UDP broadcasts (including ports 67/68 for DHCP) and forward them.
3
Analyze relay agent packet rewriting mechanism
The router populates the `giaddr` field with its subinterface IP address and unicasts the packet to 10.10.10.510.10.10.5 using UDP port 67.
Routers do not forward Layer 2 broadcasts; they convert the payload to a unicast packet to cross network boundaries.

Anahtar Kavram

DHCP Relay Agent Interface Binding and Broadcast-to-Unicast Forwarding Mechanics
Soru 609Soru

An network administrator is implementing Multi-Factor Authentication (MFA) to secure access to network infrastructure devices. Which two of the following options represent a possession factor ('something you have')? (Select two.)

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

Cevabı ve açıklamayı göster

Cevap: A physical hardware security token that generates time-based one-time passcodes (TOTP); An enterprise smart card inserted into a card reader for identity verification

Cevap

The correct options are the physical hardware security token and the enterprise smart card.
Multi-Factor Authentication (MFA) requires distinct authentication factors. The physical hardware security token and the enterprise smart card both require the user to physically possess a tangible object ('something you have') to authenticate successfully.

Adım Adım Çözüm

1
Identify the core authentication factor types in Multi-Factor Authentication (MFA)
MFA relies on three primary factor categories: Knowledge (something you know), Possession (something you have), and Inherence (something you are).
Categorizing each option under its proper factor type is required to isolate possession factors.
2
Evaluate each choice against the 'something you have' (possession) definition
Physical hardware tokens and smart cards are physical items owned or held by the user. Passwords and PINs are knowledge items (something you know), and biometric fingerprints are inherence items (something you are).
Selecting the items that require physical ownership correctly satisfies the question prompt.

Anahtar Kavram

Authentication Factor Classification in Multi-Factor Authentication (MFA)
Soru 610Soru

A network administrator enables HSRP version 2 on a Cisco IOS router interface configured with the highest priority in the group. In what order does the router progress through the standard HSRP operational states from initial interface bring-up to becoming the primary gateway?

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

Cevabı ve açıklamayı göster

Cevap

The correct chronological sequence of HSRP states during router initialization is Initial State, Listen State, Speak State, Standby State, and Active State.
HSRP routers follow a strict finite state machine sequence during initialization: Initial (interface up/config ready) -> Listen (receiving Hello messages passively) -> Speak (sending Hello messages to participate in election) -> Standby (acting as immediate backup) -> Active (handling virtual MAC/IP traffic).

Adım Adım Çözüm

1
Identify the initial state upon interface bring-up
The router starts in the Initial state where protocol operations have not yet actively begun.
HSRP configuration is loaded but no network messages have been processed or sent.
2
Determine passive monitoring phase
The router transitions to the Listen state.
In Listen state, the router receives Hello packets to discover active group routers without sending any.
3
Identify active election participation
The router transitions to the Speak state.
In Speak state, the router starts transmitting Hello packets to announce its presence and priority.
4
Determine intermediate role election
The router moves into the Standby state.
Before becoming Active, the router becomes the Standby router monitoring the virtual IP group.
5
Identify final forwarding state
The router enters the Active state.
Because it possesses the highest priority, it claims the Active role and begins processing virtual MAC frames.

Anahtar Kavram

HSRP Finite State Machine (Initial -> Listen -> Speak -> Standby -> Active)
Soru 611Soru

An enterprise network engineer is designing a Quality of Service (QoS) traffic conditioning policy on a WAN edge router connecting to a service provider with a Committed Information Rate (CIR) lower than the physical link bandwidth. Which two statements accurately describe the operational mechanics and application constraints of traffic shaping versus traffic policing in this scenario?

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

Cevabı ve açıklamayı göster

Cevap: Traffic shaping buffers excess packets in a queue to smooth out bursts, resulting in a regulated transmission rate across the egress interface.; Traffic policing immediately drops or remarks packets exceeding the configured threshold without utilizing memory buffers.

Cevap

Traffic shaping buffers excess packets to smooth out traffic bursts for steady egress transmission, whereas traffic policing immediately drops or remarks packets exceeding specified limits without buffering.
Traffic shaping smooths out traffic bursts by delaying packets in buffer memory, producing a predictable egress rate. In contrast, traffic policing does not buffer packets; it acts immediately on out-of-profile traffic by dropping or remarking excess packets.

Adım Adım Çözüm

1
Analyze the functional mechanism of traffic shaping.
Recognize that shaping buffers out-of-profile packets in software queues and schedules them for later transmission to yield a smooth rate.
Shaping is designed to handle bursty traffic without immediate packet drops when connecting to lower-speed CIR lines.
2
Analyze the functional mechanism of traffic policing.
Recognize that policing acts immediately on packets that exceed the token bucket criteria by either dropping them or remarking their QoS headers.
Policing enforces strict rate boundaries without delay or buffer allocations.
3
Evaluate directionality constraints for both QoS mechanisms.
Confirm that shaping is supported only outbound (egress) due to buffer management requirements, whereas policing can function inbound (ingress) and outbound (egress).
Queuing engine operations require egress scheduling control.

Anahtar Kavram

Operational differences between QoS Traffic Shaping and Traffic Policing
Soru 612Soru

A network administrator needs to configure static routes on a Cisco IOS router for destination subnet 10.15.0.0/1610.15.0.0/16. The primary route should use next-hop IP address 192.168.1.2192.168.1.2 with default priority. Additionally, a floating static backup route must be configured via next-hop IP address 192.168.2.2192.168.2.2 to take over only if the primary path learned via OSPF (Administrative Distance 110) becomes unavailable. Which two CLI commands correctly configure this static routing behavior? (Select TWO options.)

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

Cevabı ve açıklamayı göster

Cevap: ip route 10.15.0.0 255.255.0.0 192.168.1.2; ip route 10.15.0.0 255.255.0.0 192.168.2.2 120

Cevap

The correct commands are 'ip route 10.15.0.0 255.255.0.0 192.168.1.2' for the primary static route and 'ip route 10.15.0.0 255.255.0.0 192.168.2.2 120' for the floating static route.
The standard primary static route is configured using subnet mask notation with an implicit administrative distance of 1. To create a floating static route that acts as a backup to OSPF (which has a default administrative distance of 110), the static route must explicitly specify an administrative distance greater than 110, such as 120.

Adım Adım Çözüm

1
Determine the syntax for the primary IPv4 static route.
The command syntax is 'ip route <destination-prefix> <subnet-mask> <next-hop-ip>'. For 10.15.0.0/1610.15.0.0/16, this is 'ip route 10.15.0.0 255.255.0.0 192.168.1.2'.
Standard static routes use default administrative distance 1.
2
Determine the administrative distance needed for the floating static backup route.
The backup route must have an administrative distance greater than OSPF (AD = 110), such as 120.
Routes with lower administrative distance are preferred in the routing table. To act as a backup to an OSPF route, the static route AD must exceed 110.

Anahtar Kavram

IPv4 Floating Static Route Configuration and Administrative Distance
Tahmini Süre:1m 30s
Soru 613Soru

An enterprise security analyst is categorizing security audit findings and incident events into core cybersecurity governance definitions. Match each operational scenario on the left with its corresponding fundamental security concept on the right.

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

Öğeler

An unpatched software bug in a border router's operating system that permits unauthorized privilege escalation.
A specialized script executed by an adversary to take advantage of a known memory overflow flaw.
A malicious actor currently attempting to perform man-in-the-middle packet interception on an unencrypted wireless link.
The potential financial loss and operational disruption resulting from a compromised customer database.

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

1. Unpatched software bug matches Vulnerability. 2. Specialized script leveraging a flaw matches Exploit. 3. Malicious actor conducting packet interception matches Threat. 4. Potential financial loss and disruption matches Risk.
Each scenario maps directly to its core definition in information security governance: software flaws are vulnerabilities; malicious tools weaponizing flaws are exploits; active malicious actors/actions are threats; and the combined evaluation of potential impact and likelihood is risk.

Adım Adım Çözüm

1
Identify system weaknesses
Recognize that software bugs or improper configurations inherent to systems are vulnerabilities.
A vulnerability is a weakness in software, hardware, or procedural control.
2
Identify tools leveraging weaknesses
Recognize that software code or scripts designed to weaponize a weakness are exploits.
An exploit is the mechanism or payload used to target a specific vulnerability.
3
Identify threat actors and actions
Recognize that adversaries performing attacks represent threats.
A threat is any potential entity or event capable of exploiting a weakness to cause damage.
4
Evaluate overall organizational impact
Recognize that calculating potential harm and probability defines risk.
Risk represents the probability and business impact of a threat successfully executing an exploit against a vulnerability.

Anahtar Kavram

Fundamental Security Concepts: Threat, Vulnerability, Exploit, and Risk
Soru 614Soru

A network administrator is establishing password security policies on network devices to protect administrative logins from brute-force attacks. Which security policy control directly ensures that users choose strong passwords that resist dictionary attacks?

Cevabı ve açıklamayı göster

Cevap: Configuring minimum length and character complexity rules

Cevap

Configuring minimum length and character complexity rules directly ensures users create resilient credentials that resist dictionary and brute-force guessing attacks.
Configuring minimum length and character complexity rules is the standard control for enforcing password strength. Requiring longer passwords containing a mix of upper and lower case letters, numbers, and symbols significantly increases entropy and mitigates dictionary or brute-force guessing attacks.

Adım Adım Çözüm

1
Identify the goal of the password security policy
The requirement is to prevent users from creating weak, easily guessed, or dictionary-vulnerable passwords.
Security policies dictate password composition rules prior to account creation or updates.
2
Evaluate the effect of password complexity and length enforcement
Requiring a combination of character types (uppercase, lowercase, numbers, symbols) along with sufficient length exponentially increases entropy.
Higher entropy prevents automated dictionary attacks from quickly discovering valid passwords.

Anahtar Kavram

Password Security Policies and Complexity Rules
Soru 615Soru

An organization is deploying 802.1X authentication using EAP-TLS to secure network access. During testing, a user laptop fails the TLS handshake when attempting to authenticate against the Cisco Identity Services Engine (ISE) RADIUS server. Inspection of the server logs reveals that the client presented a valid user certificate issued by an Intermediate Certificate Authority (CA), and the root CA certificate is present in the server's trusted store. However, the handshake fails because ISE cannot verify whether the client certificate has been revoked due to an unreachable Revocation Check endpoint. Which mechanism or component must be accessible to resolve this authentication failure?

Cevabı ve açıklamayı göster

Cevap: An accessible Online Certificate Status Protocol (OCSP) responder or Certificate Revocation List (CRL) distribution point

Cevap

An accessible Online Certificate Status Protocol (OCSP) responder or Certificate Revocation List (CRL) distribution point is required.
In Public Key Infrastructure (PKI), validating a digital certificate requires checking four primary criteria: signature validity, current date within the validity period, trust chain up to a trusted Root CA, and certificate revocation status. When a RADIUS server (such as Cisco ISE) performs EAP-TLS authentication, it verifies whether the client certificate has been revoked prior to expiration. This verification relies on accessing either a Certificate Revocation List (CRL) from a CDP or querying an Online Certificate Status Protocol (OCSP) responder. If these endpoints are unreachable, revocation status cannot be verified, causing the handshake to fail.

Adım Adım Çözüm

1
Analyze the EAP-TLS authentication flow and failure symptom.
The client presented a valid certificate from a trusted CA hierarchy, but authentication failed specifically due to an unverified revocation status.
During TLS certificate validation, the verifying party (RADIUS server) checks certificate signature, validity dates, trust chain, and revocation status.
2
Identify the required PKI component for checking certificate revocation status.
Digital certificate revocation status is checked via Certificate Revocation Lists (CRLs) or Online Certificate Status Protocol (OCSP) queries.
If the RADIUS server cannot reach the CRL Distribution Point (CDP) or OCSP responder, and strict revocation checking is enabled, certificate validation fails.

Anahtar Kavram

Public Key Infrastructure (PKI) Certificate Validation & Revocation Checking (CRL/OCSP)
Soru 616Soru

An engineer is monitoring an HSRP group on VLAN 30 between two switches, DSW1 and DSW2. DSW1 is configured with an HSRP priority of 115115, preemption enabled, and interface tracking on interface GigabitEthernet1/0/1 with a priority decrement of 2020. DSW2 is configured with an HSRP priority of 105105 and preemption enabled. Under normal operating conditions, DSW1 is the Active router. If interface GigabitEthernet1/0/1 on DSW1 goes down, which switch becomes the Active router for HSRP group 30, and what is DSW1's updated priority?

Cevabı ve açıklamayı göster

Cevap: DSW2 becomes the Active router, and DSW1's priority is updated to 9595.

Cevap

DSW2 becomes the Active router, and DSW1's priority is updated to 9595.
When the tracked interface GigabitEthernet1/0/1 on DSW1 fails, HSRP interface tracking automatically reduces DSW1's priority by the configured decrement of 2020, bringing its priority down from 115115 to 9595. Because DSW2 has an active priority of 105105 (which is higher than 9595) and has preemption enabled, DSW2 immediately takes over the Active router role for HSRP group 30.

Adım Adım Çözüm

1
Calculate the updated HSRP priority for DSW1 after interface failure
DSW1's initial priority of 115115 minus the configured decrement of 2020 equals 9595.
Interface tracking reduces the HSRP priority by the specified decrement value when the tracked interface enters a down state.
2
Compare the updated HSRP priorities between DSW1 and DSW2
DSW2 priority (105105) is greater than DSW1 updated priority (9595).
The HSRP election process favors the router with the highest priority value.
3
Evaluate preemption state to determine the active router
DSW2 preempts DSW1 and becomes the Active router for HSRP group 30.
Preemption is enabled on DSW2, allowing it to assume the Active role as soon as its priority exceeds the current Active router's priority.

Anahtar Kavram

HSRP Interface Tracking and Preemption Mechanics
Tahmini Süre:1m 0s
Soru 617Soru

A network technician configures a standard IPv4 access control list on a Cisco router using the command `access-list 5 permit host 172.16.10.15` and applies it inbound on an interface. What happens when host 172.16.10.20 sends traffic into that interface?

Cevabı ve açıklamayı göster

Cevap: The traffic is dropped because of the implicit deny clause at the end of the access control list.

Cevap

The traffic is dropped because of the implicit deny clause at the end of the access control list.
Every Cisco IPv4 access control list automatically ends with an implicit deny statement (such as `deny any`). When host 172.16.10.20 sends packets into the interface, the router evaluates the packet against the explicit rule permitting host 172.16.10.15. Because the source address does not match, processing reaches the end of the list where the implicit deny drops the packet.

Adım Adım Çözüm

1
Inspect the explicit configuration line in the access control list.
The ACL contains only `access-list 5 permit host 172.16.10.15`.
Cisco IOS evaluates ACL entries sequentially against incoming packets.
2
Compare incoming packet source IP address 172.16.10.20 to the configured rule.
The IP address 172.16.10.20 does not match 172.16.10.15.
The 'host' keyword implies a wildcard mask of 0.0.0.0, matching only one exact address.
3
Evaluate the default behavior when no explicit rules match.
The packet falls through to the hidden implicit deny entry at the end of the ACL and is dropped.
Every IPv4 ACL in Cisco IOS automatically ends with an implicit `deny ip any` clause.

Anahtar Kavram

ACL Implicit Deny Clause
Soru 618Soru

A network security engineer is reviewing the defense-in-depth posture for a sensitive financial processing facility. The engineer needs to implement controls that belong specifically to the physical security domain or administrative security program elements, distinguishing them from technical and logical network mechanisms. Which two options represent physical access controls or security program elements? (Select two.)

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

Cevabı ve açıklamayı göster

Cevap: Installing a biometric mantrap vestibule at the data center entrance to prevent unauthorized entry and tailgating; Establishing mandatory user security awareness training focused on identifying social engineering and phishing tactics

Cevap

Installing biometric mantrap vestibules and establishing user security awareness training programs are the two measures that fall under physical access controls and security program elements.
Physical security controls encompass physical barriers, biometric readers, badge access systems, mantrap vestibules, and surveillance designed to prevent unauthorized physical access to computing hardware. Security program elements include human-centric initiatives such as user security awareness training, security policies, and incident handling protocols. The mantrap vestibule directly secures physical entry, while security awareness training addresses user behavior and social engineering resistance.

Adım Adım Çözüm

1
Classify the security requirements
Identify physical security mechanisms (physical barriers/locks/biometrics) and security program elements (policies/awareness/training).
Security controls are categorized into administrative/programmatic, physical, and technical/logical domains.
2
Evaluate the physical control options
Biometric mantrap vestibules physically restrict access to facilities and prevent tailgating, qualifying directly as physical access controls.
Physical controls govern physical entry into facility perimeters, server rooms, and network closets.
3
Evaluate the security program element options
Mandatory security awareness training educates personnel on human threat vectors, qualifying directly as a security program element.
Security program elements include administrative policies, security training, incident response plans, and compliance frameworks.
4
Differentiate technical controls from physical/programmatic controls
TACACS+ AAA authentication, switch port security, and router ACLs are technical (logical) security mechanisms operating on network hardware and protocols.
Technical controls use software and hardware logic to enforce security policies on data traffic and device administration.

Anahtar Kavram

Classification of Security Control Types (Physical vs. Programmatic/Administrative vs. Technical/Logical)
Tahmini Süre:1m 30s
Soru 619Soru

A network security architect is hardening a newly initialized Cisco IOS XE enterprise router. Arrange the following CLI configuration commands in the mandatory order required to establish local database authentication for remote management, ensuring that local privileged credentials using scrypt hashing are created prior to entering the line context, local authentication is bound to the VTY lines, and unencrypted management sessions are blocked.

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

Cevabı ve açıklamayı göster

Cevap

The correct sequence of CLI operations begins in global configuration mode by defining the local administrative account with scrypt secret encryption ('username netsec_admin privilege 15 algorithm-type scrypt secret C!sc0_Sec#2026'). Next, enter line subconfiguration mode ('line vty 0 4'). Within the line context, enable local database lookup ('login local'), and finally restrict line access protocols strictly to SSH ('transport input ssh').
The proper administrative sequence requires creating the global local database account first using 'username netsec_admin privilege 15 algorithm-type scrypt secret C!sc0_Sec#2026'. Once the account exists, the administrator enters VTY line submode with 'line vty 0 4', binds line authentication to the local database using 'login local', and secures line transport by executing 'transport input ssh'.

Adım Adım Çözüm

1
Define local administrative credentials in global configuration mode.
The local database contains an administrative account with privilege level 15 secured with a high-strength Type 9 scrypt hash.
Creating the account first prevents administrator lockout when local line login enforcement is applied.
2
Navigate into line configuration context for remote VTY interfaces.
The terminal prompt changes to line configuration submode (config-line).
Subsequent line-specific authentication and transport parameters can only be applied inside the line subconfiguration context.
3
Configure VTY lines to enforce local database authentication.
Inbound connection attempts on VTY lines 0-4 now require authentication matching accounts defined in the local running-config database.
The 'login local' command replaces default password checking or unauthenticated line access with local username/password verification.
4
Enforce secure management transport protocols on VTY lines.
Telnet and all other unencrypted remote access protocols are prohibited; only encrypted SSH connections are accepted.
Restricting transport input guarantees remote login credentials and session data are protected against eavesdropping across the network.

Anahtar Kavram

Cisco IOS CLI hierarchy and local authentication dependency sequence
Soru 620Soru

A network administrator is hardening remote management access on a gateway router named WAN-Edge01. The router already has a non-default hostname, a domain name configured (enterprise.net), and a 2048-bit RSA key generated. Security standards mandate that SSH Version 1 connections must be explicitly disabled and incoming VTY sessions must authenticate using the local router user database.

Which combination of commands satisfies these operational requirements?

Cevabı ve açıklamayı göster

Cevap: Execute 'ip ssh version 2' in global configuration mode and 'login local' in line vty configuration mode.

Cevap

Executing 'ip ssh version 2' in global configuration mode and 'login local' in line vty configuration mode satisfies both requirements by enforcing SSH version 2 and requiring local database authentication for incoming sessions.
The requirement asks to explicitly disable SSH v1 (enforce SSH v2) and require authentication via the local router database. Using 'ip ssh version 2' globally restricts remote SSH connections to version 2 only. Entering 'login local' under line vty configuration mode binds incoming terminal connections to the router's local user account database.

Adım Adım Çözüm

1
Enforce SSH Version 2 globally
Disables legacy SSH v1.5/v1 connections on the router
The command 'ip ssh version 2' restricts SSH connections strictly to SSH v2 protocols for security compliance.
2
Configure VTY lines for local authentication
Requires incoming VTY connections to authenticate against local user accounts
The command 'login local' under 'line vty 0 15' forces the Cisco IOS device to check username and password credentials defined in the local running configuration.

Anahtar Kavram

SSH Version 2 Enforcement and VTY Local Authentication
ÖncekiSayfa 31 / 100Sonraki
Tüm alıştırma soruları — Cisco CCNA | Examkin