Security Fundamentals

298 soru

Soru 41Soru

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

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

Cevabı ve açıklamayı göster

Cevap

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

Adım Adım Çözüm

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

Anahtar Kavram

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

A network administrator configures a Cisco IOS router to restrict access to a financial database server (192.168.50.100/32192.168.50.100/32) from the HR subnet (192.168.10.0/24192.168.10.0/24). All other traffic between subnets must be permitted. The administrator applies the following access list in the inbound direction on interface GigabitEthernet0/0:

text
ip access-list extended FILTER_HR
deny ip 192.168.10.0 0.0.0.255 host 192.168.50.100

After applying this ACL, users report that all traffic targeting any server in the 192.168.50.0/24192.168.50.0/24 network is being dropped, including traffic from non-HR subnets. Which configuration change will resolve the issue and permit intended traffic?

Cevabı ve açıklamayı göster

Cevap: Append the statement `permit ip any any` to the end of the `FILTER_HR` access list.

Cevap

Appending the statement `permit ip any any` to the end of the `FILTER_HR` access list resolves the issue by explicitly permitting all traffic that does not match the deny rule.
Every IPv4 ACL in Cisco IOS ends with an invisible, mandatory `deny ip any any` statement. When an ACL contains only `deny` statements, any packet that does not match those deny statements reaches the bottom of the list and is dropped. Appending `permit ip any any` allows all other IP traffic to pass through as intended.

Adım Adım Çözüm

1
Analyze the existing ACL configuration and traffic processing logic.
The current ACL contains only a single statement: `deny ip 192.168.10.0 0.0.0.255 host 192.168.50.100`.
Cisco IOS Access Control Lists append an unwritten, implicit `deny ip any any` statement at the very end of every access list.
2
Trace packet evaluation for non-matching traffic.
Traffic from HR targeting other servers, or traffic from non-HR subnets, fails to match the `deny` line and falls through to the implicit deny at the end of the list, resulting in all traffic being dropped.
Top-down sequential processing drops any packet that reaches the end of an ACL without matching an explicit `permit` line.
3
Determine the necessary configuration addition.
Adding `permit ip any any` at the end ensures that traffic not matching the specific host deny rule is allowed through.
An explicit permit statement overrides the implicit deny clause for all remaining traffic.

Anahtar Kavram

Access Control List Sequential Processing and the Implicit Deny Any Clause
Soru 43Soru

An organization configures a remote access VPN solution using the Cisco AnyConnect Secure Mobility Client for mobile employees. To conserve corporate headquarter bandwidth, the network administrator must enable a feature that encrypts and routes traffic destined for internal corporate subnets through the VPN tunnel, while permitting general internet traffic to access the internet directly via the remote user's local network connection. Which VPN feature should the administrator configure to satisfy this requirement?

Cevabı ve açıklamayı göster

Cevap: Split tunneling

Cevap

The correct feature is split tunneling, which selectively routes corporate-bound traffic over the VPN tunnel while allowing local internet traffic to bypass the tunnel.
Split tunneling is explicitly designed for remote access VPN deployments to separate traffic destined for internal corporate networks from public internet traffic. By defining specific corporate destination subnets in the VPN gateway policy, the client software only sends traffic matching those destination networks into the IPsec/SSL VPN tunnel, allowing all other internet traffic to egress locally.

Adım Adım Çözüm

1
Analyze the scenario requirements
Identified the need to separate traffic into corporate-bound traffic (which requires VPN encryption) and general internet traffic (which should bypass the VPN to save bandwidth).
Routing all traffic through the corporate headquarter creates unnecessary WAN bottlenecking and high internet bandwidth consumption on corporate firewalls.
2
Compare remote access VPN operational modes
Split tunneling segregates traffic based on destination IP address rules defined by an access control list on the VPN concentrator.
Full tunneling redirects 100% of client traffic through the tunnel, whereas split tunneling selectively encrypts specified subnet traffic while permitting local breakout for all other destinations.

Anahtar Kavram

Split Tunneling vs Full Tunneling in Remote Access VPNs
Soru 44Soru

A network administrator configures a Cisco IOS switch for secure management access. The following excerpt is retrieved from the running configuration:

text
username secadmin privilege 15 secret 8 88 k9A$eP2xL1...
service password-encryption
!
line vty 0 4
transport input ssh
login

When a network engineer attempts to establish an SSH session using the `secadmin` account credentials, the authentication attempt is rejected. Which configuration change must be applied to line vty 0 4 to allow authentication using the local user database?

