Tüm alıştırma soruları

1987 soru

Soru 1921Soru

Match each port security violation mode on the left with its corresponding switch behavior when an unauthorized MAC address is detected on an interface.

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

Öğeler

Protect Mode
Restrict Mode
Shutdown Mode

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Protect mode matches silent packet dropping without counters; Restrict mode matches packet dropping with violation counter increments and Syslog notifications; Shutdown mode matches error-disabling the port and generating notifications.
Each violation mode dictates how Cisco IOS handles unauthorized frames on a secured port. Protect silently drops unauthorized traffic; Restrict drops unauthorized traffic while logging and counting violations; Shutdown disables the entire port by placing it into the err-disabled state.

Adım Adım Çözüm

1
Identify the behavior of Protect mode.
Protect mode drops frames from unauthorized MAC addresses without logging or updating counters.
Protect is designed for silent dropping of unauthorized frames.
2
Identify the behavior of Restrict mode.
Restrict mode drops frames from unauthorized MAC addresses while actively logging Syslog alerts and incrementing violation counters.
Restrict mode alerts administrators while leaving the interface active for authorized traffic.
3
Identify the behavior of Shutdown mode.
Shutdown mode disables the port entirely, transitioning it to the err-disabled state upon a violation.
Shutdown is the most restrictive default mode in Cisco IOS port security.

Anahtar Kavram

Port Security Violation Modes (Protect, Restrict, Shutdown)
Soru 1922Soru

A network administrator needs to back up a Cisco IOS router's running configuration to a remote FTP server at IP address 10.1.1.50 using the username 'admin' and password 'Cisco123'. Which command correctly completes this file transfer in a single step?

Cevabı ve açıklamayı göster

Cevap: copy running-config ftp://admin:[email protected]/running-config.cfg

Cevap

The command 'copy running-config ftp://admin:[email protected]/running-config.cfg' correctly backs up the running configuration using FTP with inline credentials.
The correct command follows the Cisco IOS convention 'copy source destination' and properly formats the FTP URL with inline authentication credentials as 'ftp://username:password@ip_address/filename'.

Adım Adım Çözüm

1
Identify the source and destination for the Cisco IOS copy operation.
Source is 'running-config' and destination is the remote FTP server.
Cisco IOS uses the syntax 'copy <source> <destination>'.
2
Format the FTP URL protocol string with authentication credentials.
URL string structured as 'ftp://admin:[email protected]/running-config.cfg'.
FTP requires user authentication; Cisco IOS supports inline URL authentication using the 'ftp://username:password@host/filepath' format.

Anahtar Kavram

Cisco IOS copy command syntax and FTP URL format with authentication
Soru 1923Soru

A network administrator is monitoring an HSRP deployment on router R1 and executes the `show standby brief` command, obtaining the following output:

text
Interface Grp Pri P State Active Standby Virtual IP
Gi0/1 20 110 P Active local 192.168.20.3 192.168.20.1

Router R1 is configured to track interface GigabitEthernet0/0 with a priority decrement value of 2020. Router R2 (currently the Standby router at 192.168.20.3192.168.20.3) has an HSRP priority of 100100 and has preemption enabled.

If interface GigabitEthernet0/0 on router R1 goes down, which operational change occurs on the local network segment?

Cevabı ve açıklamayı göster

Cevap: Router R1's priority drops to 9090, causing Router R2 to preempt R1 and assume the Active role for HSRP group 20.

Cevap

Router R1's priority drops to 9090, causing Router R2 to preempt R1 and assume the Active role for HSRP group 20.
When the tracked interface GigabitEthernet0/0 fails on router R1, HSRP interface tracking decrements R1's active priority by 2020, reducing it from 110110 to 9090. Standby router R2 has a priority of 100100 and preemption enabled. Because R2's priority (100100) is now higher than R1's current priority (9090), R2 preempts R1 and transitions to the Active state.

Adım Adım Çözüm

1
Calculate Router R1's updated priority following the tracked interface failure.
Initial priority (110110) minus decrement (2020) = 9090.
HSRP interface tracking reduces the local priority by the specified decrement value when the tracked interface enters a down state.
2
Compare Router R1's new priority against Router R2's priority.
Router R1 priority (9090) < Router R2 priority (100100).
Router R2 now has a higher priority than Router R1 on the HSRP segment.
3
Evaluate preemption settings on Router R2 to determine state transition.
Router R2 preempts Router R1, becoming Active, while Router R1 transitions to Standby.
Because Router R2 has preemption enabled, it immediately takes over the Active role once its priority exceeds the current Active router's priority.

Anahtar Kavram

HSRP Interface Tracking and Preemption Failover Dynamics
Tahmini Süre:1m 30s
Soru 1924Soru

A network engineer applies the following IPv4 extended named Access Control List (ACL) inbound on interface GigabitEthernet0/0 of a Cisco IOS router:

text
ip access-list extended SERVER_ACCESS
permit tcp 172.16.10.0 0.0.0.255 host 192.168.50.10 eq 443
permit tcp 172.16.10.0 0.0.0.255 host 192.168.50.10 eq 80

