All practice questions

1987 questions

Question 641Question

A network manager is implementing physical security controls at a branch office data room following an incident where an unauthorized visitor entered by closely following an authorized employee through a single access door. Which physical control specifically mitigates tailgating by utilizing a dual-door vestibule where the second door opens only after the first door closes and authentication is validated?

Show answer & explanation

Answer: A mantrap system with interlocked access doors

Answer

A mantrap system with interlocked access doors is the physical control specifically designed to prevent tailgating.
A mantrap provides a physical enclosure with two interlocked doors. Entering requires passing through the first door, waiting for it to fully close, and authenticating before the second door unlocks, making tailgating physically impossible.

Step-by-Step Solution

1
Analyze the physical security vulnerability described in the scenario.
The issue is tailgating (piggybacking), where an unauthorized individual physically follows an authorized individual through a single doorway.
Single door electronic access control systems cannot physically prevent a second person from walking through an open door behind an authorized user.
2
Evaluate the mechanism of a mantrap (physical vestibule).
A mantrap consists of two sets of interlocking doors. The first door opens with credentials, allows one person inside the small enclosed area, closes, and locks before the second door permits entry.
This physical structure ensures only one validated person is admitted at a time, effectively stopping tailgating attempts.

Key Concept

Physical Access Control Measures and Mantrap Mechanisms
Question 642Question

A company needs to provide temporary access to internal web application portals for third-party contractors working from unmanaged personal computers. The security policy mandates that no client software or persistent VPN configuration profiles can be pre-installed on these contractor endpoints. Which VPN technology best satisfies this operational requirement?

Show answer & explanation

Answer: Clientless SSL VPN

Answer

Clientless SSL VPN provides browser-based secure access to internal resources without requiring client software installation on remote endpoints.
Clientless SSL VPN creates a secure session through a standard web browser using HTTPS/TLS. It allows remote users on unmanaged computers to access internal enterprise web applications without installing software applications or VPN adapter drivers on their machines.

Step-by-Step Solution

1
Analyze the endpoint software requirements
The scenario requires zero endpoint client installation or pre-configuration on contractor devices.
Unmanaged personal devices cannot be enforced to carry persistent corporate VPN client software.
2
Compare remote access deployment options
Clientless SSL VPN utilizes native web browsers (using HTTPS/TLS) to authenticate users and proxy internal web application access.
Web browsers act as the client interface, eliminating the need for dedicated software installation.

Key Concept

Clientless SSL VPN vs Client-based Remote Access and Site-to-Site VPNs
Question 643Question

A newly connected host workstation requires an IPv4 address assignment. Place the steps of the standard DHCP address allocation and validation sequence in the correct chronological order from beginning to end.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence is: 1) Host broadcasts DHCPDISCOVER, 2) Server transmits DHCPOFFER, 3) Host broadcasts DHCPREQUEST, 4) Server returns DHCPACK, 5) Host issues Gratuitous ARP for duplicate IP detection.
The DHCP lease process follows the classic DORA sequence (Discover, Offer, Request, Acknowledge). First, the client broadcasts a DHCPDISCOVER message. The server responds with a DHCPOFFER message containing network configuration details. Next, the client broadcasts a DHCPREQUEST message to accept the offer. The server completes the sequence by sending a DHCPACK message. Finally, before binding the address to its logical interface, the host broadcasts a Gratuitous ARP to perform duplicate address detection on the local link segment.

Step-by-Step Solution

1
Initiate discovery
The host sends a DHCPDISCOVER broadcast to search for reachable DHCP servers.
The client has no configured IP address and must discover servers on the local subnet.
2
Server offer
The DHCP server responds with a DHCPOFFER message proposing IP parameters.
The server selects an available address from its pool for the client.
3
Client request
The client broadcasts a DHCPREQUEST accepting the offer.
Broadcasting the request notifies the selected server of acceptance while letting other servers release any reserved addresses.
4
Server acknowledgment
The server responds with a unicast DHCPACK confirming the lease.
DHCPACK completes the 4-step DORA process and confirms configuration parameters.
5
Conflict detection
The client transmits a Gratuitous ARP request for the leased IP address.
Checking the local link via ARP ensures no other host is actively using the assigned IP address.

Key Concept

DHCP DORA Process and Duplicate Address Detection (DAD)
Question 644Question

A network security architect is enforcing local authentication policies on a Cisco IOS XE router. The organization requires local user accounts to utilize scrypt key derivation hashing algorithms and mandates that remote management lines authenticate users against the local device database. Which TWO actions or configuration commands meet these requirements?

