Tüm alıştırma soruları

1987 soru

Soru 1801Soru

Which of the following Quality of Service (QoS) mechanisms and header fields correctly match their corresponding binary/decimal representations or operational behaviors? Match each QoS term on the left with its correct description on the right.

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

Öğeler

Expedited Forwarding (EF) PHB
Assured Forwarding 31 (AF31) PHB
IEEE 802.1Q Class of Service (CoS)
Traffic Policing Mechanism

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Expedited Forwarding (EF) maps to DSCP 46 (1011102101110_2) for low-latency traffic. Assured Forwarding 31 (AF31) maps to DSCP 26 (0110102011010_2) representing Class 3 with low drop probability. IEEE 802.1Q CoS maps to the 3-bit PCP field in the Layer 2 Ethernet tag. Traffic Policing maps to rate-limiting that drops or remarks traffic without queuing delay.
Each QoS term accurately matches its technical bit value or functional mechanism: Expedited Forwarding (EF) is DSCP 46 (1011102101110_2), Assured Forwarding AF31 is DSCP 26 (0110102011010_2), IEEE 802.1Q CoS uses the 3-bit PCP field, and Traffic Policing limits bandwidth by dropping or remarking excess traffic without buffering.

Adım Adım Çözüm

1
Analyze Expedited Forwarding (EF) DSCP bit structure
EF uses DSCP binary 1011102101110_2, which converts to decimal 4646. It is designed for strict low-latency priority queuing.
EF is a single standardized Per-Hop Behavior for real-time traffic.
2
Calculate Assured Forwarding (AF31) DSCP decimal value
For AFxy, Class x=3x=3 yields binary 011011, Drop precedence y=1y=1 yields binary 0101, followed by trailing 00. This forms 0110102=26011010_2 = 26.
AF class and drop precedence bits directly map to their DiffServ field values.
3
Identify Layer 2 classification header location and field size
Layer 2 CoS relies on the 33-bit Priority Code Point (PCP) field within the IEEE 802.1Q VLAN header tag.
Ethernet frames lack IP TOS headers, so priority is encoded inside the 802.1Q tag.
4
Differentiate Traffic Policing mechanics from Traffic Shaping
Policing compares incoming packet rates against CIR and instantly drops or remarks out-of-profile traffic without buffering.
Shaping buffers excess traffic to smooth bursts, whereas policing acts immediately without introducing latency.

Anahtar Kavram

QoS Per-Hop Behaviors, Classification, Marking, Queuing, and Traffic Shaping/Policing
Soru 1802Soru

A network administrator is conducting a logging audit on a Cisco IOS router to ensure accurate event classification. Arrange the following syslog event descriptions in order from the LOWEST numerical severity level code to the HIGHEST numerical severity level code.

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

Cevabı ve açıklamayı göster

Cevap

The correct sequence from lowest numerical code (0) to highest numerical code (5) is: Emergency (%SYS-0), Alert (%ENVIRO-1), Error (%LINK-3), and Notification (%SYS-5).
Cisco IOS syslog uses standardized numerical severity codes from 0 to 7: 0-Emergency, 1-Alert, 2-Critical, 3-Error, 4-Warning, 5-Notification, 6-Informational, and 7-Debugging. Arranging the given events from lowest numerical code to highest numerical code places Emergency (%SYS-0, code 0) first, followed by Alert (%ENVIRO-1, code 1), Error (%LINK-3, code 3), and Notification (%SYS-5, code 5).

Adım Adım Çözüm

1
Identify the numerical severity level code associated with each Cisco IOS syslog event type
Emergency = 0, Alert = 1, Error = 3, Notification = 5.
Cisco IOS syslog severity levels range numerically from 0 (Emergency) through 7 (Debugging).
2
Sequence the identified items in ascending order based on their numerical codes
0 (%SYS-0) < 1 (%ENVIRO-1) < 3 (%LINK-3) < 5 (%SYS-5).
The prompt requires ordering from lowest numerical value to highest numerical value.

Anahtar Kavram

Cisco IOS Syslog Severity Levels and Numerical Hierarchy
Soru 1803Soru

A network administrator at an enterprise branch office is troubleshooting an unsynchronized NTP client on a Cisco router named Branch-R1. The router has IP reachability to an authoritative internal time server at IP address 10.50.1.1010.50.1.10, but security firewalls along the transit path strictly enforce access rules that permit management services only if they originate from Branch-R1's dedicated Loopback0 interface (10.255.1.110.255.1.1). Currently, NTP packets generated by the router are dropped by the firewall because they use the egress physical interface IP address as their source. Which global configuration command must be configured on Branch-R1 to force all outgoing NTP traffic to originate from the specified loopback interface?