A workstation with IPv4 address 172.16.10.45 attempts to establish an SSH management session (TCP port 22) to the server at 192.168.50.10. Which result describes how the router processes this SSH traffic?

Cevabı ve açıklamayı göster

Cevap: The router drops the traffic because it fails to match any explicit permit entry and is caught by the implicit deny any clause at the end of the ACL.

Cevap

The router drops the traffic because it fails to match any explicit permit entry and is caught by the implicit deny any clause at the end of the ACL.
Cisco IPv4 extended ACLs process rules sequentially from top to bottom. The ACL contains explicit permit entries for TCP port 443 (HTTPS) and TCP port 80 (HTTP). SSH traffic uses TCP port 22, which does not match either line. Because Cisco IOS automatically appends an unwritten implicit deny rule (deny ip any any) to the bottom of every ACL, any packet that reaches the end of the list without matching an explicit permit rule is dropped.

Adım Adım Çözüm

1
Evaluate the packet header attributes against the ACL entry conditions.
Source IP is 172.16.10.45, destination IP is 192.168.50.10, protocol is TCP, and destination port is 22 (SSH).
ACL rule matching requires checking source IP, destination IP, L4 protocol, and destination port.
2
Perform top-down sequential processing against line 10 and line 20.
Line 10 matches TCP port 443 only. Line 20 matches TCP port 80 only. Neither line matches destination TCP port 22.
Cisco IOS ACL rules are evaluated sequentially in top-down order until a match occurs.
3
Evaluate the unlisted packet against default ACL behavior.
The packet encounters the implicit 'deny ip any any' statement at the end of the ACL and is dropped.
All Cisco IOS IPv4 standard and extended access control lists conclude with an unwritten, implicit deny all traffic statement.

Anahtar Kavram

Sequential evaluation and implicit deny behavior in Cisco IPv4 Extended ACLs
Tahmini Süre:1m 15s
Soru 1925Soru

An administrator is configuring a secondary IPv4 static route on router R1 to reach network 10.50.0.0/1610.50.0.0/16 via next-hop 192.168.2.2192.168.2.2. A primary static route to the same destination network via next-hop 192.168.1.2192.168.1.2 already exists in the active configuration with default settings. The secondary route must serve strictly as a backup and only enter the routing table if the primary path fails. Which Cisco IOS command should be configured on router R1?

Cevabı ve açıklamayı göster

Cevap: ip route 10.50.0.0 255.255.0.0 192.168.2.2 10

Cevap

The correct command is `ip route 10.50.0.0 255.255.0.0 192.168.2.2 10`.
The command configuring an administrative distance of 10 creates a floating static route. Because Cisco IOS static routes default to an administrative distance of 1, setting the backup route's distance to 10 ensures it remains inactive until the primary route fails.

Adım Adım Çözüm

1
Identify the administrative distance of the existing primary static route.
Standard static routes configured without an explicit distance parameter use a default administrative distance (AD) of 11.
Administrative distance determines route trustworthiness in the Cisco IOS routing table.
2
Determine the required administrative distance for a floating static backup route.
The backup route must have an AD strictly greater than 11 (such as 1010).
Routes with higher AD values are ignored by the routing engine until all lower-AD routes for the identical prefix become unreachable.
3
Construct the Cisco IOS static route command syntax incorporating the distance parameter.
Syntax: `ip route <prefix> <mask> <next-hop> <distance>`. Applying parameters yields `ip route 10.50.0.0 255.255.0.0 192.168.2.2 10`.
Appending an administrative distance higher than 11 creates a floating static route.

Anahtar Kavram

Floating static routes rely on configuring an Administrative Distance higher than the primary routing source so that the backup route remains dormant in the configuration until the primary route drops out of the routing table.
Tahmini Süre:1m 30s
Soru 1926Soru

A network administrator is auditing the infrastructure security measures for a newly constructed enterprise data center facility. Which two measures represent physical access controls specifically designed to protect physical hardware and prevent unauthorized physical entry? (Select two.)

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

Cevabı ve açıklamayı göster

Cevap: Implementation of a dual-door mantrap portal that requires sequential credential authentication for entry; Installation of biometric door scanners paired with electronic smart card badge readers at facility entryways

Cevap

The two correct physical access controls are the implementation of a dual-door mantrap portal with sequential credential authentication, and the installation of biometric door scanners paired with electronic smart card badge readers.
Physical access controls are mechanisms designed to guard physical spaces, facilities, and network infrastructure hardware. A dual-door mantrap portal prevents unauthorized tailgating by locking one door until the person inside is verified before opening the inner door. Biometric scanners and electronic badge readers serve as physical access controls that validate identity before permitting entry to server rooms.

Adım Adım Çözüm