Select all that apply

Show answer & explanation

Answer: Configure 'username admin algorithm-type scrypt secret P@ssw0rd123!' in global configuration mode.; Execute 'login local' under the line vty configuration mode.

Answer

Configuring 'username admin algorithm-type scrypt secret P@ssw0rd123!' creates a local user account secured with Type 9 scrypt password hashing, and applying 'login local' under line vty forces virtual terminal connections to authenticate against the local user database.
Specifying 'username admin algorithm-type scrypt secret' creates a Type 9 hashed credential using the scrypt password-based key derivation function, satisfying the requirement for strong non-reversible local hashing. Applying 'login local' under VTY line configuration directs the router to authenticate VTY remote connections using the device's local user database.

Step-by-Step Solution

1
Identify the hashing algorithm requirement for local user database credentials.
Cisco IOS XE supports Type 9 password hashing using the scrypt algorithm by specifying 'username <name> algorithm-type scrypt secret <password>'.
Using the 'secret' command with 'algorithm-type scrypt' ensures passwords are stored using a strong, non-reversible key derivation function rather than legacy MD5 or reversible Type 7 algorithms.
2
Identify the requirement to authenticate remote management sessions against local accounts.
Entering line vty configuration mode and applying 'login local' enables local database lookup.
Without 'login local', VTY lines may default to password-only authentication ('login') or no authentication at all.

Key Concept

Cisco IOS Local Password Hashing Types and VTY Local Authentication
Question 645Question

A network administrator is hardening remote management access on a factory-reset Cisco IOS router currently running default factory settings. In what sequential order must the administrator execute the CLI commands to properly configure SSHv2 access using local user authentication?

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence starts with setting a non-default hostname, followed by defining the IP domain name, generating the RSA key pair (modulus >= 768 bits), creating a local user account, and finally configuring the VTY lines with local authentication and SSH transport binding.
Configuring SSHv2 on Cisco IOS requires satisfying dependencies in order: first, set a non-default hostname; second, assign an IP domain name (forming the FQDN); third, generate the RSA key pair with at least 768 bits; fourth, create local user credentials; and fifth, configure VTY lines with `login local` and `transport input ssh`.

Step-by-Step Solution

1
Set a non-default hostname using `hostname RTR-CORE-02`.
The router host prompt updates from `Router` to `RTR-CORE-02`.
RSA key generation requires a host name other than the default 'Router'.
2
Configure the IP domain name using `ip domain-name enterprise.net`.
The FQDN `RTR-CORE-02.enterprise.net` is established.
Cisco IOS constructs the key pair name using the format `<hostname>.<domain_name>`.
3
Generate the RSA key pair using `crypto key generate rsa modulus 2048`.
The RSA keys are generated and SSH is enabled on the device.
A modulus size of 768 bits or higher enables SSHv2.
4
Create a user entry using `username secadmin secret P@ssw0rd123`.
A user credential entry is placed into the local running configuration.
SSH requires an authentication database for remote login verification.
5
Enter VTY configuration (`line vty 0 4`) and execute `login local` and `transport input ssh`.
VTY lines require local credentials and accept only SSH traffic.
This completes the binding between remote access lines, cryptographic transport, and authentication.

Key Concept

SSHv2 Configuration Prerequisites and Execution Order
Estimated Time:1m 30s
Question 646Question

An organization is upgrading the physical security posture of its main data center facility. The security team must implement controls that explicitly address tailgating mitigation at perimeter entryways and provide environmental surveillance inside server rooms. Which two physical security controls directly fulfill these specific requirements? (Select two.)

Select all that apply

Show answer & explanation

Answer: Mantrap portal with interlocking doors; Closed-circuit television (CCTV) cameras

Answer

The correct controls are implementing a mantrap portal with interlocking doors to prevent tailgating and installing closed-circuit television (CCTV) cameras for interior server room surveillance.
A mantrap portal uses two interlocking doors to ensure only one authenticated person enters at a time, directly preventing tailgating. Closed-circuit television (CCTV) cameras provide visual monitoring and surveillance inside secure areas such as server rooms.

Step-by-Step Solution

1
Analyze the scenario requirements
Identified two specific physical security needs: mitigating tailgating at perimeter entryways and establishing environmental/visual surveillance inside server rooms.
Physical access control measures fall into categories like physical barriers, biometrics, surveillance, and access logging.
2
Evaluate perimeter control options for tailgating mitigation
The mantrap portal enforces single-person entry via interlocked doors, directly preventing tailgating.
Mantraps force a verification cycle before allowing entry through the secondary interior door.
3
Evaluate surveillance options for server room interiors
CCTV camera deployment provides active visual monitoring and recorded audit trails of physical movement.
Surveillance systems ensure accountability and visibility inside critical data center rooms.