Cevabı ve açıklamayı göster

Cevap: Replace the `login` command with `login local` under line vty 0 4 configuration mode.

Cevap

Replacing `login` with `login local` under line vty 0 4 configuration mode resolves the authentication failure by directing Cisco IOS to check credentials against accounts in the local running-config database.
The correct answer specifies changing `login` to `login local` on line vty 0 4. In Cisco IOS, the simple `login` command restricts authentication to a line password. If no line password is configured, access is refused. Executing `login local` forces Cisco IOS to authenticate incoming SSH connections against accounts defined in the global local database, such as `secadmin`.

Adım Adım Çözüm

1
Analyze the VTY line authentication configuration.
The configuration shows `login` under `line vty 0 4` without a line-level `password` statement or the `local` keyword.
The bare `login` command expects a password defined directly on the line using `password <string>`. Without it, all login attempts are blocked.
2
Evaluate local database user configuration.
A local user `secadmin` is present with a valid Type 8 PBKDF2 secret hash (`secret 8 ...`).
Local credentials exist, but Cisco IOS must be instructed to consult the local account database for line access.
3
Identify the required CLI command fix.
Configuring `login local` under `line vty 0 4` binds incoming VTY authentication to the local username database.
This allows `secadmin` credentials to be validated successfully during SSH setup.

Anahtar Kavram

Cisco IOS Line VTY Local Database Authentication
Soru 45Soru

Match each VPN deployment characteristic or operational mode on the left with its corresponding VPN technology concept on the right.

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

Öğeler

Always-on encrypted tunnel established between two static network gateways to interconnect distinct local area networks transparently.
User-initiated session that connects an individual mobile endpoint to the enterprise internal network over an untrusted network.
IPsec mode that encrypts the entire original IP packet and prepends a new outer IP header for gateway-to-gateway delivery.
IPsec mode that encrypts only the IP payload and leaves the original IP header intact, typically used for host-to-host communications.

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

The correct pairings match Site-to-Site VPN to the persistent gateway-to-gateway network link, Remote Access VPN to the user-initiated endpoint connection, IPsec Tunnel Mode to whole-packet encapsulation with a new IP header, and IPsec Transport Mode to payload-only encryption preserving the original header.
The correct pairings accurately reflect the core differences between site-to-site network connectivity and remote endpoint access, as well as the structural differences between IPsec Tunnel mode (new outer header) and Transport mode (payload encryption only).

Adım Adım Çözüm

1
Differentiate between VPN deployment topologies.
Identify that connecting static branch networks via perimeter devices describes a Site-to-Site VPN, while connecting individual mobile devices describes a Remote Access VPN.
Topologies differ fundamentally by whether connections are established permanently between network infrastructure nodes or dynamically by remote client devices.
2
Analyze IPsec operation modes.
Identify that adding a new outer IP header to protect the entire packet is IPsec Tunnel Mode, whereas retaining the original outer header while encrypting only the payload is IPsec Transport Mode.
Tunnel Mode protects end-to-end internal addressing across public networks between security gateways, while Transport Mode protects communications between hosts whose addresses are already routable.

Anahtar Kavram

Remote Access vs Site-to-Site VPN architecture and IPsec encapsulation modes (Tunnel vs Transport).
Soru 46Soru

An organization is designing the physical security and security program elements for a newly constructed enterprise facility housing core network hardware and server racks. Which two measures represent physical access controls or physical security program elements? (Select two.)

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

Cevabı ve açıklamayı göster

Cevap: Installing biometric door scanners and proximity card readers at all entrances to the server room; Deploying security guards and automated physical keycard locks on rack enclosures containing network hardware

Cevap

The two physical access controls are installing biometric scanners with proximity card readers at server room entrances, and deploying security guards alongside lockable equipment rack enclosures.
Physical access controls prevent unauthorized physical entry to infrastructure assets. Biometric scanners combined with proximity readers protect room perimeters, while security guards and lockable rack cabinets protect the physical hardware directly from unauthorized physical contact or theft.

Adım Adım Çözüm

