Tüm alıştırma soruları

1987 soru

Soru 1881Soru

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?

Cevabı ve açıklamayı göster

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

Cevap

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.

Adım Adım Çözüm

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.

Anahtar Kavram

ACL Sequential Evaluation and the Implicit Deny Clause
Soru 1882Soru

Match each Quality of Service (QoS) mechanism or Per-Hop Behavior (PHB) on the left to its corresponding operational characteristic or header specification on the right.

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

Öğeler

Expedited Forwarding (EF)
Assured Forwarding 41 (AF41)
Traffic Policing
Traffic Shaping

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Expedited Forwarding matches DSCP decimal 46 / Strict Priority Queue service; Assured Forwarding 41 matches DSCP decimal 34 / Class 4 low drop probability; Traffic Policing matches immediately dropping or remarking excess traffic without queuing; Traffic Shaping matches buffering excess traffic to smooth bursty egress rates.
Expedited Forwarding (EF) is standard DSCP 46 (010110) intended for real-time traffic requiring low latency/jitter via priority queuing. Assured Forwarding 41 (AF41) corresponds to DSCP 34 (100010) offering Class 4 high-priority bandwidth with a low drop probability. Traffic Policing measures rate limits and drops or remarks exceeding traffic immediately. Traffic Shaping regulates egress rate spikes by holding overflow packets in memory buffers.

Adım Adım Çözüm

1
Identify Differentiated Services Code Point (DSCP) values and binary encodings for Per-Hop Behaviors (PHBs).
EF uses DSCP 46 (010110). AF41 uses class 4 (001) with low drop (01) plus trailing zero (100010 = 34).
DiffServ DSCP uses 6 bits in the IPv4 ToS field. EF guarantees strict priority service while AFxy defines class x (1-4) and drop preference y (1-3).
2
Differentiate traffic enforcement mechanisms based on memory buffer utilization.
Policing discards/remarks non-conforming packets without delay; Shaping delays non-conforming packets in egress buffers.
Policers do not support queuing/buffering and operate inbound or outbound, whereas shapers require queue buffers and operate outbound only.

Anahtar Kavram

QoS Per-Hop Behaviors (EF/AF) and Rate Enforcement (Policing vs Shaping)
Soru 1883Soru

A network administrator is documenting Syslog severity level definitions for an enterprise Cisco IOS router deployment. Place the following Syslog severity level names in sequence from the lowest numerical severity code (most critical) to the highest numerical severity code (least critical).

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

Cevabı ve açıklamayı göster

Cevap

The correct order from lowest numerical code to highest numerical code is Alert (Level 1), Error (Level 3), Notice (Level 5), and Informational (Level 6).
Cisco IOS Syslog severity levels range numerically from 0 to 7, where lower numbers indicate higher severity. The correct sequence from lowest numerical code (most severe) to highest numerical code (least severe) is Alert (level 1), Error (level 3), Notice (level 5), and Informational (level 6).

Adım Adım Çözüm

1
Determine the numerical severity code associated with each Syslog severity level name.
Alert is level 1, Error is level 3, Notice is level 5, and Informational is level 6.
Cisco IOS Syslog follows standard severity level mappings from 0 (Emergency) to 7 (Debugging).
2
Sequence the items in ascending order based on their numerical severity values.
Alert (1) -> Error (3) -> Notice (5) -> Informational (6).
Lower numerical severity codes represent higher-priority, more critical events.

Anahtar Kavram

Syslog severity level numerical hierarchy in Cisco IOS
Soru 1884Soru

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?

Cevabı ve açıklamayı göster

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

Cevap

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.

Adım Adım Çözüm

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.

Anahtar Kavram

Physical Access Controls vs. Security Program Elements
Soru 1885Soru

A network operations team requires a Cisco IOS router to send only high-criticality log messages—specifically Emergency (severity 0), Alert (severity 1), and Critical (severity 2)—to a central syslog server at IP address 10.1.1.50. Simultaneously, the router must retain all messages up to the Informational level (severity 6) in local system RAM. Which set of commands correctly achieves this configuration?

Cevabı ve açıklamayı göster

Cevap: logging host 10.1.1.50
logging trap 2
logging buffered 6

Cevap