Key Concept

Physical Access Controls vs. Technical/Administrative Controls
Question 647Question

A network technician configures the following named IPv4 extended Access Control List (ACL) on a Cisco IOS router to restrict access from the Sales subnet (192.168.20.0/24192.168.20.0/24) to an internal web server (10.2.2.8010.2.2.80):

`ip access-list extended RESTRICT_SALES`
` deny tcp 192.168.20.0 0.0.0.255 host 10.2.2.80 eq 80`
` permit tcp 192.168.20.0 0.0.0.255 any eq 80`
` permit tcp 192.168.20.0 0.0.0.255 any eq 443`

The ACL is applied outbound on interface GigabitEthernet0/1 facing the internal network server segment. Following application, host 192.168.20.45192.168.20.45 can no longer resolve domain names using the internal DNS server at 10.2.2.5310.2.2.53 (UDP port 53) or receive DHCP lease updates. Which statement correctly explains why this non-HTTP traffic is blocked?

Show answer & explanation

Answer: The unlisted UDP and ICMP traffic matches the implicit deny all IPv4 traffic rule appended to the end of the ACL processing sequence.

Answer

The unlisted UDP and ICMP traffic matches the implicit deny all IPv4 traffic rule appended to the end of the ACL processing sequence.
In Cisco IOS ACL processing, statements are evaluated sequentially from top to bottom. If a packet does not match any explicit permit or deny entry in the access list, it falls through to the invisible implicit deny entry at the end of the ACL ('deny ip any any'). Because the list only explicitly permits TCP traffic on ports 80 and 443, non-TCP traffic such as UDP DNS requests fails all explicit entries and is dropped by the implicit deny.

Step-by-Step Solution

1
Analyze the sequential processing of the configured extended IPv4 ACL entries.
Line 1 denies TCP traffic to host 10.2.2.80 on port 80. Line 2 permits TCP traffic to any destination on port 80. Line 3 permits TCP traffic to any destination on port 443.
Cisco IOS ACL entries are evaluated in strict top-down order until a match occurs.
2
Evaluate how UDP traffic (such as DNS on UDP port 53) is evaluated against the rules.
UDP traffic fails to match Line 1 (TCP), Line 2 (TCP), and Line 3 (TCP).
Protocol matching in extended ACLs requires the packet protocol field to match the rule's specified protocol.
3
Determine the final action taken when no explicit rule matches.
The packet encounters the unwritten implicit 'deny ip any any' at the end of the ACL list and is dropped.
All Cisco ACLs conclude with an implicit deny all clause that drops any traffic not explicitly permitted by a preceding rule.

Key Concept

Implicit Deny Clause in IPv4 ACLs
Question 648Question

When DHCP snooping is enabled globally on a Cisco switch, what default trust state is assigned to all Layer 2 interfaces across the switch?

Show answer & explanation

Answer: Untrusted

Answer

Untrusted is the default trust state assigned to all switch interfaces when DHCP snooping is enabled.
When DHCP snooping is enabled, all interfaces default to an untrusted state. Untrusted interfaces can send DHCP requests but are prohibited from forwarding DHCP server responses like DHCP OFFER, ACK, or NAK packets.

Step-by-Step Solution

1
Identify the global default operational mode of DHCP snooping upon activation on a Cisco switch.
DHCP snooping classifies switch interfaces into two operational categories: trusted and untrusted.
Security features operate under the principle of least privilege, defaulting to untrusted to immediately filter unverified DHCP responses.
2
Determine the default status of switch ports.
All Layer 2 switch ports start as untrusted ports.
Only designated ports connected to legitimate DHCP servers or network uplink switches should be manually set to trusted using the 'ip dhcp snooping trust' command.

Key Concept

DHCP Snooping Interface Trust States
Estimated Time:45s
Question 649Question

An enterprise network administrator is configuring a Cisco IOS router to forward DHCP requests from host clients in VLAN 30 (192.168.30.0/24192.168.30.0/24) to a centralized DHCP server located in VLAN 10 at IP address 10.10.10.5010.10.10.50. Host workstations in VLAN 30 connect to the router via subinterface `GigabitEthernet0/0.30`, and the DHCP server resides behind egress interface `GigabitEthernet0/1`. Which command must be configured under subinterface `GigabitEthernet0/0.30` on the router to enable DHCP relay services for the VLAN 30 workstations?