1
Differentiate between physical security controls and technical/logical security controls.
Physical controls manage tangible entry, environmental protection, and direct physical access to hardware (e.g., doors, locks, guards, biometrics, video surveillance). Logical/technical controls enforce access via software, protocols, or network configuration (e.g., ACLs, AAA/TACACS+, Port Security).
Security program elements explicitly separate physical safeguards from technical software safeguards.
2
Evaluate option choices to select physical security elements.
Biometric door access with card readers restricts physical human movement into the facility. Guards and lockable rack cabinets restrict physical human tampering with server and network gear.
Both represent physical access controls essential for defense-in-depth in enterprise physical environments.

Anahtar Kavram

Physical Access Controls and Security Program Safeguards
Soru 47Soru

An enterprise organization is updating its infrastructure security baseline to comply with zero-trust architecture guidelines. The network security team is establishing policies governing administrative SSH access to core switches and 802.1X EAP-TLS client authentication across corporate wireless networks. Which TWO of the following implementation details correctly align with Cisco recommended standards for multi-factor authentication (MFA) factor classification and Public Key Infrastructure (PKI) digital certificate validation? (Choose two.)

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

Cevabı ve açıklamayı göster

Cevap: Prompting an administrator for a complex local console password alongside a hardware TOTP token generator fulfills multi-factor authentication by combining a knowledge factor with a possession factor.; Validating an incoming client digital certificate during an 802.1X TLS handshake requires verifying the Certificate Authority signature chain, checking current timestamp validity, and querying a CRL or OCSP server to confirm the certificate has not been revoked.

Cevap

The statements confirming that combining an administrative password with a hardware TOTP token fulfills MFA by pairing knowledge and possession factors, and that digital certificate validation mandates verifying signatures, validity dates, and CRL/OCSP revocation status are both correct.
Pairing a password (knowledge factor) with a hardware TOTP token generator (possession factor) correctly spans two distinct MFA factor categories. Additionally, PKI certificate validation strictly requires verifying the issuer chain, confirming current expiration bounds, and validating non-revocation status using CRL or OCSP.

Adım Adım Çözüm

1
Evaluate Multi-Factor Authentication (MFA) category criteria.
MFA mandates selecting authentication mechanisms from at least two separate factor categories: knowledge (something you know), possession (something you have), or inherence (something you are).
Using multiple methods within the exact same category (such as two separate phone-based alerts) fails the factor independence requirement.
2
Examine Public Key Infrastructure (PKI) certificate verification procedures.
Comprehensive certificate verification requires validating the issuing CA trust path, confirming the current time falls within the validity window, and checking revocation lists (CRL) or real-time status responders (OCSP).
A certificate signed by a trusted root CA can still be revoked due to private key compromise or endpoint decommission before its expiration date.

Anahtar Kavram

MFA Factor Classification and PKI Digital Certificate Revocation Verification
Soru 48Soru

A network security administrator must perform a local password recovery procedure on a Cisco IOS router after administrative credentials were lost. Arrange the procedural steps in the correct chronological order required to restore administrative access without losing the active device configuration.

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

Cevabı ve açıklamayı göster

Cevap

The correct chronological sequence for Cisco IOS password recovery is: 1) Interrupt the boot sequence in ROMMON and set the configuration register to `0x2142`. 2) Boot into Cisco IOS and enter privileged EXEC mode without password prompt. 3) Execute `copy startup-config running-config`. 4) Set a new password using `enable secret`. 5) Revert the configuration register to `0x2102` and save changes with `copy running-config startup-config`.
The correct sequence follows standard Cisco IOS administrative recovery: First, interrupt boot in ROMMON to change the register to `0x2142`, ignoring startup configuration. Second, complete boot into privileged EXEC mode without credentials. Third, copy startup configuration into running configuration (`copy startup-config running-config`) to restore network settings into RAM. Fourth, define a new password using `enable secret`. Fifth, reset the register to `0x2102` and save the configuration (`copy running-config startup-config`) to NVRAM.

Adım Adım Çözüm

1
Change configuration register in ROMMON mode
Configuration register value set to `0x2142`
Forces Cisco IOS to bypass reading NVRAM (startup-config) during boot up.
2
Boot device and access privileged EXEC mode
Router boots to `Router>` and allows `enable` without credential prompt
Since startup-config is ignored, no local authentication controls or passwords are loaded.
3
Load startup configuration into active RAM using `copy startup-config running-config`
Original operational configuration is restored into RAM
Preserves all existing router settings so they are not accidentally wiped when saving.
4
Configure a new password using `enable secret` in global configuration mode
New encrypted password replaces the old locked password in running-config
Updates the local access password in RAM while keeping all restored settings.
5
Reset configuration register to `0x2102` and save running configuration to startup configuration
Router register set back to normal boot mode and startup-config in NVRAM updated
Ensures future reboots load configuration from NVRAM normally with the new password.