The configuration using 'logging host 10.1.1.50', 'logging trap 2', and 'logging buffered 6' correctly configures the destination IP, syslog trap threshold, and local RAM buffer logging levels.
The correct command combination specifies 'logging host 10.1.1.50' to define the remote syslog server, 'logging trap 2' to forward events at or above Critical severity (levels 0, 1, and 2), and 'logging buffered 6' to store messages up to Informational severity (levels 0 through 6) in the local memory buffer.

Adım Adım Çözüm

1
Identify the remote syslog server configuration command
The command 'logging host 10.1.1.50' designates 10.1.1.50 as the destination IP address for syslog messages.
Cisco IOS uses 'logging host' (or 'logging') to forward log messages to remote servers.
2
Determine the syslog trap threshold for remote forwarding
Emergency (0), Alert (1), and Critical (2) correspond to severity levels 0–2. Setting 'logging trap 2' includes severity level 2 and all lower numerical values (0, 1, 2).
Syslog logging trap thresholds include the specified level and all more severe (lower numeric) levels.
3
Determine the internal buffer logging threshold
Informational level corresponds to severity 6. Setting 'logging buffered 6' captures all messages from level 0 through level 6 in RAM.
Local RAM logging is configured via 'logging buffered <level-or-name>'.

Anahtar Kavram

Cisco IOS Syslog severity level thresholds and destination commands (logging host, logging trap, logging buffered).
Soru 1886Soru

A host PC on a local subnet connects to router interface GigabitEthernet0/0, which is configured with IP address 192.168.100.1/24192.168.100.1/24 and the command `ip helper-address 10.50.1.10`. When the host broadcasts a DHCP DISCOVER message, the router performs DHCP relay operations. Which source and destination IP addresses are placed in the Layer 3 IP header of the unicast packet forwarded by the router to the DHCP server?

Cevabı ve açıklamayı göster

Cevap: Source IP: 192.168.100.1192.168.100.1, Destination IP: 10.50.1.1010.50.1.10

Cevap

The router sets the source IP address to 192.168.100.1192.168.100.1 (the ingress interface address receiving the client broadcast) and the destination IP address to 10.50.1.1010.50.1.10 (the DHCP server address configured in the `ip helper-address` statement).
When a Cisco router interface configured with `ip helper-address 10.50.1.10` receives a broadcast DHCP DISCOVER message, it acts as a DHCP relay agent. It populates the gateway IP address (`giaddr`) field in the DHCP payload with the interface's IP address (192.168.100.1192.168.100.1) and encapsulates the payload into a unicast IP packet. The outer IP header uses the interface IP (192.168.100.1192.168.100.1) as the Source IP and the configured helper address (10.50.1.1010.50.1.10) as the Destination IP.

Adım Adım Çözüm

1
Analyze the incoming packet from the client host.
The host sends a UDP broadcast DHCP DISCOVER message with source IP 0.0.0.00.0.0.0 and destination IP 255.255.255.255255.255.255.255.
Unconfigured DHCP clients cannot perform unicast routing initially and must broadcast to discover available servers.
2
Examine the router's DHCP relay mechanism triggered by `ip helper-address`.
The router intercepts the broadcast on interface GigabitEthernet0/0 (192.168.100.1192.168.100.1) and sets the gateway IP address (`giaddr`) field in the DHCP payload to 192.168.100.1192.168.100.1.
The `giaddr` field tells the remote DHCP server which subnet scope to select an IP address from.
3
Determine the outer Layer 3 IP header parameters of the relayed packet.
The router constructs a unicast IP packet with Source IP 192.168.100.1192.168.100.1 and Destination IP 10.50.1.1010.50.1.10.
The relay agent must encapsulate the request in a unicast packet directed to the configured helper address to route across intermediate networks.

Anahtar Kavram

DHCP Relay Agent IP Packet Unicast Forwarding and GIADDR Operation
Soru 1887Soru

A network administrator configures Low Latency Queuing (LLQ) on a Cisco WAN router egress interface using Modular QoS CLI (MQC). The policy map contains a `priority` command allocated 128 kbps128\text{ kbps} for Expedited Forwarding (EF) voice traffic and a `bandwidth` command allocated 512 kbps512\text{ kbps} for Assured Forwarding (AF31) transactional data. During a link congestion event, voice traffic arrives at a sustained rate of 200 kbps200\text{ kbps}. Which statement accurately describes how the router processes the excess voice traffic beyond the allocated 128 kbps128\text{ kbps}?