Cevabı ve açıklamayı göster

Cevap: ntp source Loopback0

Cevap

The command 'ntp source Loopback0' forces the router to use the IP address of interface Loopback0 as the source IP address in all outgoing NTP packets.
The correct option specifies 'ntp source Loopback0'. In Cisco IOS, outgoing NTP packets by default derive their source IP address from the outbound interface used to reach the destination. When security appliances require management traffic to originate from a consistent logical interface (such as a loopback interface), the global configuration command 'ntp source <interface>' forces the router to place that interface's IP address into the source field of all generated NTP packets.

Adım Adım Çözüm

1
Identify the operational requirement for NTP traffic
NTP packets must be sourced from Loopback0 (10.255.1.110.255.1.1) so they match firewall security rules.
By default, Cisco IOS uses the IP address of the egress interface facing the destination server as the packet source address.
2
Select the correct Cisco IOS CLI command to specify the NTP source interface
The global configuration command 'ntp source Loopback0' instructs the NTP process to always use Loopback0's IP address.
Configuring 'ntp source <interface>' guarantees consistent sourcing regardless of which physical interface forwards the traffic.

Anahtar Kavram

NTP Source Interface Configuration
Soru 1804Soru

A network administrator enables port security on a switch access port using the command switchport port-security mac-address sticky. Devices connect to the port, and their MAC addresses are dynamically added to the switch configuration. However, after a planned reload of the switch, the port loses all learned MAC addresses and fails to forward traffic for previously connected hosts. What is the primary cause of this issue?

Cevabı ve açıklamayı göster

Cevap: The administrator failed to save the running configuration to the startup configuration after the sticky MAC addresses were learned.

Cevap

The administrator failed to save the running configuration to the startup configuration after the sticky MAC addresses were learned.
When `switchport port-security mac-address sticky` is configured, dynamically learned MAC addresses are converted into static-like entries in the active `running-config`. Because `running-config` resides in volatile RAM, these learned MAC address lines are lost during a reboot unless saved to NVRAM (`startup-config`) using `copy running-config startup-config`.

Adım Adım Çözüm

1
Analyze how sticky MAC learning operates in Cisco IOS port security.
When sticky MAC learning is enabled, dynamically learned MAC addresses are immediately placed into the running configuration (`running-config`) as static entries.
This avoids having to manually type static MAC addresses while securing the port.
2
Evaluate the persistence of running configuration entries across switch reboots.
Entries in `running-config` reside in volatile memory and are lost upon a reboot unless explicitly copied to `startup-config`.
To maintain learned sticky MAC addresses permanently across device reloads, the network administrator must execute `copy running-config startup-config` or `write memory`.

Anahtar Kavram

Port Security Sticky MAC Address Persistence
Tahmini Süre:45s
Soru 1805Soru

Match each Simple Network Management Protocol (SNMP) operational element or security configuration on the left with its corresponding defining characteristic or transport mechanism on the right.

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

Öğeler

SNMP Trap
SNMP Inform
SNMP GetNext
SNMPv3 authPriv

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

SNMP Trap matches the unacknowledged notification sent to UDP 162; SNMP Inform matches the reliable notification requiring confirmation sent to UDP 162; SNMP GetNext matches the request to traverse MIB entries sequentially via UDP 161; SNMPv3 authPriv matches the security level providing authentication and encryption.
SNMP Traps are unacknowledged alerts sent to UDP port 162. SNMP Informs are reliable alerts sent to UDP port 162 that mandate confirmation. SNMP GetNext requests allow walking MIB structures sequentially using UDP port 161. SNMPv3 authPriv adds both authentication hashing and encryption privacy.

Adım Adım Çözüm

1
Differentiate SNMP notification types based on acknowledgment mechanisms
Traps are unacknowledged best-effort notifications. Informs are application-layer acknowledged notifications that retransmit if no response is received.
Informs add reliability over UDP by requiring an explicit response from the SNMP receiver.
2
Identify polling operations and transport ports
GetNext queries are initiated by the manager to pull the subsequent OID in a MIB tree over agent listening port UDP 161.
SNMP managers query agents using port 161, whereas agents send notifications to manager port 162.
3
Evaluate SNMPv3 security levels
authPriv combines packet hashing for identity verification with data encryption for confidentiality.
SNMPv3 defines three levels: noAuthNoPriv (no auth/crypto), authNoPriv (auth without crypto), and authPriv (both auth and crypto).

Anahtar Kavram

SNMP operations, message types, transport ports, and SNMPv3 security models.
Soru 1806Soru

A network administrator configures the command `ip ospf network point-to-point` on a GigabitEthernet interface of a Cisco router connected to a switch segment with another router. Previously, the interface operated using default OSPFv2 interface parameters for Ethernet interfaces. Which two operational changes occur on this interface as a result of this configuration change? (Select two.)

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