Show answer & explanation

Answer: ip helper-address 10.10.10.50

Answer

The command `ip helper-address 10.10.10.50` must be configured under the client-facing subinterface `GigabitEthernet0/0.30`.
Configuring `ip helper-address 10.10.10.50` under the client-facing subinterface (`GigabitEthernet0/0.30`) allows the router to intercept Layer 2 broadcast DHCP DISCOVER packets from host devices in VLAN 30. The router populates the `giaddr` (gateway IP address) field with `192.168.30.1` and converts the broadcast packet into a unicast IPv4 packet targeted directly to the central DHCP server at `10.10.10.50`.

Step-by-Step Solution

1
Identify the ingress client interface
The workstations in VLAN 30 send broadcast DHCP packets that hit the router subinterface `GigabitEthernet0/0.30`.
DHCP Relay Agents must be enabled on the specific gateway interface where broadcast client packets originate.
2
Determine the destination IP address for the relay command
The destination address must point to the remote DHCP server IP address (10.10.10.5010.10.10.50).
The relay agent converts client UDP broadcasts into unicast UDP packets directed towards the DHCP server's address.
3
Select the correct Cisco IOS syntax
The correct command syntax configured under the interface mode is `ip helper-address 10.10.10.50`.
Cisco IOS uses `ip helper-address [target-IP]` to relay UDP broadcast services including DHCP (UDP ports 67 and 68).

Key Concept

DHCP Relay Agent Configuration (`ip helper-address`)
Question 650Question

A network administrator applies the following standard IPv4 access control list (ACL) inbound on a router interface:

`access-list 10 permit 192.168.1.0 0.0.0.255`

A host with the IPv4 address `192.168.2.50` attempts to send traffic through this interface. What action will the router take on this packet?

Show answer & explanation

Answer: The router drops the packet because it matches the implicit deny statement at the end of the ACL.

Answer

The router drops the packet because it matches the implicit deny statement at the end of the ACL.
Cisco IOS IPv4 Access Control Lists evaluate rules sequentially from top to bottom. If a packet does not match any configured rule, it reaches the final unwritten entry: the implicit deny (deny ip any). Because the source IP 192.168.2.50 is not in the 192.168.1.0/24 subnet specified in the single permit line, it is silently dropped by this implicit deny feature.

Step-by-Step Solution

1
Evaluate the packet source IPv4 address against the ACL entries.
The packet source address 192.168.2.50 does not match the permit rule for network 192.168.1.0/24.
Standard ACL 10 only matches host IP addresses falling within the 192.168.1.0 to 192.168.1.255 range.
2
Apply default ACL processing logic when no explicit entries match.
The packet reaches the bottom of the ACL and hits the implicit deny clause.
All Cisco IPv4 ACLs end with an unwritten 'deny ip any' rule that drops any traffic not explicitly permitted.

Key Concept

Access Control List (ACL) Implicit Deny Clause
Estimated Time:45s
Question 651Question

A Cisco router configured with the static route `ip route 172.16.10.0 255.255.255.0 10.1.1.2` receives an IPv4 packet destined for 172.16.10.45172.16.10.45. Place the steps performed by the router to process and forward this packet in the correct sequential order from first to last.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence of router operation steps is: (1) Packet arrival at ingress interface, (2) Destination matching against static route prefix 172.16.10.0/24, (3) Extraction of next-hop IP 10.1.1.2, (4) Recursive routing table lookup for 10.1.1.2 to find egress interface, and (5) Layer 2 encapsulation and forwarding out the resolved exit interface.
When a router receives a packet destined for a subnet covered by a next-hop static route, it first matches the destination prefix, identifies the next-hop IP, and then executes a recursive lookup to find the directly connected egress interface before encapsulating and transmitting the frame.

Step-by-Step Solution

1
Inspect incoming packet destination
Destination IP 172.16.10.45172.16.10.45 is identified.
Routing processing begins as soon as a packet enters the router.
2
Lookup destination in IPv4 routing table
Matches `172.16.10.0/24` pointing to next-hop 10.1.1.210.1.1.2.
The router performs a longest prefix match against active routing table entries.
3
Extract next-hop address requirement
Next-hop IP 10.1.1.210.1.1.2 is identified.
The static route was configured using next-hop IP syntax rather than directly specifying an exit interface.
4
Execute recursive route resolution lookup
Egress interface (e.g., GigabitEthernet0/1) associated with subnet 10.1.1.0/2410.1.1.0/24 is resolved.
Cisco IOS requires a recursive lookup to resolve next-hop IP addresses to an active, directly connected egress interface.
5
Encapsulate and forward frame
Packet is framed and transmitted out the egress interface toward 10.1.1.210.1.1.2.
Layer 2 headers are constructed after exit interface and next-hop MAC resolution.