Cevabı ve açıklamayı göster

Cevap: The router police-drops or remarks the excess 72 kbps72\text{ kbps} of voice traffic to prevent starvation of the CBWFQ data queues.

Cevap

The router drops or remarks the excess voice traffic exceeding the allocated priority bandwidth limit during congestion to protect remaining queues.
Low Latency Queuing (LLQ) implements a strict priority queue for latency-sensitive traffic such as voice. To prevent a high-volume voice burst from monopolizing the interface and starving other CBWFQ queues during congestion, LLQ polices the priority queue to its allocated bandwidth limit (128 kbps128\text{ kbps}). Any traffic offered above this rate (72 kbps72\text{ kbps}) is policed (dropped or remarked), allowing remaining queues to receive their guaranteed bandwidth.

Adım Adım Çözüm

1
Analyze the QoS queuing mechanism in use.
Low Latency Queuing (LLQ) combines a strict priority queue (`priority` command) with Class-Based Weighted Fair Queuing (CBWFQ) queues (`bandwidth` command).
LLQ is designed to service delay-sensitive traffic like voice before any other queue.
2
Evaluate the behavior of the strict priority queue under interface congestion.
To prevent a strict priority queue from starving remaining CBWFQ queues, MQC enforces an implicit or explicit policer on the `priority` class during congestion.
Without a policing mechanism on the strict priority queue, an overload of voice traffic would prevent data queues from ever being serviced.
3
Calculate the incoming rate versus the configured threshold.
Configured priority bandwidth = 128 kbps128\text{ kbps}; offered traffic rate = 200 kbps200\text{ kbps}. The excess volume is 200128=72 kbps200 - 128 = 72\text{ kbps}.
Traffic up to 128 kbps128\text{ kbps} is transmitted with strict priority, and the remaining 72 kbps72\text{ kbps} is subjected to policing (dropped or remarked depending on explicit configuration).

Anahtar Kavram

LLQ Priority Queue Policing Mechanics under Congestion
Tahmini Süre:2m 0s
Soru 1888Soru

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?

Cevabı ve açıklamayı göster

Cevap: Something you know and something you have

Cevap

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').

Adım Adım Çözüm

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.

Anahtar Kavram

Multi-Factor Authentication (MFA) Factor Categorization
Soru 1889Soru

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

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

Öğeler

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.

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

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.

Adım Adım Çözüm

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.

Anahtar Kavram

Distinction among Security Program Elements (Physical Access Controls, User Security Awareness, Administrative Policies, and Technical Controls)
Tahmini Süre:2m 0s
Soru 1890Soru

An administrator needs to configure a backup static route on router R1 to reach destination network 10.20.30.0/2410.20.30.0/24 only if the primary path learned via internal EIGRP (Administrative Distance 9090) becomes unavailable. The next-hop IPv4 address for the backup path is 192.168.1.2192.168.1.2. Which command must be entered on router R1 to achieve this objective?

Cevabı ve açıklamayı göster

Cevap: ip route 10.20.30.0 255.255.255.0 192.168.1.2 95

Cevap

The command 'ip route 10.20.30.0 255.255.255.0 192.168.1.2 95' correctly configures a floating static route with an Administrative Distance higher than EIGRP.
The command specifying destination network 10.20.30.0, subnet mask 255.255.255.0, next-hop IP 192.168.1.2, and Administrative Distance 95 correctly establishes a floating static route. Because the AD of 95 is higher than Internal EIGRP's AD of 90, the router will use EIGRP during normal operations and only insert this static route into the routing table if the EIGRP path goes down.

Adım Adım Çözüm

1
Identify the standard Cisco IOS IPv4 static route syntax.
Syntax: 'ip route <destination-network> <subnet-mask> <next-hop-ip> [administrative-distance]'
Correct command structure is required for syntax validity on Cisco routers.
2
Determine the required Administrative Distance (AD) for a floating static backup route.
AD must be greater than the primary route protocol's AD (90 for Internal EIGRP). Thus, AD = 95.
Routes with lower AD are preferred in the IP routing table. Setting AD higher than 90 ensures the static route remains inactive until EIGRP fails.
3
Combine the network parameters into the final command.
ip route 10.20.30.0 255.255.255.0 192.168.1.2 95
Matches destination 10.20.30.0/2410.20.30.0/24, next-hop 192.168.1.2192.168.1.2, and floating AD 95.