Anahtar Kavram

Cisco IOS Local Password Recovery Procedure and Configuration Register Values
Soru 49Soru

A network engineer is configuring IPv4 Access Control Lists (ACLs) on a Cisco IOS router. Which of the following statements regarding the operation and behavior of IPv4 ACLs are correct? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Standard IPv4 ACLs filter network traffic based solely on the packet source IPv4 address.; An implicit deny statement at the end of an IPv4 ACL automatically drops any packet that does not match an explicit permit statement.

Cevap

Standard IPv4 ACLs filter traffic based solely on the source IP address, and an implicit deny statement drops any packet that does not match an explicit permit entry.
Standard IPv4 ACLs examine only packet source IP addresses. Additionally, every IPv4 ACL includes an unwritten implicit deny clause at the end of the rule list that drops any traffic not matched by explicit permit rules.

Adım Adım Çözüm

1
Analyze standard IPv4 ACL criteria
Standard IPv4 ACLs only evaluate the source IP address.
Standard ACLs (numbered 1-99 and 1300-1999) cannot inspect destination addresses or layer 4 ports.
2
Evaluate default termination behavior of IPv4 ACLs
Unmatched packets encounter an implicit deny and are dropped.
Cisco IOS enforces security by defaulting to deny all traffic that is not explicitly permitted.

Anahtar Kavram

Standard vs Extended IPv4 ACL capabilities and the implicit deny feature
Soru 50Soru

A network engineer configures an extended IPv4 access control list named `CORP_SEC` on a Cisco IOS router to regulate access from the branch network (10.40.0.0/1610.40.0.0/16) to an internal web server (192.168.50.10/32192.168.50.10/32). The security requirement specifies that host 10.40.4.1510.40.4.15 in the IT subnet (10.40.4.0/2210.40.4.0/22) must be allowed HTTPS access (TCP port 443) to the web server, while all other traffic from 10.40.0.0/1610.40.0.0/16 to the 192.168.50.0/24192.168.50.0/24 network must be denied. Additionally, non-matching traffic must reach external destinations freely.

The engineer enters the following configuration commands:

text
ip access-list extended CORP_SEC
10 deny ip 10.40.0.0 0.0.255.255 192.168.50.0 0.0.0.255
20 permit tcp host 10.40.4.15 host 192.168.50.10 eq 443
30 permit ip any any
!
interface GigabitEthernet0/0/1
ip access-group CORP_SEC in

During testing, HTTPS traffic from 10.40.4.1510.40.4.15 to 192.168.50.10192.168.50.10 is unexpectedly dropped. Which modification corrects the access control list logic to satisfy all requirements?

Cevabı ve açıklamayı göster

Cevap: Reorder the ACL so sequence 20 is processed before sequence 10, while leaving sequence 30 in place.

Cevap

Reorder the access control list so sequence 20 is evaluated prior to sequence 10, retaining sequence 30 at the bottom.
Cisco IOS Access Control Lists process statements sequentially from top to bottom. The first statement that matches a packet determines the outcome, terminating further evaluation. In the original configuration, sequence 10 broad-denied all traffic from 10.40.0.0/1610.40.0.0/16 to 192.168.50.0/24192.168.50.0/24. Because host 10.40.4.1510.40.4.15 is part of 10.40.0.0/1610.40.0.0/16, its HTTPS packets matched sequence 10 first and were dropped before reaching sequence 20. Reordering sequence 20 above sequence 10 allows the specific HTTPS flow to be permitted first. Retaining sequence 30 (`permit ip any any`) ensures non-matching traffic to other networks is not blocked by the implicit deny any clause at the end of the list.

Adım Adım Çözüm

1
Analyze top-down sequential processing logic of Cisco IPv4 ACLs.
Sequence 10 `deny ip 10.40.0.0 0.0.255.255 192.168.50.0 0.0.0.255` matches all IP packets originating from 10.40.0.0/1610.40.0.0/16 heading to 192.168.50.0/24192.168.50.0/24.
Host 10.40.4.1510.40.4.15 resides within 10.40.0.0/1610.40.0.0/16. Therefore, HTTPS packets match line 10 first and are immediately dropped before reaching line 20.
2
Determine placement of specific versus general rules.
The specific exception (`permit tcp host 10.40.4.15 host 192.168.50.10 eq 443`) must precede the broad deny rule (`deny ip 10.40.0.0 0.0.255.255 192.168.50.0 0.0.0.255`).
Top-down execution terminates search upon the first matching entry. Placing specific permit statements above broader deny statements ensures granular access controls work.
3
Verify requirement for non-matching traffic handling.
Sequence 30 `permit ip any any` must remain at the end of the ACL.
Without `permit ip any any`, all traffic going to external destinations outside 192.168.50.0/24192.168.50.0/24 would hit the implicit `deny ip any any` at the bottom of the ACL and be dropped.