Key Concept

Recursive Lookup for Next-Hop IPv4 Static Routes
Question 652Question

During a security assessment of a financial institution, a network administrator reviews the measures implemented to protect network infrastructure. The measures include installing biometric door locks on the main data center, deploying TACACS+ for switch administration authentication, implementing Port Security on access switches, and conducting quarterly user security awareness campaigns. Which of these measures is classified specifically as a physical access control?

Show answer & explanation

Answer: Installing biometric door locks on the main data center entry

Answer

Installing biometric door locks on the main data center entry
Installing biometric door locks directly controls physical access to the building and server room facilities housing network devices. Physical security controls include physical barriers, door locks, mantraps, security guards, and surveillance cameras that prevent unauthorized physical entry.

Step-by-Step Solution

1
Categorize each listed security measure into physical, technical/logical, or administrative program elements.
Biometric door locks limit physical proximity to hardware. TACACS+ and Port Security manage network interface access electronically. Security awareness training educates personnel.
Security controls are broadly classified into physical controls, technical controls, and administrative/policy elements.
2
Identify which measure specifically restricts physical access to network equipment.
Biometric door locks prevent unauthorized individuals from physically entering the room containing servers and network devices.
Physical access controls prevent physical touch, intrusion, or theft of physical IT assets.

Key Concept

Classification of Security Controls (Physical Access Controls vs. Technical Access Controls and Security Program Elements)
Question 653Question

A network engineer is troubleshooting secure remote management access on an enterprise router named EDGE-RTR-01. The router is currently permitting remote sessions, but output verification shows that SSH version 1.5 is active instead of SSH version 2.

The engineer gathers the following CLI output from EDGE-RTR-01:

text
EDGE-RTR-01# show ip ssh
SSH Enabled - version 1.5
Authentication timeout: 120 secs; Authentication retries: 3
EDGE-RTR-01# show running-config | include crypto key
crypto key generate rsa modulus 512

Which configuration change must be performed on EDGE-RTR-01 to support and enforce SSH version 2?

Show answer & explanation

Answer: Re-generate the RSA key pair using a modulus size of at least 768 bits and execute the command ip ssh version 2.

Answer

Re-generate the RSA key pair using a modulus size of at least 768 bits and execute the command ip ssh version 2.
In Cisco IOS, SSH version 2 requires an RSA key pair with a minimum length of 768 bits. When a key size under 768 bits (such as 512 bits) is generated, Cisco IOS defaults to SSH version 1.5. Re-generating the key with a length of at least 768 bits (or 1024/2048 bits) and issuing 'ip ssh version 2' enables and enforces SSHv2.

Step-by-Step Solution

1
Analyze the CLI output from 'show ip ssh' and 'show running-config'.
The current RSA key length is 512 bits, causing the router to operate in SSH version 1.5 mode.
Cisco IOS requires a minimum RSA key modulus length of 768 bits to enable SSHv2 capabilities.
2
Determine the necessary commands to upgrade to SSHv2.
Generating a new RSA key pair with a modulus of 768 bits or higher (typically 1024 or 2048 bits) allows SSHv2 operation. Executing 'ip ssh version 2' explicitly enforces SSHv2.
A 512-bit key size is cryptographically insufficient for SSHv2 negotiation in Cisco IOS.

Key Concept

SSH Version 2 RSA Key Size Prerequisites
Question 654Question

A network technician configures port security on an access switch interface using the command `switchport port-security mac-address sticky`. Which TWO statements accurately describe how sticky MAC address learning operates on this interface?

Select all that apply

Show answer & explanation

Answer: Dynamically learned MAC addresses are automatically added to the active running configuration file.; Learned sticky MAC addresses will be lost if the switch reboots before the running configuration is saved.

Answer

Dynamically learned MAC addresses are automatically added to the active running configuration file, and learned sticky MAC addresses will be lost if the switch reboots before the running configuration is saved.
Enabling sticky MAC learning allows switch interfaces to convert dynamically learned MAC addresses into sticky MAC addresses and append them directly to the active running configuration. Because these entries reside in volatile memory, saving the running configuration to the startup configuration is required to maintain the learned addresses after a reboot.

Step-by-Step Solution