1
Categorize each security measure in the options as physical, administrative, or technical.
Mantrap portals and biometric badge readers are physical controls; security training is an administrative program control; ACLs and TACACS+ are technical controls.
The question specifically asks for physical access controls that restrict physical access to facilities.
2
Select the controls that physically prevent unauthorized individuals from gaining physical access to network equipment.
Dual-door mantraps and biometric badge readers directly enforce physical perimeter security.
Physical controls rely on physical barriers, hardware devices, and mechanical or electronic entry locks to guard facilities.

Anahtar Kavram

Physical access controls involve physical barriers, biometric locks, badge readers, and mantraps to protect facilities and network hardware from unauthorized physical access.
Soru 1927Soru

A network administrator is evaluating the operational parameters and default behaviors of First Hop Redundancy Protocols (FHRP) on Cisco IOS devices. Which two statements accurately describe default differences between VRRPv2 and HSRPv1?

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

Cevabı ve açıklamayı göster

Cevap: VRRP preemption is enabled by default, whereas HSRP preemption is disabled by default.; VRRPv2 uses the destination multicast IP address 224.0.0.18, whereas HSRPv1 uses 224.0.0.2.

Cevap

VRRP preemption is enabled by default while HSRP preemption is disabled by default, and VRRPv2 utilizes destination multicast address 224.0.0.18 while HSRPv1 utilizes 224.0.0.2.
VRRPv2 operates with preemption enabled by default and sends advertisements to multicast IP address 224.0.0.18. In contrast, HSRPv1 has preemption disabled by default (requiring explicit configuration) and sends hello messages to multicast IP address 224.0.0.2.

Adım Adım Çözüm

1
Analyze preemption default settings for both protocols.
VRRP automatically enables preemption so that a router with higher priority assumes the Master role without manual CLI intervention. HSRP defaults to preemption disabled, requiring the 'standby <group> preempt' command.
Understanding protocol default behaviors is essential for predicting failover performance.
2
Analyze multicast addressing and transport mechanisms.
VRRPv2 uses multicast address 224.0.0.18 over IP protocol 112. HSRPv1 uses multicast address 224.0.0.2 over UDP port 1985.
Differentiating control plane encapsulation helps when analyzing packet captures or ACL filter requirements.
3
Evaluate IP address ownership rules.
VRRP supports IP address ownership where the virtual IP matches a router interface IP (priority 255). HSRP explicitly forbids assigning an active physical IP address as the virtual IP address.
Misinterpreting IP assignment rules causes CLI configuration errors when setting up HSRP virtual gateways.

Anahtar Kavram

HSRP and VRRP Feature and Default Parameter Comparison
Soru 1928Soru

A network administrator is migrating a gateway configuration from VRRP to HSRP Group 1 on a Cisco router. Under the previous VRRP setup, the virtual IP address was configured to match the physical IPv4 address of router R1's GigabitEthernet0/1 interface (192.168.10.1/24). The administrator attempts to enter the command `standby 1 ip 192.168.10.1` under interface GigabitEthernet0/1 on R1. What is the outcome of executing this command on Cisco IOS?

Cevabı ve açıklamayı göster

Cevap: Cisco IOS rejects the command because HSRP virtual IP addresses must be distinct from any physical IP address configured on the router interfaces.

Cevap

Cisco IOS rejects the command because HSRP virtual IP addresses must be distinct from any physical IP address configured on the router interfaces.
In Cisco IOS HSRP implementation, the virtual IP address must be an unassigned IP within the local subnet and cannot match the physical IP address of any participating router interface. Attempting to set the HSRP virtual IP to the router interface's physical IP results in an immediate CLI configuration error.

Adım Adım Çözüm

1
Analyze the operational differences regarding Virtual IP selection between VRRP and HSRP.
VRRP supports assigning an interface's physical IP address as the virtual IP (making that router the IP address owner with priority 255). HSRP does not support this and mandates an unused IP address within the subnet.
Understanding protocol specification constraints prevents configuration errors during migration.
2
Evaluate the Cisco IOS command behavior when attempting to assign a physical interface IP to an HSRP group.
Cisco IOS returns a configuration error stating that the virtual IP cannot be the same as the interface IP address.
HSRP requires a distinct virtual IP address to function correctly across active and standby nodes.

Anahtar Kavram

HSRP Virtual IP Addressing Rules vs VRRP IP Address Ownership
Soru 1929Soru

A network administrator needs to configure an extended IPv4 ACL (ACL 101) on a Cisco router to control access from the User Subnet (10.2.2.0/2410.2.2.0/24) to the Server Subnet (10.1.1.0/2410.1.1.0/24) according to the following security requirements:

1. Host 10.2.2.5010.2.2.50 must be permitted SSH access (TCP port 22) to Server 10.1.1.1010.1.1.10.
2. Host 10.2.2.5010.2.2.50 must be denied all other IP traffic to any destination on the Server Subnet (10.1.1.0/2410.1.1.0/24).
3. All other hosts on the User Subnet (10.2.2.0/2410.2.2.0/24) must be permitted HTTP access (TCP port 80) to Server 10.1.1.2010.1.1.20.
4. All other traffic from the User Subnet to the Server Subnet must be explicitly denied.