Anahtar Kavram

Floating Static Routes and Administrative Distance
Tahmini Süre:1m 15s
Soru 1891Soru

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?

Cevabı ve açıklamayı göster

Cevap: Spear phishing

Cevap

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.

Adım Adım Çözüm

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.

Anahtar Kavram

Social engineering threat vectors and spear phishing characteristics
Soru 1892Soru

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?

Cevabı ve açıklamayı göster

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

Cevap

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.

Adım Adım Çözüm

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.

Anahtar Kavram

Classification of Enterprise Security Controls (Administrative vs. Physical vs. Technical)
Soru 1893Soru

A network security engineer is hardening a Cisco IOS router for remote administrative access. The running configuration contains the following entries:

text
username opsadmin privilege 15 secret 9 99 eG8H kQzP8vX...usernameopstechsecret5kQzP8vX... username opstech secret 5 1 mER7mER7 h8GzK2Pq...
username opsguest password 0 Cisco12345!
service password-encryption
!
line vty 0 4
exec-timeout 10 0
privilege level 5
login local
transport input ssh

Based on this configuration, which operational behavior will occur when users authenticate remotely via SSH?

Cevabı ve açıklamayı göster

Cevap: The account without an explicit privilege level enters privilege level 5 upon successful login because it inherits the line configuration, whereas the administrator account enters privilege level 15.

Cevap

The user account without an explicit privilege level definition inherits privilege level 5 from the line VTY configuration upon login, while the administrator account with privilege 15 specified in its username command overrides the line setting and enters privilege level 15 directly.
In Cisco IOS, when VTY lines are configured with 'login local' and a baseline 'privilege level X', any local database account that authenticates without an explicit privilege level defined in its 'username' statement will inherit privilege level X from the line. Accounts configured with an explicit 'privilege Y' attribute in the local database override the line setting and enter privilege level Y immediately upon successful authentication.

Adım Adım Çözüm

1
Analyze local database user configuration attributes
The administrator user account specifies explicit privilege level 15. The secondary technical user account specifies no privilege attribute, defaulting to privilege level 1 in its user definition.
Explicit privilege settings tied to a username dictate the user's privilege level unless unassigned.
2
Evaluate line VTY privilege level interaction with local authentication
The line VTY range is configured with 'privilege level 5' and 'login local'.
When authenticating against the local database via VTY lines, Cisco IOS uses the line's configured privilege level as the default EXEC level for any authenticated user account that does not have an explicit privilege level assigned.
3
Determine session privilege outcomes for both accounts
The administrator account enters privilege level 15 (explicit user override). The secondary technical account enters privilege level 5 (inherited from VTY line).
User-specific privilege levels take precedence over line privilege settings, but line privilege settings override the default level 1 for unassigned local accounts.

Anahtar Kavram

Interaction between local database username privilege settings, line VTY privilege levels, and Cisco IOS password hashing types
Soru 1894Soru

A network administrator is deploying SSH version 2 for secure management on a Layer 3 switch named HQ-AggSwitch01. The switch already has a non-default hostname configured and local user accounts created. Which TWO configuration steps must be completed to successfully enable SSH version 2 and restrict remote management access strictly to SSH on the virtual terminal lines? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Define an IP domain name and generate an RSA key pair with a modulus length of at least 768 bits.; Configure transport input ssh and login local within line vty configuration mode.

Cevap

To enable SSH version 2 and secure VTY access, the administrator must configure an IP domain name with an RSA key pair of at least 768 bits, and configure 'transport input ssh' with 'login local' under line vty configuration mode.
Enabling SSH version 2 requires defining an IP domain name and generating an RSA key pair with at least 768 bits (768–2048 bits). Furthermore, securing the virtual terminal lines requires configuring 'login local' to authenticate users against local credentials and 'transport input ssh' to disable unencrypted protocols.

Adım Adım Çözüm

1
Verify prerequisite global SSH settings
Ensure a non-default hostname is set, configure an IP domain name using 'ip domain-name <domain>', and generate RSA keys using 'crypto key generate rsa'.
Cisco IOS automatically uses the hostname and domain name to form the Fully Qualified Domain Name (FQDN) needed for RSA key pair generation.
2
Ensure SSH version 2 operational compliance
Specify an RSA key modulus of 768 bits or greater (such as 1024 or 2048 bits).
Key sizes under 768 bits fail to support SSH version 2 and cause the device to fall back to SSH version 1.5.
3
Configure VTY line security and protocol binding
Under 'line vty 0 15', enter 'login local' to use local user database authentication and 'transport input ssh' to block unencrypted management protocols like Telnet.
Without 'login local', local user authentication will not be enforced, and without 'transport input ssh', plain-text Telnet access might remain permitted.