Cevabı ve açıklamayı göster

Cevap: OSPF halts the election of Designated Router (DR) and Backup Designated Router (BDR) roles on the interface.; Routers on the segment stop sending and listening to packets on the AllDRouters multicast address (224.0.0.6).

Cevap

Configuring an Ethernet interface as an OSPF point-to-point network type stops the DR/BDR election process on that interface and disables the use of the AllDRouters multicast destination address (224.0.0.6).
When an Ethernet interface is converted to an OSPF point-to-point network type, OSPF bypasses the DR and BDR election phase completely because the topology assumes a direct link between two routers. Because no DR or BDR exists, non-DR routers no longer send packets to the 224.0.0.6 (AllDRouters) multicast address; all OSPF control packets are sent exclusively to 224.0.0.5 (AllSPFRouters).

Adım Adım Çözüm

1
Identify the default OSPF network type for Ethernet interfaces.
Ethernet interfaces defaults to the Broadcast multiaccess network type, which elects a DR and BDR and uses multicast address 224.0.0.6 for non-DR routers to communicate with the DR/BDR.
Broadcast multiaccess networks reduce adjacencies on shared segments via DR/BDR routers.
2
Analyze the impact of changing the network type to Point-to-Point using `ip ospf network point-to-point`.
Point-to-point network types assume exactly two nodes on the link. Consequently, OSPF DR/BDR election is suppressed, and communication over 224.0.0.6 is disabled since DR/BDR roles are absent.
Point-to-point links form direct peer adjacencies without intermediate designated routers.
3
Evaluate timer and neighbor discovery settings for Point-to-Point interfaces.
Hello/Dead timers remain at 10/40 seconds, and dynamic neighbor discovery using AllSPFRouters (224.0.0.5) is maintained.
Timers only change to 30/120 seconds on Non-Broadcast Multi-Access (NBMA) and Point-to-Multipoint network types.

Anahtar Kavram

OSPF Network Types (Broadcast vs. Point-to-Point) and DR/BDR Operational Differences
Soru 1807Soru

During an emergency security assessment following a network breach attempt, a security analyst discovers that an edge router running legacy software contains an unpatched flaw allowing unauthorized remote privilege escalation. Although no functional malicious script has yet been executed against the system, the security team deploys an Access Control List (ACL) to restrict incoming management traffic. However, the ACL misconfiguration inadvertently causes a network outage because the engineer relied on traffic filtering without accounting for default drop behavior, while another technician misanalyzed the attack severity due to numeric logging inversions. Which term precisely classifies the unpatched software flaw itself, and what fundamental security principle explains the unintended blocking of legitimate traffic by the mitigation ACL?

Cevabı ve açıklamayı göster

Cevap: The unpatched software flaw is a vulnerability, and the traffic block was caused by the ACL implicit deny clause dropping unlisted traffic.

Cevap

The unpatched software flaw is classified as a vulnerability, and the traffic disruption occurred due to the ACL implicit deny clause dropping all unlisted legitimate packets.
In enterprise cybersecurity framework definitions, a vulnerability is any weakness in software, hardware, or procedural controls that could be leveraged by a threat actor. The software flaw described in the scenario is an unpatched vulnerability. When applying Cisco IPv4 Access Control Lists (ACLs) for security mitigation, administrators must account for the implicit deny clause located at the end of every ACL sequence. If explicit permit statements are not added for essential traffic, the router automatically drops all packets that do not match prior permit rules.

Adım Adım Çözüm

1
Classify the security terminology component for the unpatched software flaw.
Identify that a bug, weak configuration, or system defect that could potentially be exploited represents a vulnerability.
Vulnerabilities are internal weaknesses in system design, implementation, or software code.
2
Analyze the operational behavior of Access Control Lists (ACLs) during mitigation.
Recognize that Cisco IOS ACLs feature an unseen mandatory rule at the end of the rule set: 'deny ip any any'.
If explicit permit entries for required operational traffic (such as routing protocols or legitimate management networks) are omitted prior to applying the filter, the implicit deny drops that traffic.
3
Evaluate the distractors against security definitions and error taxonomy mappings.
Confirm that an exploit is the payload/code executing the attack, a threat is the potential danger source, and Syslog/AAA misinterpretations do not explain the structural ACL filtering behavior.
Ensures precise alignment between core CCNA security terminology and traffic filtering mechanics.

Anahtar Kavram

Vulnerability vs. Threat vs. Exploit Distinction and ACL Implicit Deny Rule Mechanics
Soru 1808Soru