Arrange the given ACL statements in the correct top-down evaluation order (from first line processed to last line processed) to successfully enforce these security requirements.

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

Cevabı ve açıklamayı göster

Cevap

The correct order from top to bottom is: 1) access-list 101 permit tcp host 10.2.2.50 host 10.1.1.10 eq 22, 2) access-list 101 deny ip host 10.2.2.50 10.1.1.0 0.0.0.255, 3) access-list 101 permit tcp 10.2.2.0 0.0.0.255 host 10.1.1.20 eq 80, 4) access-list 101 deny ip 10.2.2.0 0.0.0.255 10.1.1.0 0.0.0.255.
Cisco IOS ACLs evaluate packets sequentially from top to bottom until a match is found. To properly isolate host 10.2.2.50 while permitting host-specific SSH and allowing general subnet HTTP access, host-specific rules must be placed above subnet-level rules. Placing the host SSH permit first guarantees SSH traffic passes. Placing the host subnet deny second ensures host 10.2.2.50 cannot reach any other server or port (including HTTP on 10.1.1.20). Placing the subnet HTTP permit third allows remaining hosts on 10.2.2.0/24 to reach the web server. Finally, placing the general subnet deny fourth explicitly blocks all other inter-subnet traffic.

Adım Adım Çözüm

1
Identify the most specific requirement for host 10.2.2.50 SSH access.
Place 'access-list 101 permit tcp host 10.2.2.50 host 10.1.1.10 eq 22' first so SSH traffic from host 10.2.2.50 is matched and allowed immediately.
Cisco IOS processes ACL entries sequentially from top to bottom; the first matching rule dictates the packet disposition.
2
Enforce the specific restriction on host 10.2.2.50 for the rest of the target subnet.
Place 'access-list 101 deny ip host 10.2.2.50 10.1.1.0 0.0.0.255' second.
If the general HTTP permit statement for 10.2.2.0/24 was placed above this line, host 10.2.2.50 would be allowed HTTP access to Server 10.1.1.20, breaking Requirement 2.
3
Permit HTTP traffic for all remaining hosts in the subnet.
Place 'access-list 101 permit tcp 10.2.2.0 0.0.0.255 host 10.1.1.20 eq 80' third.
Having blocked host 10.2.2.50 in step 2, this rule applies to all other 10.2.2.0/24 hosts trying to access web services on 10.1.1.20.
4
Catch all remaining traffic between the two subnets.
Place 'access-list 101 deny ip 10.2.2.0 0.0.0.255 10.1.1.0 0.0.0.255' fourth.
This explicitly drops any other IP traffic from 10.2.2.0/24 to 10.1.1.0/24.

Anahtar Kavram

Sequential Top-Down ACL Processing and Rule Shadowing
Soru 1930Soru

A network administrator enables Dynamic ARP Inspection (DAI) on VLAN 20 of a Cisco Catalyst switch. DHCP Snooping is enabled on VLAN 20, but several legacy printers on untrusted access ports use static IPv4 addresses and are not recorded in the DHCP snooping binding database. Consequently, DAI drops legitimate ARP packets originating from these printers. Which two configuration actions must the administrator perform to allow ARP traffic from the static hosts while maintaining DAI inspection on those untrusted ports? (Select two.)

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

Cevabı ve açıklamayı göster

Cevap: Define an ARP Access Control List (ARP ACL) using `arp access-list` that maps the static host IP addresses to their corresponding MAC addresses.; Apply the ARP ACL to VLAN 20 using the global configuration command `ip arp inspection filter <acl-name> vlan 20`.

Cevap

To support static hosts with Dynamic ARP Inspection (DAI) without disabling security on untrusted ports, the administrator must create an ARP ACL containing static IP-to-MAC mappings and apply that ARP ACL to the VLAN using the `ip arp inspection filter` command.
Dynamic ARP Inspection relies on the DHCP snooping binding database to validate ARP packets on untrusted ports. When hosts are configured with static IP addresses, their bindings are absent from the DHCP snooping table. The standard Cisco IOS solution is to create an ARP ACL containing static IP-to-MAC permits and apply it to the VLAN using `ip arp inspection filter <acl-name> vlan <vlan-id>`.

Adım Adım Çözüm

1
Identify the cause of packet drops under Dynamic ARP Inspection
DAI inspects incoming ARP requests and responses on untrusted ports against the DHCP snooping binding database. Statically addressed hosts lack entries in this database, causing DAI to mark their ARP packets as invalid.
DAI default behavior drops all ARP traffic on untrusted interfaces if the IP-to-MAC mapping is not verified.
2
Create an ARP Access Control List (ARP ACL)
Define an ARP ACL using `arp access-list <acl-name>` and permit ARP traffic matching the static IP address and MAC address of each static host.
ARP ACLs provide a mechanism to manually define valid static bindings for endpoints that bypass DHCP.
3
Filter DAI traffic on the target VLAN using the ARP ACL
Apply the ACL using `ip arp inspection filter <acl-name> vlan 20`.
This command instructs DAI to check the ARP ACL first when validating ARP frames on untrusted interfaces within VLAN 20.