Anahtar Kavram

SSH Version 2 Configuration Prerequisites and VTY Line Securing
Soru 1895Soru

A Cisco router's IPv4 routing table contains four active static routes to various destination networks:

- `ip route 0.0.0.0 0.0.0.0 192.168.1.4`
- `ip route 10.10.0.0 255.255.0.0 192.168.1.1`
- `ip route 10.10.4.0 255.255.255.0 192.168.1.2`
- `ip route 10.10.4.16 255.255.255.240 192.168.1.3 110`

When the router receives an IP packet destined for 10.10.4.2510.10.4.25, which next-hop IP address will the router select to forward the packet?

Cevabı ve açıklamayı göster

Cevap: 192.168.1.3

Cevap

192.168.1.3 is selected because 10.10.4.16/28 provides the longest matching subnet mask for the destination address 10.10.4.25.
When a router makes a packet forwarding decision, it compares the destination IP address (10.10.4.2510.10.4.25) against all installed routes in its routing table and selects the route with the most specific match (longest subnet mask). The destination address falls into the subnet 10.10.4.16/2810.10.4.16/28 (10.10.4.1610.10.4.16 to 10.10.4.3110.10.4.31). Since /28/28 is longer than /24/24, /16/16, and /0/0, the router selects this entry and forwards the packet to next-hop 192.168.1.3192.168.1.3. Administrative Distance is irrelevant during the actual lookup phase of already-installed routes.

Adım Adım Çözüm

1
Analyze the destination IPv4 address against all routing table entries
Destination 10.10.4.25 matches four routes: 0.0.0.0/0, 10.10.0.0/16, 10.10.4.0/24, and 10.10.4.16/28 (range 10.10.4.16 - 10.10.4.31).
Routing lookup evaluates all routes installed in the routing table to find candidates.
2
Apply the Longest Prefix Match (LPM) rule to select the forwarding route
The /28 subnet mask is longer and more specific than /24, /16, or /0.
Routers always forward packets based on the longest matching prefix length regardless of Administrative Distance.
3
Determine the next-hop IPv4 address associated with the selected route
The 10.10.4.16/28 route points to next-hop 192.168.1.3.
The packet is forwarded to the next-hop IP associated with the winning prefix match.

Anahtar Kavram

Longest Prefix Match forwarding decision logic in IPv4 Routing
Soru 1896Soru

A Cisco router receives an IPv4 packet destined for host 192.168.2.50192.168.2.50. The router's routing table contains a static route configured as `ip route 192.168.2.0 255.255.255.0 10.1.1.2`. Which sequence correctly orders the internal packet processing and recursive routing lookup steps executed by the router 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 packet requiring a recursive static route lookup is: First, match the destination IP address against the routing table using longest prefix match. Second, extract the static route entry pointing to next-hop IP 10.1.1.2. Third, perform a recursive lookup for 10.1.1.2. Fourth, resolve the egress interface to GigabitEthernet0/1 via the connected route. Fifth, perform ARP resolution for 10.1.1.2 and encapsulate/forward the frame out GigabitEthernet0/1.
The correct sequence begins with comparing the incoming packet's destination IP address against the routing table using longest prefix matching. Upon matching the static route for 192.168.2.0/24, the router retrieves the next-hop IP address (10.1.1.2). Because the static route was configured with only a next-hop IP address rather than an exit interface, the router must execute a second (recursive) lookup to resolve how to reach 10.1.1.2. The recursive lookup matches a directly connected route (10.1.1.0/24 on GigabitEthernet0/1), establishing the outbound interface. Finally, ARP resolves the MAC address corresponding to 10.1.1.2, allowing the router to encapsulate and transmit the frame.

Adım Adım Çözüm