A security assessment of an enterprise edge router reveals that while SSH access is enabled, administrative commands executed by engineers are logged under a single shared local account without individual accountability or granular command restriction. To eliminate this security risk and enforce centralized command-level authorization and per-user accounting, which solution should the network administrator implement?

Cevabı ve açıklamayı göster

Cevap: Implement a TACACS+ server architecture and enable AAA command authorization and accounting on the router.

Cevap

Implement a TACACS+ server architecture and enable AAA command authorization and accounting on the router.
The option advocating TACACS+ server integration with AAA command authorization and accounting is correct because TACACS+ decouples authentication, authorization, and accounting. This architecture enables administrators to validate each CLI command against a central server policy before execution and maintains individual user accounting records.

Adım Adım Çözüm

1
Analyze the security vulnerability and administrative requirement.
The requirement calls for per-user administrative accountability and granular control over individual EXEC commands executed on the router CLI.
Shared local accounts prevent attributing specific actions to individual network administrators.
2
Compare administrative security protocols (TACACS+ vs RADIUS).
TACACS+ (Cisco proprietary/open standard) separates AAA services and controls individual CLI commands via command authorization, whereas RADIUS combines authentication and authorization and cannot control individual commands.
TACACS+ encrypts the entire packet payload and allows the AAA server to permit or deny specific commands executed by administrators.
3
Select the correct mitigation mechanism.
Deploying TACACS+ with AAA command authorization and accounting fulfills both granular control and per-user command logging.
This directly resolves the identified security gap according to Cisco security best practices.

Anahtar Kavram

Device Access Mitigation using AAA and TACACS+ vs RADIUS
Soru 1809Soru

A network administrator needs to prevent unauthorized individuals from physically entering a wiring closet containing core network switches and patch panels. Which mechanism directly serves as a physical access control for this facility?

Cevabı ve açıklamayı göster

Cevap: Smart card proximity reader paired with an electronic door latch

Cevap

The smart card proximity reader paired with an electronic door latch is a physical access control mechanism.
Physical access controls are measures taken to prevent unauthorized personnel from gaining physical proximity or entry to network infrastructure. A smart card proximity reader paired with an electronic door latch physically blocks unauthorized individuals from entering the wiring closet.

Adım Adım Çözüm

1
Identify the security domain required by the scenario
The requirement focuses on preventing physical entrance to a telecommunications room containing physical hardware.
Physical access control measures guard physical assets, facilities, and hardware against unauthorized human entry.
2
Differentiate physical controls from technical/logical controls
Smart card door readers, biometric scanners, physical locks, mantraps, and security guards are physical access controls. ACLs, TACACS+, and port security are technical network controls.
Technical controls govern logical data pathways and device authentication, while physical controls restrict tangible movement and physical interaction.

Anahtar Kavram

Physical Access Control vs. Technical Access Control
Soru 1810Soru

A network device attempts to forward an IP packet toward the target address 172.31.25.140. The routing table contains four matching prefix entries:

- 172.31.25.0/24 [1/0] via 10.1.1.1
- 172.31.25.128/26 [90/307200] via 10.2.2.2
- 172.31.25.128/27 [110/40] via 10.3.3.3
- 172.31.25.136/29 [120/4] via 10.4.4.4

Which next-hop IP address will the device select to forward this packet?

Cevabı ve açıklamayı göster

Cevap: 10.4.4.4

Cevap

The router forwards the packet to next-hop address 10.4.4.4 because 172.31.25.136/29 has the longest matching prefix length (/29).
When a router receives a packet, it compares the destination IP address against all entries in its routing table and selects the route with the longest matching prefix length (the most specific subnet mask). Here, 172.31.25.136/29 matches 172.31.25.140 with a 29-bit prefix length, which is longer than /27, /26, or /24. The next-hop associated with this route is 10.4.4.4.

Adım Adım Çözüm

1
Determine which routing entries match destination IP 172.31.25.140.
All four routes (172.31.25.0/24, 172.31.25.128/26, 172.31.25.128/27, and 172.31.25.136/29) contain the IP address 172.31.25.140 within their range.
For 172.31.25.136/29, the usable IP host range spans 172.31.25.137 through 172.31.25.142, which includes 172.31.25.140.
2
Compare the prefix lengths of all matching routes.
The prefix lengths are /24, /26, /27, and /29.
Routers use the Longest Prefix Match (LPM) rule to select the forwarding route regardless of Administrative Distance.
3
Select the route with the highest prefix length (most specific mask).
/29 is the longest prefix match, corresponding to route 172.31.25.136/29 via 10.4.4.4.
Administrative distance is only evaluated when comparing identical prefixes from different routing sources. For different prefix lengths, LPM always governs.

Anahtar Kavram

Longest Prefix Match (LPM)
Soru 1811Soru