Anahtar Kavram

Dynamic ARP Inspection (DAI) static host support via ARP ACLs
Soru 1931Soru

A network administrator needs to configure and verify a floating static route for destination network 172.16.20.0/24172.16.20.0/24 via next-hop IP 10.2.2.210.2.2.2 on a Cisco router. The primary path to this network is currently learned dynamically via EIGRP with an Administrative Distance of 9090. Place the configuration and verification steps 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 sequential process is: Enter global configuration mode -> Configure the floating static route with AD 100 -> Verify the routing table to ensure the route is inactive during normal operation -> Shut down the primary interface to trigger failover -> Re-verify the routing table to confirm the floating static route becomes active.
The correct order follows standard Cisco IOS workflow: configuring global settings first, adding the floating static route with an AD higher than EIGRP (90), verifying that the route is inactive during normal operation, simulating a link failure by shutting down the primary interface, and finally verifying that the floating static route takes over as the active path in the routing table.

Adım Adım Çözüm

1
Enter global configuration mode
The CLI prompt changes to global configuration mode (`Router(config)#`).
Static routing commands (`ip route`) can only be entered in global configuration mode.
2
Configure the backup static route
The floating static route with Administrative Distance 100 is written to the running configuration.
Configuring an Administrative Distance of 100 ensures the static route has a higher distance than EIGRP (AD 90), keeping it out of the routing table during normal operation.
3
Verify initial routing table state
The output of `show ip route` lists only the EIGRP route for 172.16.20.0/24172.16.20.0/24.
Cisco IOS selects routes with the lowest Administrative Distance for the Routing Information Base (RIB); thus, the floating static route must remain hidden while EIGRP is healthy.
4
Simulate primary path failure
The primary interface enters the administratively down state, invalidating and removing the primary EIGRP route from the RIB.
Interface shutdown removes dependent routes, prompting the router to evaluate alternative routes for the destination.
5
Verify post-failover routing table state
The output of `show ip route` shows 172.16.20.0/24172.16.20.0/24 reachable via static route next-hop 10.2.2.210.2.2.2.
With the primary route removed, the floating static route becomes the best remaining path and is installed into the active routing table.

Anahtar Kavram

Floating static route configuration, administrative distance precedence, and failover verification.
Tahmini Süre:1m 30s
Soru 1932Soru

A network administrator is evaluating local password storage mechanisms on a Cisco IOS XE device to align with security hardening standards. Arrange the following Cisco IOS password storage types in order from WEAKEST security protection to STRONGEST security protection.

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

Cevabı ve açıklamayı göster

Cevap

The correct order from weakest to strongest security protection is: Type 0 (Plaintext), Type 7 (Reversible Vigenère Cipher), Type 5 (MD5 Hash), Type 8 (PBKDF2 with SHA-256), and Type 9 (scrypt Hash).
The correct sequence ranks Cisco IOS password protection from weakest to strongest based on cryptographic robustness: Type 0 is plain text, Type 7 uses a reversible obfuscation cipher, Type 5 uses standard MD5 hashing, Type 8 uses PBKDF2 with SHA-256 key stretching, and Type 9 uses memory-hard scrypt hashing.

Adım Adım Çözüm

1
Identify unencrypted storage types
Type 0 is the weakest because it stores passwords in plain cleartext.
Cleartext offers zero protection against unauthorized configuration viewing.
2
Identify weak obfuscation mechanisms
Type 7 is slightly above Type 0 because it uses a weak, trivially reversible cipher generated by 'service password-encryption'.
Type 7 is simple obfuscation intended to prevent shoulder surfing, not secure password hashing.
3
Identify standard cryptographic one-way hashes
Type 5 uses a one-way MD5 hash.
MD5 is non-reversible, making it significantly stronger than Type 7, though more vulnerable to brute-force attacks compared to modern algorithms.
4
Compare modern key derivation functions
Type 8 uses PBKDF2 with SHA-256, while Type 9 uses the scrypt algorithm.
PBKDF2 (Type 8) provides strong key stretching, but scrypt (Type 9) adds memory hardness, making Type 9 the strongest against specialized hardware brute-force attacks.

Anahtar Kavram

Cisco IOS local password storage algorithm security hierarchy (Type 0 < Type 7 < Type 5 < Type 8 < Type 9).
Tahmini Süre:1m 30s
Soru 1933Soru

A network engineer is hardening an enterprise access layer switch using Cisco Layer 2 security features. Match each specific Layer 2 security feature configuration component on the left with its exact operational behavior or validation requirement on the right.

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

Öğeler