1
Perform initial routing table lookup for destination IP 192.168.2.50192.168.2.50.
Matches static route prefix `192.168.2.0/24` based on longest prefix match.
Routers evaluate incoming packet destinations against all active routes in the routing table to find the best match.
2
Extract the next-hop IP address 10.1.1.210.1.1.2 from the matched static route.
Determines that packets must be sent toward next-hop IP address 10.1.1.210.1.1.2.
When a static route points to an IP address rather than an interface, the router must identify where to send the traffic next.
3
Execute a recursive lookup in the routing table for IP 10.1.1.210.1.1.2.
Searches for an active routing entry covering IP 10.1.1.210.1.1.2.
The router needs to determine which exit interface connects to the network containing next-hop address 10.1.1.210.1.1.2.
4
Resolve next-hop IP 10.1.1.210.1.1.2 to connected subnet route `10.1.1.0/24` on GigabitEthernet0/1.
Identifies GigabitEthernet0/1 as the physical outbound interface.
The recursive process ends when the next-hop IP resolves to a directly connected interface.
5
Perform ARP resolution for 10.1.1.210.1.1.2 and transmit frame.
Encapsulates packet in Ethernet frame with next-hop MAC address and transmits out GigabitEthernet0/1.
Layer 3 packet processing concludes with Layer 2 address resolution and frame transmission out the designated egress interface.

Anahtar Kavram

IPv4 Static Route Recursive Lookup Process
Tahmini Süre:1m 30s
Soru 1897Soru

A DHCP client host holding an active IPv4 address lease reaches 50 percent of its designated lease duration (expiration of the T1 timer). In what sequence do the client and server execute the operational steps required to successfully renew the existing IP lease?

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

Cevabı ve açıklamayı göster

Cevap

The correct operational sequence for DHCP lease renewal at T1 timer expiration is: 1) The client transitions to the RENEWING state and sends a unicast DHCPREQUEST directly to the server; 2) The DHCP server updates the lease entry and sends a unicast DHCPACK; 3) The client processes the DHCPACK and resets its T1 and T2 timers; 4) The client transitions back to the BOUND state.
When a DHCP client reaches 50 percent of its lease duration (T1 timer), it transitions into the RENEWING state and sends a unicast DHCPREQUEST packet directly to the server that granted the lease. The server receives the request, updates its binding table, and replies with a unicast DHCPACK. Upon receiving the DHCPACK, the client resets both its T1 and T2 timers and returns to the BOUND state, ensuring seamless network access.

Adım Adım Çözüm

1
Identify the initial state change and message transmission by the client upon T1 timer expiration.
The client enters the RENEWING state and sends a unicast DHCPREQUEST directly to the server that granted the original lease.
At 50% of the lease duration, the client knows the server's IP address and attempts direct unicast renewal without broadcasting.
2
Determine the server's response to the direct renewal request.
The server verifies the binding record, updates the lease duration, and replies with a unicast DHCPACK packet.
The server acknowledges the request and commits the refreshed lease duration in its database.
3
Identify how the client processes the acknowledgment.
The client receives the DHCPACK packet and resets its T1 (50%) and T2 (87.5%) lease timers.
The acknowledgment provides fresh lease duration parameters, requiring local timers to restart.
4
Determine the final operational state of the client.
The client transitions back to the stable BOUND state.
With lease parameters successfully refreshed and timers reset, normal network interface binding continues.

Anahtar Kavram

DHCP Client State Machine and Unicast Lease Renewal (T1 Timer)
Soru 1898Soru

An organization is updating its network management policy to mitigate the threat of credential sniffing and unauthorized command execution during administrative access to network devices across an untrusted network. Which protocol should be deployed to enforceAAA administrative access while ensuring that the complete payload—including all authorization commands—is fully encrypted in transit?

Cevabı ve açıklamayı göster

Cevap: TACACS+, because it uses TCP and encrypts the entire body of every packet exchanged between the client and server.

Cevap

TACACS+, because it uses TCP and encrypts the entire body of every packet exchanged between the client and server.
The correct answer highlights TACACS+ because TACACS+ utilizes TCP (port 49) and encrypts the entire packet body following the header. This prevents eavesdroppers from viewing user credentials, administrative commands, or authorization responses on the network.

Adım Adım Çözüm