A network engineer is auditing telemetry configurations across enterprise routers and switches. Security policy mandates that management telemetry must ensure packet privacy (encryption) and data integrity. Additionally, firewall rules must be verified to allow SNMP traffic between managed devices and the central Network Management System (NMS). Which two statements accurately describe the SNMP operational mechanics and security settings required to satisfy these requirements? (Select two.)

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

Cevabı ve açıklamayı göster

Cevap: The authPriv security model in SNMPv3 must be enabled to provide both message authentication and packet payload encryption.; The Network Management System receives unsolicited SNMP Traps and Informs on UDP port 162.

Cevap

The statements confirming that SNMPv3 authPriv provides both authentication and encryption, and that the NMS receives Traps and Informs on UDP port 162, are correct.
The authPriv security level in SNMPv3 delivers both authentication and encryption for management traffic. Unsolicited notifications (Traps and Informs) generated by managed agents are sent to UDP port 162 on the management station.

Adım Adım Çözüm

1
Analyze SNMPv3 security levels to meet policy mandates.
SNMPv3 defines three security levels: noAuthNoPriv (no authentication, no encryption), authNoPriv (authentication via SHA/MD5, no encryption), and authPriv (authentication via SHA/MD5 plus encryption via AES/DES). To meet privacy/encryption mandates, authPriv is required.
The security policy explicitly mandates payload privacy (encryption) along with authentication.
2
Verify SNMP transport port assignments for agent polling versus notification traffic.
Managed SNMP agents listen on UDP port 161 to receive request PDUs (GetRequest, GetNextRequest, SetRequest). The NMS listens on UDP port 162 to receive unsolicited notification PDUs (Traps and Informs).
Correct firewall rules require distinguishing port 161 for agent polling from port 162 for NMS notification reception.
3
Compare Trap and Inform operational mechanics.
Traps are unacknowledged UDP messages, whereas Informs require the receiving NMS to acknowledge receipt by returning a Response PDU.
Confusing Informs with unacknowledged notifications reverses their reliability mechanisms.

Anahtar Kavram

SNMP Security Levels and UDP Port Mechanics
Soru 1812Soru

A network engineer needs to manage egress bandwidth on a WAN interface. The goal is to smooth out traffic bursts by holding excess packets in a buffer for later transmission rather than immediately dropping them when traffic exceeds the configured rate limit. Which Quality of Service (QoS) mechanism should the engineer configure?

Cevabı ve açıklamayı göster

Cevap: Traffic shaping

Cevap

Traffic shaping is the QoS mechanism that buffers excess packets in a queue to smooth out traffic bursts and enforce a maximum output rate.
Traffic shaping smooths out traffic rate spikes by queuing (buffering) excess packets and scheduling them for delayed transmission. This prevents packet loss during brief traffic spikes.

Adım Adım Çözüm

1
Identify the key requirement described in the scenario
The requirement is to smooth traffic bursts by holding extra packets in memory (buffering) for later transmission instead of dropping them.
Distinguishing between buffering excess packets versus dropping them is the fundamental operational difference between traffic shaping and traffic policing.
2
Select the appropriate QoS tool that implements packet buffering for rate control
Traffic shaping uses queues to buffer bursty traffic, smoothing the output rate profile to match the configured bandwidth ceiling.
Traffic shaping prevents packet drops during transient spikes at the cost of minor queuing latency.

Anahtar Kavram

Traffic Shaping vs. Traffic Policing Mechanics
Soru 1813Soru

An organization is implementing a remote access Virtual Private Network (VPN) solution to enable teleworkers to connect securely to corporate resources across the public internet. Which two operational characteristics are unique to remote access VPNs compared to site-to-site VPNs? (Select two.)

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

Cevabı ve açıklamayı göster

Cevap: Connections are initiated dynamically on demand by individual user endpoints using VPN client software or a web browser.; User identity authentication is required using credentials such as multi-factor authentication (MFA), passwords, or digital certificates.

Cevap

Remote access VPNs are characterized by dynamic, on-demand connections initiated from individual user devices via client software or web browsers, and user-level identity authentication using credentials like MFA or digital certificates.
The correct characteristics of a remote access VPN are dynamic on-demand connection establishment from user endpoints (via software clients or browsers) and user identity authentication through mechanisms such as MFA or user credentials. Remote access VPNs cater to roaming mobile workers rather than permanent infrastructure links.

Adım Adım Çözüm