Dynamic ARP Inspection (DAI) on an untrusted access port
DHCP Snooping Option 82 handling on an untrusted port
Port Security sticky MAC address learning (`switchport port-security mac-address sticky`)
DHCP Snooping Rate Limiting (`ip dhcp snooping limit rate`)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Dynamic ARP Inspection matches validating ARP sender MAC/IP pairings against the DHCP snooping binding table. DHCP Snooping Option 82 handling on untrusted ports matches dropping incoming DHCP packets containing non-zero GIADDR or Option 82 payloads by default. Port Security sticky MAC learning matches adding dynamically learned MACs to running-config requiring an explicit copy to startup-config for boot persistence. DHCP Snooping rate limiting matches tracking incoming DHCP packet frequency and err-disabling interfaces that exceed configured thresholds.
Each feature is correctly matched to its functional behavior: Dynamic ARP Inspection validates ingress ARP packets against the DHCP snooping database; DHCP Snooping drops untrusted packets containing Option 82 or non-zero GIADDR fields; Sticky Port Security writes learned MACs to running-config (requiring manual saving for persistence); and DHCP Snooping rate limiting places interfaces in an err-disabled state upon threshold violations.

Adım Adım Çözüm

1
Analyze Dynamic ARP Inspection (DAI) operation on untrusted interfaces.
DAI inspects all incoming ARP packets on untrusted ports and compares the sender MAC address and sender IP address against valid entries in the DHCP snooping binding database.
This prevents man-in-the-middle ARP spoofing attacks across Layer 2 VLANs.
2
Analyze DHCP Snooping Option 82 untrusted port enforcement.
DHCP snooping drops incoming packets on untrusted interfaces if the packet contains Option 82 information or a non-zero GIADDR value.
Untrusted access ports are intended for end hosts, which should not generate relay agent information fields.
3
Analyze sticky MAC address persistence in Port Security.
Configuring sticky MAC learning adds dynamically discovered MAC addresses into the active running-configuration.
Because these MAC addresses reside only in running-config, administrators must save the configuration (`copy running-config startup-config`) to make them permanent across switch reboots.
4
Analyze DHCP Snooping Rate Limiting behavior.
Enforcing `ip dhcp snooping limit rate` places an untrusted interface in the `err-disabled` state if incoming DHCP frames exceed the configured rate limit.
This protects switch CPU resources and DHCP infrastructure against denial-of-service starvation attacks.

Anahtar Kavram

Layer 2 Security Feature Operations and Verification (DAI, DHCP Snooping, Port Security)
Soru 1934Soru

A network security administrator configures mutual certificate-based authentication (EAP-TLS) for remote access VPN endpoints. During initial validation testing, client endpoints successfully verify the identity of the VPN gateway. However, the VPN gateway fails to authenticate the client certificates. Detailed inspection reveals that the gateway is configured for mandatory certificate status checking using the Online Certificate Status Protocol (OCSP), but outbound HTTP requests sent to the Uniform Resource Identifier (URI) listed in the Authority Information Access (AIA) extension are being dropped by a perimeter security policy. Which statement correctly identifies the cause of the failure and the necessary resolution?

Cevabı ve açıklamayı göster

Cevap: The gateway is unable to verify client certificate revocation status because egress filtering blocks OCSP traffic on port 80; allowing outbound HTTP to the OCSP responder resolves the authentication failure.

Cevap

The gateway is unable to verify client certificate revocation status because egress filtering blocks OCSP traffic on port 80; allowing outbound HTTP to the OCSP responder resolves the authentication failure.
The correct answer identifies that OCSP queries rely on HTTP (TCP port 80) to reach the responder address indicated in the client certificate's AIA extension. When an egress firewall drops outbound HTTP connections to that IP/domain, the security gateway cannot verify whether the client certificate has been revoked, causing the authentication process to fail under strict revocation policy settings.

Adım Adım Çözüm

1
Analyze the certificate revocation checking mechanism
OCSP is used for real-time certificate status queries sent to the responder URI specified in the certificate's AIA extension.
When strict revocation checking is enabled, failing to contact the OCSP responder causes the validating party to treat the certificate as untrusted/unverified.
2
Identify the transport protocol used by OCSP
OCSP requests and responses travel over standard HTTP (TCP port 80).
If an egress security policy or ACL blocks outbound HTTP requests to the target OCSP server, status checks fail.
3
Determine the necessary remediation step
Permit outbound TCP port 80 traffic destined for the OCSP responder address.
Restoring reachability allows the gateway to receive valid OCSP responses and complete EAP-TLS client authentication.

Anahtar Kavram

Digital Certificates and Revocation Checking (OCSP vs CRL)
Soru 1935Soru

A network operations team switches from per-device manual command-line configuration to centralized template-based automation. Which primary operational advantage does this shift deliver?

Cevabı ve açıklamayı göster

Cevap: It reduces configuration drift by enforcing consistent and repeatable changes across all managed devices.

Cevap

It reduces configuration drift by enforcing consistent and repeatable changes across all managed devices.
Transitioning from manual CLI configurations to centralized template-based automation allows engineers to define standardized configuration states once and deploy them uniformly. This eliminates human error and minimizes configuration drift across the network footprint.

Adım Adım Çözüm

1
Analyze the operational impact of moving from manual CLI configurations to centralized template-based automation.
Manual CLI changes often lead to inconsistent settings across devices over time.
Human errors during individual device access introduce configuration drift.
2
Identify the primary core operational benefit provided by centralized templates.
Centralized templates guarantee that defined configurations are pushed identically across target nodes.
Standardizing change execution ensures compliance and reduces configuration drift.