Anahtar Kavram

Top-Down Sequential Processing and Placement Strategy in Extended IPv4 ACLs
Tahmini Süre:2m 0s
Soru 51Soru

An administrator configures an IPv4 access control list on a router interface containing only the single entry `access-list 15 permit host 172.16.10.5`. What action will the router take when a packet originating from host 172.16.10.20 arrives on this interface?

Cevabı ve açıklamayı göster

Cevap: The packet is dropped because of the unwritten implicit deny statement at the end of the ACL.

Cevap

The packet is dropped because of the unwritten implicit deny statement at the end of the ACL.
Every Cisco IPv4 ACL ends with an invisible implicit deny statement (`deny any`). Because the packet from host 172.16.10.20 does not match the single permit rule for host 172.16.10.5, it reaches the end of the list and is dropped.

Adım Adım Çözüm

1
Evaluate the packet against the ACL entries in sequential top-down order.
The packet source IP (172.16.10.20) is compared to line 1 (permit host 172.16.10.5), resulting in no match.
Host 172.16.10.20 is not equal to 172.16.10.5.
2
Proceed to the end of the access control list when no explicit match occurs.
The packet encounters the default invisible implicit deny clause (`deny any`).
Every Cisco IOS IPv4 ACL automatically terminates with an implicit deny all traffic statement.
3
Determine final packet disposition.
The router drops the packet.
Traffic failing to match any permit statement is dropped by the implicit deny.

Anahtar Kavram

Implicit Deny Any in IPv4 Access Control Lists
Tahmini Süre:45s
Soru 52Soru

A network administrator is evaluating AAA protocols to manage CLI access to enterprise routers. Which feature is a key characteristic of TACACS+ compared to RADIUS?

Cevabı ve açıklamayı göster

Cevap: It encrypts the entire packet body during transmission.

Cevap

TACACS+ encrypts the entire body of the packet during transmission.
TACACS+ encrypts the entire body of the packet, providing complete confidentiality for usernames, commands, and authorization details. In contrast, RADIUS encrypts only the password field.

Adım Adım Çözüm

1
Identify the protocol characteristics of TACACS+.
TACACS+ is an administrative AAA protocol that operates over TCP port 49.
Understanding transport protocol mechanics and encryption features is fundamental when comparing TACACS+ and RADIUS.
2
Compare TACACS+ encryption mechanisms against RADIUS.
TACACS+ encrypts the entire packet payload (everything following the header), whereas RADIUS encrypts only the password attribute.
This structural difference ensures TACACS+ provides full-payload confidentiality for network device administration sessions.

Anahtar Kavram

TACACS+ vs. RADIUS AAA Protocol Differences
Tahmini Süre:45s
Soru 53Soru

A network administrator enables Dynamic ARP Inspection (DAI) on a switch access VLAN to mitigate ARP spoofing attacks. Which database does DAI consult by default to validate ARP requests and responses received on untrusted ports?

Cevabı ve açıklamayı göster

Cevap: The DHCP snooping binding database

Cevap

The DHCP snooping binding database
Dynamic ARP Inspection (DAI) is designed to prevent man-in-the-middle ARP spoofing attacks. When DAI is enabled on a VLAN, it intercepts all ARP requests and responses on untrusted ports and checks the sender IP address and sender MAC address against valid entries in the DHCP snooping binding database. If the IP-to-MAC binding does not match an entry in the database, the invalid ARP packet is dropped.

Adım Adım Çözüm

1
Identify the primary function of Dynamic ARP Inspection (DAI)
DAI mitigates ARP poisoning/spoofing by intercepting and validating ARP requests and responses on untrusted switch ports.
Untrusted ports can receive malicious ARP messages attempting to misassociate IP addresses with attacker MAC addresses.
2
Determine the data source used by DAI for validation
DAI compares the sender IP address and MAC address in intercepted ARP packets against valid IP-to-MAC pairs.
DHCP Snooping dynamically builds and maintains the binding database containing MAC address, IP address, lease time, binding type, VLAN number, and interface information.