1
Analyze the connection topology for remote access VPNs versus site-to-site VPNs.
Remote access VPNs connect individual user endpoints dynamically to an enterprise gateway on demand, whereas site-to-site VPNs connect fixed network infrastructure gateways continuously.
Understanding endpoint mobility and connection initiation differentiates remote access from site-to-site topologies.
2
Identify the authentication mechanism used in remote access VPN deployments.
Remote access VPNs enforce user-level identity authentication via usernames/passwords, MFA, or user certificates.
Site-to-site VPNs authenticate gateways (peer routers/firewalls), whereas remote access VPNs authenticate individual users attempting remote entry.

Anahtar Kavram

Distinction between Remote Access VPNs and Site-to-Site VPNs
Soru 1814Soru

A network administrator needs to configure static Network Address Translation (NAT) on a Cisco IOS router to map an internal server at private IPv4 address 10.20.30.510.20.30.5 to an external public IPv4 address 203.0.113.25203.0.113.25. Which global configuration command creates this static one-to-one inside source mapping?

Cevabı ve açıklamayı göster

Cevap: ip nat inside source static 10.20.30.5 203.0.113.25

Cevap

ip nat inside source static 10.20.30.5 203.0.113.25
The command 'ip nat inside source static 10.20.30.5 203.0.113.25' correctly defines a one-to-one static mapping between an internal private IPv4 host address (inside local) and an external public IPv4 address (inside global).

Adım Adım Çözüm

1
Identify the static NAT configuration command syntax in Cisco IOS.
The standard syntax is 'ip nat inside source static <local-ip> <global-ip>'.
Static NAT requires defining the parameter 'static' along with the inside local IP address followed by the inside global IP address.
2
Substitute the specified IP addresses into the syntax template.
Inside local IP is 10.20.30.5 and inside global IP is 203.0.113.25, giving 'ip nat inside source static 10.20.30.5 203.0.113.25'.
This establishes a permanent static translation entry between the internal host address and the public IPv4 address.

Anahtar Kavram

Static Inside Source NAT Configuration
Soru 1815Soru

An enterprise network administrator is configuring a remote access VPN client profile on a security appliance to support mobile remote workers. The administrator enables split-tunneling to optimize bandwidth usage on the corporate Internet connection. Which two statements accurately describe the operational characteristics of this split-tunneling configuration?

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

Cevabı ve açıklamayı göster

Cevap: Only traffic destined for explicitly defined corporate IP address ranges is encrypted and routed through the secure VPN tunnel.; Unencrypted public Internet traffic from the client host routes directly out of the local network interface to its local ISP.

Cevap

The correct operational characteristics of split-tunneling are that only traffic destined for specified corporate subnets is encrypted and routed through the VPN tunnel, while general Internet-bound traffic from the remote client routes directly out of its local Internet connection.
Split-tunneling separates corporate-bound IP traffic from public Internet traffic on a remote client. When split-tunneling is enabled on the VPN gateway, an access control list specifies which enterprise subnets must be sent through the encrypted IPsec or SSL tunnel. Any client traffic not matching these enterprise subnets bypasses the tunnel and routes directly out of the client's local physical interface to the Internet, conserving corporate WAN bandwidth.

Adım Adım Çözüm

1
Analyze the core distinction between full-tunneling and split-tunneling in remote access VPN deployments.
Full-tunneling forces 100% of client traffic through the headend appliance, whereas split-tunneling segregates client traffic based on destination IP address.
Understanding traffic path selection is essential for evaluating bandwidth consumption and network security policies.
2
Evaluate corporate subnet routing behavior under split-tunneling.
Traffic directed toward internal enterprise networks matches the VPN split-tunnel access list and gets encapsulated into the encrypted IPsec or SSL tunnel.
This maintains secure access to internal private resources.
3
Evaluate Internet traffic behavior under split-tunneling.
Traffic addressed to public Internet destinations bypasses the VPN interface and is routed out the remote endpoint's local network interface directly to the local ISP.
This prevents unnecessary WAN bandwidth consumption and overhead at the corporate edge security gateway.

Anahtar Kavram

Split-Tunneling in Remote Access VPNs
Soru 1816Soru

An enterprise is configuring a remote access VPN solution for mobile employees using Cisco AnyConnect client software. The network engineering team wants to implement split-tunneling to conserve corporate Internet bandwidth while maintaining secure connectivity to internal resources. Which two statements describe the operational behavior of split-tunneling in this remote access VPN deployment? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Traffic destined for specified internal corporate IP subnets is encrypted and routed through the secure VPN tunnel.; Unencrypted Internet-bound traffic is routed directly out of the user's local network interface without traversing the corporate network.

Cevap

Split-tunneling encrypts and routes traffic destined for specified corporate subnets through the VPN tunnel, while allowing non-corporate Internet traffic to route directly via the endpoint's local interface.
In a remote access VPN deployment with split-tunneling configured, the VPN client receives a list of internal networks from the gateway. Traffic matching these corporate destination IP addresses is encrypted and encapsulated into the VPN tunnel. Traffic going to all other destinations (such as public websites) bypasses the tunnel and is sent directly out of the local network interface, saving corporate Internet bandwidth.