Anahtar Kavram

Impact of Network Automation on Operational Consistency and Configuration Drift
Soru 1936Soru

Place the HSRP (Hot Standby Router Protocol) router states in the correct chronological order as a newly configured router transitions from initial startup to becoming the active gateway.

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

Cevabı ve açıklamayı göster

Cevap

The correct sequence of HSRP states from startup to active gateway is Initial, Listen, Speak, Standby, and Active.
During standard HSRP election and initialization, a router follows a strict 5-state progression: Initial (interface up), Listen (receiving peer Hello packets), Speak (actively sending Hello packets to compete in election), Standby (elected as primary backup), and Active (forwarding virtual IP traffic).

Adım Adım Çözüm

1
Identify the initial configuration state upon interface activation.
Initial state is the first phase.
The protocol begins in Initial state when HSRP is first enabled or when an interface changes state to UP.
2
Determine the passive monitoring state prior to active participation.
Listen state comes second.
The router must first listen for existing active/standby Hello packets to determine if a gateway is already elected.
3
Identify when the router starts transmitting Hello messages.
Speak state comes third.
Once the router gathers initial group information, it enters Speak state to transmit Hello messages and enter the election.
4
Identify the election outcome role prior to active status.
Standby state comes fourth.
If the router has a higher priority than other non-active routers, it becomes the Standby router candidate.
5
Identify the final operational state responsible for packet forwarding.
Active state is the final phase.
The router transitions to Active state to process traffic sent to the virtual MAC and virtual IP address.

Anahtar Kavram

HSRP router state transitions and convergence lifecycle
Soru 1937Soru

A network administrator needs to record and audit the specific CLI commands executed by engineers during their active management sessions on enterprise routers. Which component of the AAA framework provides this record-keeping functionality?

Cevabı ve açıklamayı göster

Cevap: Accounting

Cevap

Accounting is the AAA component responsible for tracking user activity and maintaining audit logs of executed commands.
Accounting is designed to track user activity and resource consumption. In device administration, command accounting specifically records each command entered by an administrator into an audit log on the TACACS+ server.

Adım Adım Çözüm

1
Analyze the functional requirement described in the scenario.
The requirement specifies logging and auditing actions taken by users after gaining system access.
The AAA framework divides security management into three distinct operational pillars: Authentication, Authorization, and Accounting.
2
Map the requirement to the corresponding AAA service.
Accounting tracks network resource utilization and logs user administrative commands and session metrics.
Authentication asks 'Who are you?', Authorization asks 'What are you allowed to do?', and Accounting asks 'What did you actually do?'.

Anahtar Kavram

AAA Framework Core Functions
Soru 1938Soru

A network administrator is evaluating network file transfer protocols to manage router software images and configuration backups across an enterprise network. Which TWO statements correctly describe operational differences between TFTP and FTP in a Cisco IOS environment?

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

Cevabı ve açıklamayı göster

Cevap: TFTP operates over UDP port 69 without user authentication, whereas FTP uses TCP ports 20 and 21 and supports username/password authentication.; FTP leverages TCP windowing and sequencing for reliable transfer over variable-latency links, whereas TFTP uses a lock-step stop-and-wait acknowledgment mechanism over UDP.

Cevap

The two correct statements are that TFTP operates over UDP port 69 without authentication while FTP uses TCP ports 20 and 21 with authentication support, and that FTP leverages TCP windowing for reliable transfer while TFTP relies on a stop-and-wait acknowledgment mechanism over UDP.
The statements highlighting that TFTP operates unauthenticated over UDP port 69 while FTP uses TCP ports 20/21 with authentication, and that FTP employs TCP windowing while TFTP employs lock-step stop-and-wait acknowledgments, correctly identify the fundamental transport, security, and flow control differences between the two protocols.

Adım Adım Çözüm

1
Analyze transport layer protocol and port usage for both TFTP and FTP
TFTP uses UDP port 69. FTP uses TCP port 21 for control connection setup and TCP port 20 for active data connection transfer.
Understanding transport protocol assignment is fundamental to network file management.
2
Evaluate authentication mechanisms for both protocols
TFTP lacks authentication features completely. FTP requires or explicitly negotiates user credentials (username and password).
Security and access control capabilities differentiate basic file transfer protocols from authenticated management protocols.
3
Evaluate data delivery mechanics and windowing behavior
TFTP uses a lock-step (stop-and-wait) block acknowledgment scheme over UDP. FTP uses TCP flow control and windowing for dynamic bandwidth utilization.
Flow control mechanics dictate protocol performance and reliability characteristics over WAN connections.

Anahtar Kavram

Operational differences between TFTP (UDP 69, unauthenticated, lock-step) and FTP (TCP 20/21, authenticated, windowed flow control) in network management.
Soru 1939Soru

A network engineer configures an inbound IPv4 extended Access Control List (ACL) on GigabitEthernet0/1 to filter traffic entering a corporate network segment:

text
ip access-list extended FILTER_WEB
permit tcp 172.16.10.0 0.0.0.255 host 192.168.1.50 eq 80
permit tcp 172.16.10.0 0.0.0.255 host 192.168.1.50 eq 443

A workstation at 172.16.10.15172.16.10.15 attempts to send ICMP echo request packets (ping) to the server at 192.168.1.50192.168.1.50. What happens to these ICMP packets when processed by the router interface?

Cevabı ve açıklamayı göster

Cevap: The ICMP packets are dropped because they do not match any explicit permit statement, causing them to hit the implicit deny all clause.

Cevap

The ICMP packets are dropped because they do not match any explicit permit statement, causing them to hit the implicit deny all clause.
Extended IPv4 ACL rules are processed top-down until a match is found. The ACL in the scenario only permits TCP traffic destined for port 80 or port 443. Because ICMP echo requests use the ICMP protocol (not TCP), they do not match either explicit permit statement. Unmatched traffic falls through to the implicit `deny ip any any` entry present at the end of every Cisco ACL, resulting in the packet being dropped.

Adım Adım Çözüm

1
Evaluate the protocol and traffic parameters of the incoming packet.
The packet is an ICMP echo request originating from 172.16.10.15172.16.10.15 destined for 192.168.1.50192.168.1.50.
Extended ACLs filter based on source IP, destination IP, protocol type, and port numbers.
2
Compare the packet against the explicit ACL rules sequentially from top to bottom.
Line 1 specifies TCP port 80 (HTTP) and Line 2 specifies TCP port 443 (HTTPS). Neither rule matches ICMP traffic.
ICMP is a Layer 3 protocol (IP protocol number 1) and does not use TCP (IP protocol number 6) transport headers.
3
Determine the outcome when no explicit permit rule is matched.
The packet reaches the unwritten end of the access list, matching the default `deny ip any any` rule.
Every Cisco IOS IPv4 Access Control List ends with an invisible implicit deny statement that drops all unmatched traffic.

Anahtar Kavram

ACL Sequential Evaluation and the Implicit Deny Any Clause
Soru 1940Soru

In enterprise Cisco switch implementations, Layer 2 security controls govern frame processing, metadata insertion, and hardware lookup behaviors. Match each Layer 2 security operation or feature context to its exact functional mechanism.

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

Öğeler

Port Security Restrict Violation Mode
Dynamic ARP Inspection (DAI) Payload Validation
DHCP Snooping Option 82 Insertion
DAI ARP Access Control List (ARP ACL) Inspection Filter

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Port Security Restrict Violation Mode matches with dropping frames, incrementing violation counters, and logging syslogs without err-disabling the port. Dynamic ARP Inspection Payload Validation matches with intercepting ARP packets on untrusted ports and inspecting payload sender IP/MAC pairs against bindings. DHCP Snooping Option 82 Insertion matches with appending relay agent circuit/remote ID metadata to client requests on untrusted ports. DAI ARP ACL Inspection Filter matches with evaluating static IP-to-MAC rules prior to checking the DHCP snooping database.
Each feature pair matches its fundamental operational behavior. Port Security restrict mode drops frames and logs alerts without placing the port in err-disabled status. DAI inspects inner ARP payload fields on untrusted ports against the binding database. DHCP Snooping Option 82 appends relay agent sub-options to requests arriving on untrusted ports. DAI ARP ACL filters allow manually configured static IP-to-MAC checks before querying dynamic DHCP bindings.

Adım Adım Çözüm

1
Analyze Port Security Restrict Violation Mode
Identify that restrict mode drops unauthorized frames, increments the violation counter, and generates SNMP/syslog alerts while maintaining interface link state up/up.
Differentiates restrict mode from protect mode (which drops silently without logging) and shutdown mode (which disables the interface).
2
Analyze Dynamic ARP Inspection (DAI) Payload Validation
Identify that DAI inspects the inner ARP payload fields (sender MAC and sender IP) on untrusted ports against the DHCP snooping binding database.
Prevents ARP poisoning attacks by verifying MAC-to-IP resolution integrity at Layer 2.
3
Analyze DHCP Snooping Option 82 Insertion
Identify that Option 82 appends circuit ID and remote ID sub-options to DHCP requests on untrusted ports before forwarding toward trusted DHCP servers.
Enables upstream DHCP servers to apply localized IP allocation policies based on switch port location.
4
Analyze DAI ARP ACL Inspection Filter
Identify that ARP ACLs provide static mapping validation override prior to falling back to the dynamic DHCP snooping binding database lookup.
Required to prevent DAI from dropping valid ARP packets generated by static IP assigned hosts that lack DHCP lease entries.

Anahtar Kavram

Operational mechanics of Layer 2 security features including Port Security violation handling, DHCP Snooping Option 82 insertion, DAI payload validation, and ARP ACL filtering.
ÖncekiSayfa 97 / 100Sonraki
Tüm alıştırma soruları — Cisco CCNA | Examkin