1
Analyze the security requirement and threat vector described in the scenario.
The goal is to prevent credential sniffing and unauthorized command execution by choosing a management protocol that encrypts all administrative payload traffic.
Administrative sessions across untrusted networks are vulnerable to packet capture attacks if management traffic or command payloads are sent in cleartext or only partially encrypted.
2
Compare transport protocols and encryption behavior between TACACS+ and RADIUS.
TACACS+ uses TCP port 49 and encrypts the full body of every packet. RADIUS uses UDP (ports 1812/1813) and only encrypts the password in the access-request packet.
Full payload encryption ensures that username, password, authorization attributes, and executed CLI commands remain confidential during transmission.
3
Identify the correct protocol matching all criteria.
TACACS+ is the correct choice because it encrypts the entire payload and runs over TCP.
Only TACACS+ meets the requirement of full packet body encryption and detailed command authorization control.

Anahtar Kavram

Mitigating Administrative Sniffing Threats via TACACS+ Full Payload Encryption
Tahmini Süre:1m 15s
Soru 1899Soru

An enterprise needs to grant external consultants secure access to web-based internal applications from their personal, unmanaged laptops. The security policy strictly forbids requiring local administrative rights or installing persistent client software on the end-user endpoints. Which VPN deployment model best satisfies these operational constraints?

Cevabı ve açıklamayı göster

Cevap: Clientless SSL/TLS VPN accessed through a native web browser

Cevap

Clientless SSL/TLS VPN accessed through a native web browser
Clientless SSL/TLS VPN allows users to securely connect to web-based internal network resources using only a standard web browser. Because the browser handles the SSL/TLS session, no administrative privileges or specialized client applications are required on the host device.

Adım Adım Çözüm

1
Analyze the endpoint software and permission requirements
The scenario dictates no local admin rights and no persistent software installation on end-user devices.
Personal unmanaged endpoints cannot run managed client software installations.
2
Evaluate VPN deployment models against endpoint constraints
Clientless SSL VPN uses standard HTTPS browser connections, requiring no client installation.
Browser-based TLS sessions encapsulate application data without needing specialized local drivers or software.
3
Differentiate from Site-to-Site and Client-based IPsec alternatives
IPsec site-to-site connects gateways; IPsec remote access requires software installation.
Only Clientless SSL VPN meets both the application scope (web-based) and device policy constraints.

Anahtar Kavram

Clientless SSL VPN vs Client-based Remote Access VPN Architecture
Soru 1900Soru

A network administrator configures a Cisco IOS router interface with the `ip helper-address 10.1.1.50` command to support clients on subnets without a local DHCP server. Which two actions does the router perform upon receiving a DHCPDISCOVER broadcast message from a client host on that interface? (Select two.)

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

Cevabı ve açıklamayı göster

Cevap: The router converts the broadcast destination IP address (255.255.255.255255.255.255.255) into a unicast IP address matching the helper address (10.1.1.5010.1.1.50).; The router inserts the IP address of the receiving client-facing interface into the `giaddr` (Gateway IP Address) field of the DHCP message body.

Cevap

The router converts the destination broadcast address to the unicast address of the DHCP server (10.1.1.50) and populates the `giaddr` field with the IP address of the receiving interface.
When a Cisco router acts as a DHCP relay agent, it intercepts client DHCPDISCOVER broadcast messages on the ingress interface configured with `ip helper-address`. It modifies the packet by changing the destination IP from broadcast (255.255.255.255255.255.255.255) to the unicast IP of the DHCP server. Additionally, it inserts the IP address of the receiving ingress interface into the `giaddr` field of the DHCP payload so the server knows which subnet scope to assign an address from.

Adım Adım Çözüm

1
Analyze incoming packet type
Client sends a broadcast DHCPDISCOVER packet to destination IP 255.255.255.255255.255.255.255 and destination UDP port 67.
DHCP clients do not initially have an IP address or knowledge of the network architecture.
2
Process packet with DHCP Relay Agent logic
The router intercepts the broadcast on the interface where `ip helper-address 10.1.1.50` is configured.
The `ip helper-address` command tells the router to forward UDP port 67/68 broadcasts as unicast traffic.
3
Modify DHCP header payload and IP header
The router sets the `giaddr` field to its own receiving interface IP address and changes the packet destination IP to 10.1.1.5010.1.1.50.
The server relies on `giaddr` to identify the correct client IP pool, and unicast routing to deliver the packet across intermediate subnets.

Anahtar Kavram

DHCP Relay Agent Operation and Header Modification
ÖncekiSayfa 95 / 100Sonraki
Tüm alıştırma soruları — Cisco CCNA | Examkin