Adım Adım Çözüm

1
Identify the primary operational mechanism of Remote Access VPN split-tunneling.
Split-tunneling separates traffic into two categories based on destination IP matching an access list or network scope defined on the gateway.
Only traffic destined for corporate subnets requires tunnel encapsulation.
2
Determine how corporate-bound and Internet-bound traffic are handled.
Corporate traffic is encrypted and sent through the VPN tunnel, while Internet-bound traffic bypasses the tunnel directly through the remote user's local gateway.
This reduces WAN latency and bandwidth consumption at the central corporate VPN gateway.

Anahtar Kavram

Remote Access VPN Split-Tunneling vs Full-Tunneling
Soru 1817Soru

During an ongoing incident response investigation, a network analyst detects that an unauthorized host on an internal VLAN is transmitting spoofed Neighbor Discovery (ND) Router Advertisement messages to redirect host traffic through itself before forwarding it to the actual default gateway. Concurrently, the IT security department is seeking a control to prevent unauthorized account access resulting from compromised or stolen user passwords used across corporate endpoints. Which combination correctly identifies the active network attack vector and the most effective mitigation control against the password compromise risk?

Cevabı ve açıklamayı göster

Cevap: Attack Vector: Man-in-the-Middle (MitM) attack; Mitigation Control: Multi-Factor Authentication (MFA)

Cevap

Attack Vector: Man-in-the-Middle (MitM) attack; Mitigation Control: Multi-Factor Authentication (MFA)
The correct answer accurately pairs the observed attack vector with its corresponding mitigation control. Transmitting unauthorized protocol messages to place a machine between legitimate communicating hosts is the textbook definition of a Man-in-the-Middle (MitM) attack. To protect against compromised user credentials, Multi-Factor Authentication (MFA) is the standard control, as it requires an additional proof of identity beyond the knowledge of a password.

Adım Adım Çözüm

1
Analyze the active network incident description to classify the attack vector.
The attacker sends spoofed protocol messages (IPv6 Neighbor Discovery Router Advertisements) to position their rogue host as an inline intermediary between clients and the default gateway. Intercepting and inspecting or altering traffic in transit defines a Man-in-the-Middle (MitM) attack.
Correctly identifying threat vectors requires matching observable network behavior against standard threat definitions.
2
Evaluate the secondary security requirement regarding stolen password reuse.
When user passwords are compromised, single-factor authentication fails. Multi-Factor Authentication (MFA) adds a second required factor (e.g., authenticator app push, security key), rendering stolen static passwords insufficient for unauthorized access.
Matching security controls to specific vulnerabilities ensures effective defense-in-depth planning.
3
Synthesize findings to choose the correct pair.
The combination of Man-in-the-Middle (MitM) attack for the active traffic redirection scenario and Multi-Factor Authentication (MFA) for credential risk protection is the accurate pairing.
Only one option correctly pairs both identified security elements.

Anahtar Kavram

Threat Vector Classification and Security Mitigation Selection
Soru 1818Soru

A network engineer configures an IPv4 static route on a Cisco router using a next-hop IP address: ip route 192.168.50.0 255.255.255.0 10.0.12.2. When the router receives an inbound packet destined for host 192.168.50.25, in what order does the Cisco IOS routing engine process the packet to determine the forwarding path? Arrange the operational steps in the correct chronological sequence from first to last.

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

Cevabı ve açıklamayı göster

Cevap

The correct sequence begins with the packet arrival, followed by performing the initial longest prefix match lookup in the routing table, identifying the next-hop IP address, executing a recursive lookup for that next-hop IP to determine the egress interface, and finally encapsulating and forwarding the packet out the resolved exit interface.
When a static route specifies a next-hop IPv4 address rather than a directly attached exit interface, Cisco IOS must complete a two-step lookup process. First, the router matches the destination IP to the static route entry. Second, it performs a recursive lookup on the next-hop IP address to identify the egress interface. Finally, ARP resolution completes Layer 2 encapsulation, and the frame is transmitted.

Adım Adım Çözüm