1
Analyze the function of sticky MAC address learning in Cisco IOS Port Security.
When 'mac-address sticky' is configured, the switch dynamically learns connected MAC addresses and automatically converts them into sticky entries in RAM.
Sticky MAC learning dynamically writes learned addresses into the running configuration so administrators do not have to enter them manually.
2
Determine the memory persistence of the running configuration.
The running configuration exists in volatile RAM and is erased upon device reboot unless explicitly saved to NVRAM.
To persist sticky MAC addresses across switch reboots, an administrator must execute 'copy running-config startup-config'.

Key Concept

Port Security Sticky MAC Address Dynamics and Configuration Persistence
Estimated Time:1m 0s
Question 655Question

A network engineer must configure an IPv4 extended access control list (ACL 105) on a Cisco IOS router to enforce security policies for traffic originating from the internal subnet (10.1.1.0/2410.1.1.0/24) destined for an application server at 10.2.2.1010.2.2.10:

1. Allow host 10.1.1.5010.1.1.50 administrative SSH access (TCP port 22) to server 10.2.2.1010.2.2.10.
2. Prevent all other hosts in the 10.1.1.0/2410.1.1.0/24 subnet from accessing server 10.2.2.1010.2.2.10 via SSH.
3. Allow all hosts in the 10.1.1.0/2410.1.1.0/24 subnet web access (TCP port 80) to server 10.2.2.1010.2.2.10.
4. Explicitly block all remaining IP traffic from 10.1.1.0/2410.1.1.0/24 to server 10.2.2.1010.2.2.10.

In what order should the network engineer place the ACL statements from top to bottom to ensure the policy is correctly enforced?

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The ACL statements must be placed from top to bottom in the sequence: 1) access-list 105 permit tcp host 10.1.1.50 host 10.2.2.10 eq 22, 2) access-list 105 deny tcp 10.1.1.0 0.0.0.255 host 10.2.2.10 eq 22, 3) access-list 105 permit tcp 10.1.1.0 0.0.0.255 host 10.2.2.10 eq 80, and 4) access-list 105 deny ip 10.1.1.0 0.0.0.255 host 10.2.2.10.
Cisco IOS Access Control Lists enforce policies based on top-down, first-match evaluation logic. Once a packet matches an ACL line's source, destination, protocol, and port criteria, the router executes the action (permit or deny) and ignores all subsequent entries. To properly allow host 10.1.1.50 to access SSH while denying SSH to the rest of the 10.1.1.0/24 subnet, the host permit rule must appear first. Next, the subnet SSH deny rule blocks all other SSH attempts. Following that, the HTTP permit rule allows web traffic for the subnet. Finally, the broad IP deny statement catches any remaining traffic types from the subnet.

Step-by-Step Solution

1
Analyze top-down evaluation mechanics in Cisco IOS IPv4 ACLs.
Cisco IOS ACL entries are processed sequentially in top-down order until the first matching line is hit, at which point packet evaluation stops.
More specific exception rules must precede general or broader range rules to prevent premature match execution.
2
Place the specific host SSH permit statement first.
'access-list 105 permit tcp host 10.1.1.50 host 10.2.2.10 eq 22' is placed at position 1.
Host 10.1.1.50 is an IP within subnet 10.1.1.0/24. If the subnet SSH deny rule came first, 10.1.1.50 would match the subnet rule and be denied.
3
Place the subnet SSH deny statement second.
'access-list 105 deny tcp 10.1.1.0 0.0.0.255 host 10.2.2.10 eq 22' is placed at position 2.
This guarantees that all other SSH packets originating from 10.1.1.0/24 (excluding 10.1.1.50) are dropped before subsequent permit lines are evaluated.
4
Place the subnet HTTP permit statement third.
'access-list 105 permit tcp 10.1.1.0 0.0.0.255 host 10.2.2.10 eq 80' is placed at position 3.
This permits HTTP port 80 traffic for all hosts in the subnet after non-authorized SSH traffic has already been blocked.
5
Place the subnet broad IP deny statement fourth.
'access-list 105 deny ip 10.1.1.0 0.0.0.255 host 10.2.2.10' is placed at position 4.
This catches and drops any remaining IP protocols from subnet 10.1.1.0/24 to server 10.2.2.10.

Key Concept

Cisco IOS ACL Top-Down Sequential First-Match Processing
Question 656Question

A network administrator is reviewing the fundamental operation of standard IPv4 Access Control Lists (ACLs) on a Cisco IOS router. Which two statements correctly describe the operational characteristics of standard IPv4 ACLs?

Select all that apply

Show answer & explanation