Anahtar Kavram

Dynamic ARP Inspection (DAI) operational dependency on DHCP Snooping
Soru 54Soru

A network administrator is configuring an IPv4 extended named access control list (ACL) on a Cisco router interface to implement security controls for the host subnet 10.50.1.0/2410.50.1.0/24. The ACL must satisfy the following traffic policies:

1. Allow ICMP echo requests from 10.50.1.0/2410.50.1.0/24 strictly to the default gateway at 10.50.1.110.50.1.1.
2. Allow HTTPS access from 10.50.1.0/2410.50.1.0/24 to the internal application server at 192.168.20.45192.168.20.45.
3. Explicitly deny all other IPv4 traffic originating from 10.50.1.0/2410.50.1.0/24 destined to the internal server subnet 192.168.20.0/24192.168.20.0/24.
4. Permit all remaining outbound traffic from 10.50.1.0/2410.50.1.0/24 to any other network destination.

Which two ACL entries must be placed in the access list to achieve this exact behavior without blocking general Internet access? (Select two.)

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

Cevabı ve açıklamayı göster

Cevap: permit tcp 10.50.1.0 0.0.0.255 host 192.168.20.45 eq 443; permit ip 10.50.1.0 0.0.0.255 any

Cevap

The correct options are 'permit tcp 10.50.1.0 0.0.0.255 host 192.168.20.45 eq 443' and 'permit ip 10.50.1.0 0.0.0.255 any'.
The correct configuration requires allowing TCP port 443 traffic to the specific host 192.168.20.45 first. Following the explicit block of all other IP traffic to 192.168.20.0/24, an explicit permit ip entry from the source network to 'any' destination is mandatory to prevent the default implicit deny clause from blocking general Internet and external traffic.

Adım Adım Çözüm

1
Analyze extended ACL processing order rules.
Cisco IOS ACLs process entries sequentially from top to bottom until the first match occurs.
Specific permit rules must precede broader deny rules to ensure target traffic is allowed.
2
Construct the rule for HTTPS access to the application server.
The entry 'permit tcp 10.50.1.0 0.0.0.255 host 192.168.20.45 eq 443' correctly permits SSL/TLS traffic to port 443 of the target server.
Requirements demand permitting HTTPS specifically to 192.168.20.45.
3
Address general outbound connectivity while maintaining subnet restrictions.
After specifying 'deny ip 10.50.1.0 0.0.0.255 192.168.20.0 0.0.0.255', the rule 'permit ip 10.50.1.0 0.0.0.255 any' must be appended.
Without an explicit permit statement at the end of the ACL, the invisible default 'implicit deny ip any any' clause drops all traffic destined for other locations.

Anahtar Kavram

ACL Sequential Evaluation and Implicit Deny Handling
Soru 55Soru

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?

Cevabı ve açıklamayı göster

Cevap: A mantrap system with interlocked access doors

Cevap

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.

Adım Adım Çözüm

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.

Anahtar Kavram

Physical Access Control Measures and Mantrap Mechanisms
Soru 56Soru

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?

Cevabı ve açıklamayı göster

Cevap: Clientless SSL VPN

Cevap

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.

Adım Adım Çözüm

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.

Anahtar Kavram

Clientless SSL VPN vs Client-based Remote Access and Site-to-Site VPNs
Soru 57Soru

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?

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

Cevabı ve açıklamayı göster

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

Cevap

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.

Adım Adım Çözüm

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.

Anahtar Kavram

Cisco IOS Local Password Hashing Types and VTY Local Authentication
Soru 58Soru

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

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

Cevabı ve açıklamayı göster

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

Cevap

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.

Adım Adım Çözüm

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.

Anahtar Kavram

Physical Access Controls vs. Technical/Administrative Controls
Soru 59Soru

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?

Cevabı ve açıklamayı göster

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

Cevap

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.

Adım Adım Çözüm

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.

Anahtar Kavram

Implicit Deny Clause in IPv4 ACLs
Soru 60Soru

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

Cevabı ve açıklamayı göster

Cevap: Untrusted

Cevap

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.

Adım Adım Çözüm

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.

Anahtar Kavram

DHCP Snooping Interface Trust States
Tahmini Süre:45s
ÖncekiSayfa 3 / 15Sonraki