1
Packet Ingress
The router receives an IPv4 packet addressed to 192.168.50.25 on an ingress interface.
Routing lookup begins only after a packet arrives at the router requiring Layer 3 forwarding.
2
Initial Route Lookup
The routing table identifies the static route 192.168.50.0/24 as the longest prefix match.
Cisco IOS compares the destination IPv4 address against all known routes in the routing table.
3
Next-Hop Extraction
The router identifies 10.0.12.2 as the next-hop address for destination network 192.168.50.0/24.
Static routes configured with an IP address direct traffic to an intermediate next-hop router.
4
Recursive Lookup
The router searches the routing table for 10.0.12.2 and resolves the associated connected exit interface (e.g., GigabitEthernet0/0).
A next-hop static route does not explicitly specify the physical exit interface, requiring a secondary lookup to resolve the route to a connected interface.
5
Frame Encapsulation and Forwarding
The packet is rewritten with Layer 2 headers and forwarded out the resolved exit interface.
Once the egress interface and next-hop MAC address (via ARP) are known, the router can transmit the frame.

Anahtar Kavram

Recursive Routing Table Lookup for IPv4 Static Routes
Soru 1819Soru

A network security architect is reviewing threat vectors and host-level network attacks targeting a corporate access layer switch. The audit identifies that an attacker connected to an untrusted port successfully performed ARP poisoning to intercept traffic between local hosts and launched a rogue DHCP server to distribute malicious default gateway addresses to clients. Which two mitigation controls directly address these specific security vulnerabilities? (Select two.)

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

Cevabı ve açıklamayı göster

Cevap: Enable Dynamic ARP Inspection on untrusted access ports to validate ARP request and reply packets against the DHCP snooping binding database.; Implement DHCP Snooping across access switches and configure uplink interfaces connected to authorized network servers as trusted ports.

Cevap

Enabling Dynamic ARP Inspection on untrusted access ports and implementing DHCP Snooping with trusted uplink interfaces directly mitigate ARP poisoning and rogue DHCP server attacks.
Dynamic ARP Inspection prevents ARP spoofing by intercepting ARP traffic on untrusted interfaces and verifying IP-to-MAC bindings against the DHCP snooping database. DHCP Snooping prevents unauthorized hosts from acting as DHCP servers by dropping server messages on untrusted ports while allowing legitimate leases through trusted ports.

Adım Adım Çözüm

1
Analyze the reported attack vectors.
Identified two primary Layer 2 threats: ARP poisoning (Man-in-the-Middle) and rogue DHCP server insertion.
Selection of security controls must correspond specifically to validating address resolution and filtering unauthorized IP address assignment.
2
Evaluate controls for ARP poisoning mitigation.
Dynamic ARP Inspection (DAI) inspects incoming ARP packets on untrusted ports and matches their source IP/MAC address against legitimate entries in the DHCP snooping binding database.
Invalid ARP packets with spoofed IP-to-MAC bindings are dropped, blocking the Man-in-the-Middle vector.
3
Evaluate controls for rogue DHCP server mitigation.
DHCP Snooping filters unauthorized DHCP server traffic by defining trusted ports for legitimate servers and untrusted ports for end-user switchports.
DHCP server messages such as OFFER or ACK originating from untrusted ports are discarded.

Anahtar Kavram

Layer 2 Threat Mitigation Mechanisms: Dynamic ARP Inspection (DAI) and DHCP Snooping
Soru 1820Soru

A network administrator is reviewing the output of the 'show ip route' command on a Cisco IOS router. Match each routing table component or source code on the left with its correct functional definition on the right.

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

Öğeler

Administrative Distance
Metric
Prefix Length
Source Code 'D'

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Administrative Distance matches the trustworthiness of the route source; Metric matches the protocol-specific path cost; Prefix Length matches the subnet mask bit count used for longest prefix matching; Source Code 'D' matches routes dynamically learned via EIGRP.
Each field in a Cisco IPv4 routing table entry provides distinct information: Administrative Distance prioritizes between routing protocols; Metric determines the optimal path within a single protocol; Prefix Length defines mask length for longest prefix match logic; and the code 'D' identifies routes learned via EIGRP.

Adım Adım Çözüm

1
Identify the definition of Administrative Distance.
Administrative Distance rates the trustworthiness of routing protocol sources.
It allows the router to choose the preferred route source when the same network prefix is advertised by different routing sources.
2
Identify the role of Metric in a routing table entry.
Metric represents path cost calculated by an individual routing protocol.
When multiple candidate paths to a destination exist within the same protocol, the route with the lowest metric value is selected.
3
Determine the function of Prefix Length.
Prefix length denotes the subnet mask bit count and determines match specificity.
Routers evaluate prefix lengths to perform longest prefix matching as the primary criteria during packet lookup.
4
Identify the Cisco IOS routing table source code indicator 'D'.
'D' corresponds to EIGRP-learned routes.
Cisco utilizes 'D' for EIGRP (referencing its DUAL algorithm) because 'E' was historically assigned to EGP.

Anahtar Kavram

Routing Table Components and Operational Roles
ÖncekiSayfa 91 / 100Sonraki
Tüm alıştırma soruları — Cisco CCNA | Examkin