Answer: Standard IPv4 ACLs filter network traffic based solely on the source IPv4 address.; Traffic that does not match any explicit permit or deny rule in the ACL is dropped by an implicit deny entry.

Answer

The correct statements are that standard IPv4 ACLs filter traffic based strictly on source IPv4 addresses, and that unmatched packets are dropped due to the implicit deny statement at the end of the list.
Standard IPv4 ACLs make forwarding or dropping decisions based exclusively on the packet's source IPv4 address. Additionally, any traffic that does not match an explicit rule in the list is dropped automatically by the default implicit deny clause at the end of the ACL.

Step-by-Step Solution

1
Identify the filtering criteria capability of standard IPv4 ACLs.
Standard IPv4 ACLs examine only the source address field within the IPv4 packet header.
Standard ACL syntax and logic lack fields to evaluate destination IP addresses, transport protocols, or port numbers.
2
Analyze default ACL evaluation behavior for unmatched packets.
Every Cisco ACL concludes with an implicit 'deny ip any' rule.
If a packet is evaluated against all explicit ACL statements without a match, it hits the implicit deny statement at the end and is discarded.

Key Concept

Standard IPv4 ACL Filtering Scope and Implicit Deny Mechanism
Question 657Question

An enterprise network operations center is aligning its infrastructure security framework with Cisco security baseline recommendations. Match each security program element or access control type on the left to its corresponding operational implementation on the right.

Click a left item, then click its matching right item

Items

Physical Access Control
Security Awareness Training
Incident Response Plan
Administrative Policy Control

Matches

Show answer & explanation

Answer

Physical Access Control pairs with biometric scanners and mantrap portals; Security Awareness Training pairs with user education on phishing and tailgating; Incident Response Plan pairs with structured escalation workflows and containment procedures; Administrative Policy Control pairs with corporate documentation establishing acceptable use policies.
Physical access control directly limits physical proximity to network infrastructure using devices like mantrap portals and biometrics. Security awareness training educates users on recognizing threats like tailgating and phishing. Incident response plans outline emergency response steps following a breach. Administrative controls establish corporate rules, governance, and written security guidelines.

Step-by-Step Solution

1
Identify physical security measures.
Biometric readers, mantraps, locks, and badges directly restrict physical access to facilities.
Physical access control measures deal directly with spatial access to facilities and network hardware.
2
Differentiate human-focused educational controls from administrative rules.
Training sessions target user behavior (phishing, tailgating awareness), whereas administrative policies set the formal written rules (acceptable use).
User training is an operational program element, while governance rules represent administrative controls.
3
Categorize reactive security procedures.
Escalation workflows and containment procedures belong to incident management.
Incident response plans guide organizational actions during and after a security event.

Key Concept

Classification of Enterprise Security Program Elements and Controls
Question 658Question

A network engineer is configuring digital certificate authentication for Cisco Identity Services Engine (ISE) and enterprise network infrastructure. To ensure proper certificate deployment and validation, the engineer must correctly identify the operational function of each Public Key Infrastructure (PKI) element. Match each PKI component on the left to its corresponding primary function on the right.

Click a left item, then click its matching right item

Items

Certificate Signing Request (CSR)
Root Certificate Authority (CA) Certificate
Subject Alternative Name (SAN)
Online Certificate Status Protocol (OCSP)

Matches

Show answer & explanation

Answer

Certificate Signing Request (CSR) matches the description of containing public key and identity details sent to an issuing authority; Root CA Certificate matches serving as the trusted anchor on client devices; Subject Alternative Name (SAN) matches allowing multiple domain names or IP addresses on a single certificate; Online Certificate Status Protocol (OCSP) matches enabling real-time verification of certificate revocation status.
Each PKI component plays a distinct role in digital certificate lifecycle management and authentication: CSRs initiate certificate issuance by bundling public keys and subject identity; Root CA certificates establish client-side trust anchors; SAN extensions allow single certificates to cover multiple FQDNs/IPs; and OCSP provides real-time revocation checks.

Step-by-Step Solution

1
Analyze the role of a Certificate Signing Request (CSR).
Identify that a CSR is generated prior to certificate issuance and holds the public key and subject attributes submitted to a CA.
CSR generation is the initial step in obtaining an identity certificate from a public or private PKI.
2
Analyze the function of a Root CA Certificate.
Identify that the Root CA Certificate acts as the implicit root of trust configured in device trust stores.
Without a trusted Root CA certificate, network entities cannot complete TLS handshakes because certificate signature chains cannot be validated.
3
Evaluate the X.509 extension Subject Alternative Name (SAN).
Identify that SAN extends the certificate capability to cover multiple IP addresses or hostnames beyond the primary Common Name (CN).
Modern enterprise applications like Cisco ISE require SAN entries for dual-node deployment FQDNs and management IP addresses.
4
Evaluate certificate validation using Online Certificate Status Protocol (OCSP).
Identify that OCSP sends specific certificate status queries to an online responder rather than downloading complete Certificate Revocation Lists (CRLs).
OCSP avoids the bandwidth overhead associated with parsing large, periodically published CRL files.

Key Concept

Public Key Infrastructure (PKI) components and certificate validation mechanisms in network access control
Question 659Question

An enterprise LAN uses HSRP for gateway redundancy with interface tracking configured on Router R1 (currently Active). Router R2 is in the Standby state with preemption enabled. When R1's tracked WAN uplink interface fails, a sequence of failover actions takes place. Place the operational steps in the correct chronological order from first to last.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence begins with Router R1 detecting the tracked interface failure and decrementing its priority. Next, Router R1 advertises the reduced priority in an HSRP Hello message. Router R2 detects that its priority is now higher and transmits an HSRP Coup message to preempt the Active role. Finally, Router R2 assumes the Active state and broadcasts a Gratuitous ARP to update Layer 2 switch MAC tables.
The chronological order follows the exact functional steps of HSRP failover: local event detection and priority decrement happens first, advertising the lower priority via Hello messages occurs second, preemptive takeover via Coup message happens third, and Layer 2 switch table updates via Gratuitous ARP happen last.

Step-by-Step Solution

1
Identify the initial trigger event caused by interface tracking.
Router R1 detects the link failure on its monitored interface and immediately subtracts the configured track decrement value from its HSRP priority.
Interface tracking must first process the line protocol state change before modifying the protocol metric.
2
Communicate the updated priority to neighboring HSRP routers.
Router R1 encapsulates its updated (lower) priority into its standard HSRP Hello packet and multicasts it to 224.0.0.2 (or 224.0.0.102 for HSRPv2).
HSRP routers rely on periodic Hello packets to discover neighbor priorities and state changes.
3
Execute preemption election on the standby router.
Router R2 compares its priority against the received Hello priority. Finding its own priority higher, it transmits an HSRP Coup (or Speak/Active assertion) message.
The preemption feature allows a higher-priority router to claim the Active role from a lower-priority Active router.
4
Refresh the Layer 2 network path for client traffic.
Router R2 transitions to the Active state and broadcasts a Gratuitous ARP containing the virtual IP and virtual MAC address mapping.
Layer 2 switches along the LAN segment must update their CAM tables to forward frames destined for the gateway virtual MAC out the port connected to R2.

Key Concept

HSRP Interface Tracking and Preemption Failover Sequence
Question 660Question

A network engineer is selecting file transfer protocols to manage system images and configuration backups for enterprise edge routers. Which two statements accurately describe how TFTP and FTP differ in their underlying transport and operational characteristics?

Select all that apply

Show answer & explanation

Answer: TFTP relies on connectionless UDP transport using port 69 without native user authentication, whereas FTP uses connection-oriented TCP transport and requires authentication credentials.; FTP establishes separate TCP connections for session control commands and data transfer, whereas TFTP uses a single UDP channel for both data transmission and acknowledgements.

Answer

The correct statements are that TFTP relies on connectionless UDP transport on port 69 without authentication while FTP uses TCP with authentication credentials, and that FTP establishes separate control and data connections whereas TFTP uses a single UDP channel.
TFTP uses connectionless UDP on port 69 without native authentication and handles control and data over a single stream. In contrast, FTP uses connection-oriented TCP, requires user authentication, and separates control signals (TCP 21) from data transfers (TCP 20).

Step-by-Step Solution

1
Analyze transport protocols and authentication requirements of TFTP vs FTP
TFTP runs over connectionless UDP port 69 with no built-in user authentication. FTP runs over TCP (control port 21, data port 20) and requires user authentication credentials.
Identify core protocol layer definitions.
2
Evaluate channel structure and flow control mechanics for both protocols
FTP uses dynamic multi-channel TCP sessions (control channel on TCP 21, data channel on TCP 20) with TCP windowing. TFTP uses a simple lockstep stop-and-wait UDP session.
Distinguish control and data plane separation and windowing characteristics.

Key Concept

TFTP vs FTP Transport Protocols and Operational Differences
PreviousPage 33 / 100Next
All practice questions — Cisco CCNA | Examkin