Network Security

427 soru

Soru 1Soru

A network administrator configures a stateless extended IPv4 Access Control List (ACL) on a router interface to allow workstations on the internal subnet 172.20.5.0/24172.20.5.0/24 to issue domain name queries to an external DNS server at 8.8.8.88.8.8.8. The administrator applies the following rule inbound on the LAN-facing interface:

`permit udp 172.20.5.0 0.0.0.255 host 8.8.8.8 eq 53`

Host 172.20.5.50172.20.5.50 sends DNS queries to 8.8.8.88.8.8.8, but all lookups time out. Packet captures show that outgoing requests reach the DNS server, but the responses never arrive back at the workstation. Which of the following best explains why the return traffic is failing?

Cevabı ve açıklamayı göster

Cevap: The stateless ACL does not automatically track connection state, so returning traffic from 8.8.8.88.8.8.8 is blocked by the implicit deny rule on the WAN interface.

Cevap

The stateless ACL does not automatically track connection state, so returning traffic from the external DNS server is blocked by the implicit deny rule on the returning interface.
Stateless Access Control Lists evaluate packets individually without recording connection states. While stateful firewalls track outbound sessions and dynamically permit return traffic, a stateless ACL requires explicit rules for both outbound request traffic and inbound response traffic. Without an explicit rule permitting return packets from 8.8.8.88.8.8.8 on UDP port 53 back to the client's high-numbered ephemeral port, return traffic is dropped by the default implicit deny at the end of the ACL.

Adım Adım Çözüm

1
Analyze the ACL type and traffic direction.
The configured filter is a stateless ACL operating on inbound LAN traffic.
Stateless filtering inspects individual packet headers independently and does not maintain a state table of active connections.
2
Trace the outbound and return packet flows.
Outbound traffic (source: 172.20.5.50172.20.5.50, destination: 8.8.8.8:538.8.8.8:53) matches the permit rule. Return traffic (source: 8.8.8.8:538.8.8.8:53, destination: 172.20.5.50172.20.5.50:ephemeral_port) encounters the WAN interface on the return path.
Because stateless ACLs do not automatically allow return traffic associated with outbound sessions, an explicit inbound ACL rule on the WAN interface is necessary to permit return UDP packets from source port 53.
3
Determine the cause of packet drop.
Without an explicit return permit rule, the return packets hit the mandatory implicit deny rule at the end of the return ACL.
All standard router ACLs conclude with an implicit deny all statement.

Anahtar Kavram

Stateless vs Stateful ACL Packet Handling & Return Traffic Filtering
Tahmini Süre:1m 30s
Soru 2Soru

Match each network security authentication protocol or access control framework to its corresponding architectural characteristic and transport specification.

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

Öğeler

RADIUS
TACACS+
Kerberos
802.1X

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

RADIUS matches UDP ports 1812/1813 with password-only encryption; TACACS+ matches TCP port 49 with full payload encryption and decoupled AAA; Kerberos matches Key Distribution Center tickets over port 88; 802.1X matches IEEE Layer 2 port-based access control using EAP encapsulation.
Each item is correctly matched based on its transport protocol, port assignments, and architectural mechanisms. RADIUS utilizes UDP 1812/1813 with password-only attribute encryption. TACACS+ uses TCP port 49 with full payload encryption and separate AAA processes. Kerberos relies on a KDC issuing TGTs on port 88. 802.1X specifies IEEE Layer 2 port-based network access control encapsulating EAP.

Adım Adım Çözüm

1
Analyze RADIUS transport and encryption properties
RADIUS operates over connectionless UDP (ports 1812 for authentication and 1813 for accounting), combines authentication and authorization, and encrypts only the password field.
Differentiate RADIUS transport ports and attribute encryption scope.
2
Analyze TACACS+ transport and security architecture
TACACS+ utilizes connection-oriented TCP port 49, separates the AAA components independently, and encrypts the entire packet payload.
Identify TACACS+ protocol parameters and full-payload encryption design.
3
Examine Kerberos ticket-based authentication flow
Kerberos uses a trusted KDC to issue Ticket-Granting Tickets (TGTs) and service tickets over port 88.
Relate Kerberos to single sign-on ticket architecture.
4
Examine 802.1X framework responsibilities
802.1X provides Layer 2 port-based network access control, encapsulating Extensible Authentication Protocol (EAP) frames between the endpoint supplicant and authenticator switch/AP.
Distinguish network access enforcement frameworks from backend AAA directory protocols.

Anahtar Kavram

Centralized AAA Protocols, Port Numbers, and Encryption Boundaries
Soru 3Soru

A network administrator needs to deploy a security solution that can analyze network traffic in real time and automatically drop malicious packets before they reach the internal network. Which system type and deployment mode best meets this requirement?

Cevabı ve açıklamayı göster

Cevap: An inline Network Intrusion Prevention System (NIPS)

Cevap

An inline Network Intrusion Prevention System (NIPS) is the correct choice because placing a prevention system in-band enables active dropping of malicious traffic in real time.
An inline Network Intrusion Prevention System (NIPS) sits directly in the communication path (in-band). This placement allows it to evaluate live traffic and immediately block, reset, or drop malicious network traffic before it penetrates the internal network.

Adım Adım Çözüm

1
Identify the required operational capability from the scenario.
The requirement specifies that the system must automatically drop malicious packets in real time.
Active mitigation requires an inline prevention mechanism rather than passive detection.
2
Determine the necessary placement and device type.
Selecting a Network Intrusion Prevention System (NIPS) deployed in-band (inline).
An inline NIPS processes traffic as it passes through the device, granting the authority to drop blocked packets before they reach internal targets.

Anahtar Kavram

Inline NIPS vs. Passive NIDS Deployment
Soru 4Soru

During a security audit of network infrastructure management practices, an auditor notes that switch management sessions rely on a protocol that encrypts only the password field within packet headers and combines authentication and authorization into a single service over UDP. To achieve full payload encryption, command-by-command authorization decoupling, and reliable connection-oriented transport on port 49, which protocol should be deployed?

Cevabı ve açıklamayı göster

Cevap: TACACS+

Cevap

TACACS+ (Terminal Access Controller Access-Control System Plus) should be deployed because it operates over TCP port 49, encrypts the entire packet payload, and decouples authentication and authorization into distinct modular processes.
TACACS+ satisfies all requirement criteria: it uses connection-oriented TCP port 49, encrypts the complete packet payload (protecting administrative command traffic), and separates authentication, authorization, and accounting into distinct modular components.

Adım Adım Çözüm

1
Evaluate transport layer and encryption scope requirements.
The requirement specifies full packet payload encryption and connection-oriented transport over TCP port 49.
TACACS+ utilizes TCP port 49 and encrypts the entire body of the packet, whereas RADIUS only encrypts the password attribute over UDP.
2
Analyze AAA service architectural separation.
The targeted protocol must decouple authentication from authorization functionality.
TACACS+ separates AAA functions, allowing granular authorization of individual admin commands independently of authentication, whereas RADIUS combines authentication and authorization.

Anahtar Kavram

RADIUS vs. TACACS+ Feature & Architectural Differentiation
Tahmini Süre:1m 15s
Soru 5Soru

A network administrator configures an extended IPv4 Access Control List (ACL) on a router interface filtering inbound traffic toward an internal database subnet (10.50.10.0/2410.50.10.0/24). The ACL is designed to meet three requirements:
1. Allow secure administration from a jump host at 10.50.1.1510.50.1.15 via SSH (TCP 22).
2. Allow application servers on subnet 10.50.2.0/2410.50.2.0/24 to access the database server at 10.50.10.10010.50.10.100 on TCP port 5432.
3. Block all other traffic originating from subnet 10.50.2.0/2410.50.2.0/24.

The administrator enters the following ACL entries in sequential order:
- Entry 10: `permit tcp host 10.50.1.15 10.50.10.0 0.0.0.255 eq 22`
- Entry 20: `deny ip 10.50.2.0 0.0.0.255 10.50.10.0 0.0.0.255`
- Entry 30: `permit tcp 10.50.2.0 0.0.0.255 host 10.50.10.100 eq 5432`

During testing, application servers on subnet 10.50.2.0/2410.50.2.0/24 are unable to establish database connections to 10.50.10.100:543210.50.10.100:5432. Which of the following best explains why this configuration fails?

Cevabı ve açıklamayı göster

Cevap: The sequential top-down evaluation matches application server traffic against Entry 20 first, resulting in an explicit deny before Entry 30 is evaluated.

Cevap

The configuration fails because ACL rules are evaluated sequentially from top to bottom, causing traffic from 10.50.2.0/24 to match the broad deny rule in Entry 20 before reaching the specific permit rule in Entry 30.
Router access control lists utilize a first-match rule processing mechanism. Because Entry 20 specifies a broad deny for all IP traffic from subnet 10.50.2.0/24 to 10.50.10.0/24, packets intended for port 5432 match Entry 20 immediately and are discarded. Entry 30 is never evaluated for this traffic. To resolve this, specific permit rules must always precede broader deny statements.

Adım Adım Çözüm

1
Analyze how Access Control Lists evaluate incoming packets.
Network devices evaluate ACL entries sequentially starting from the lowest line number (top-down) and apply the action of the first matching rule, terminating further rule checks for that packet.
Understanding first-match execution logic is essential for placing ACL entries correctly.
2
Trace a packet sent from an application server (e.g., 10.50.2.50) to the database server (10.50.10.100:5432) through the ACL entries.
Entry 10 does not match (source host differs). Entry 20 matches because the source 10.50.2.50 is within 10.50.2.0/24 and destination 10.50.10.100 is within 10.50.10.0/24.
Determining which entry matches first identifies why the traffic is dropped.
3
Determine the necessary structural fix for the ACL sequence.
Entry 30 (the specific permit rule for port 5432) must be placed above Entry 20 (the broad deny rule for the subnet).
Specific permit rules must precede broader deny statements to prevent premature packet drops.

Anahtar Kavram

ACL Sequential Logic and Rule Ordering
Soru 6Soru

A network technician discovers that queries sent to the local DNS server for a company intranet portal are resolving to an unauthorized external IP address due to corrupted cache entries. Which network attack vector does this scenario describe?

Cevabı ve açıklamayı göster

Cevap: DNS poisoning

Cevap

DNS poisoning
DNS poisoning directly targets the DNS caching mechanism by inserting invalid IP mappings into the resolver's store, forcing clients requesting domain lookups to connect to an attacker-controlled endpoint.

Adım Adım Çözüm

1
Analyze the reported symptom in the scenario
Domain name resolution requests are being diverted to an unauthorized IP address because false entries were stored in the DNS server cache.
Identifying where the manipulation occurs (Layer 7 DNS cache vs Layer 2 ARP cache) is critical for determining the attack vector.
2
Match the mechanism to the correct attack classification
Injecting fraudulent IP mappings into a DNS caching resolver is defined as DNS cache poisoning.
This mechanism manipulates name resolution services to misdirect client connection requests.

Anahtar Kavram

DNS Cache Poisoning
Soru 7Soru

A security technician needs to configure an extended Access Control List (ACL) rule on a router to permit secure HTTPS web traffic from an internal subnet to an external web server. Which transport protocol and destination port combination must be specified in the ACL rule to correctly match this traffic?

Cevabı ve açıklamayı göster

Cevap: TCP protocol with destination port 443

Cevap

TCP protocol with destination port 443
HTTPS (Hypertext Transfer Protocol Secure) encrypts web communications using TLS/SSL and operates over the reliable Transmission Control Protocol (TCP) on standard destination port 443. An extended Access Control List filtering this traffic must specify TCP as the protocol and 443 as the destination port.

Adım Adım Çözüm

1
Identify the application layer protocol requested in the scenario.
The scenario specifies secure HTTPS web traffic.
Understanding the required application service determines the transport protocol and port number.
2
Determine the transport layer protocol used by HTTPS.
HTTPS requires TCP to establish reliable, stateful connections via TLS/SSL.
Web traffic requires reliable deliverability and packet ordering provided by TCP rather than connectionless UDP.
3
Determine the standard destination port assigned to HTTPS.
The standard well-known port for HTTPS is port 443.
Standard port numbers allow firewalls and extended ACLs to inspect and filter network traffic accurately based on service type.

Anahtar Kavram

ACL Port and Protocol Matching for Secure Web Services
Soru 8Soru

A network administrator is auditing the physical and environmental security controls of a newly built enterprise data center. During inspection, the administrator notes that the HVAC system is maintaining ambient relative humidity at 15% inside the server room. Which of the following recommendations should the administrator make to address the primary risk caused by this environmental condition?

Cevabı ve açıklamayı göster

Cevap: Increase relative humidity to between 40% and 55% to mitigate the heightened risk of electrostatic discharge (ESD).

Cevap

Increase relative humidity to between 40% and 55% to mitigate the heightened risk of electrostatic discharge (ESD).
Low relative humidity (below 40%) causes air to become excessively dry, significantly increasing the accumulation of static electricity. This creates a severe risk of electrostatic discharge (ESD) events that can destroy delicate microprocessors and network expansion cards. Maintaining relative humidity between 40% and 55% safely dissipates static charges while avoiding condensation.

Adım Adım Çözüm

1
Analyze the reported relative humidity level of 15% in the server room.
Identify that 15% humidity is extremely dry and falls well below the industry-standard minimum threshold of 40%.
Air with low moisture content acts as an insulator, allowing static electrical charges to accumulate easily on surfaces, cables, and personnel.
2
Determine the primary physical hardware threat associated with low humidity.
Recognize that static buildup leads to electrostatic discharge (ESD), which can permanently damage sensitive network switches, routers, and server motherboards.
ESD events can occur at voltage levels far below what a human can feel, causing immediate component destruction or latent degradation.
3
Select the appropriate environmental control adjustment.
Recommend increasing relative humidity to the standard target range of 40% to 55%.
This target range prevents static electricity accumulation while remaining low enough to prevent moisture condensation on hardware surfaces.

Anahtar Kavram

Environmental Controls and Humidity Management in Server Rooms
Soru 9Soru

A network engineer at a high-density regional hospital is upgrading the facility's wireless infrastructure to improve security and auditability. The security policy mandates that every medical staff member must authenticate to the corporate SSID using their unique Active Directory credentials, allowing central logging of user sessions via 802.1X RADIUS. During the deployment planning, a technician proposes configuring WPA3-Personal with Simultaneous Authentication of Equals (SAE) and distributing unique static passphrases to staff groups to avoid modifying existing RADIUS server certificate policies. Which of the following best explains why the technician's proposed solution fails to meet the corporate security mandate, and what configuration must be enforced instead?

Cevabı ve açıklamayı göster

Cevap: WPA3-Personal using SAE relies on pre-shared passphrase authentication rather than centralized 802.1X RADIUS credential validation; WPA3-Enterprise must be deployed to integrate with Active Directory user identities.

Cevap

WPA3-Personal using SAE relies on pre-shared passphrase authentication rather than centralized 802.1X RADIUS credential validation; WPA3-Enterprise must be deployed to integrate with Active Directory user identities.
WPA3-Personal uses Simultaneous Authentication of Equals (SAE) to secure password-based connections against offline dictionary attacks, but it remains a pre-shared key technology that cannot pass individual user credentials to an 802.1X RADIUS server. To fulfill the mandate of authenticating staff members individually against Active Directory with centralized RADIUS accounting, the network must enforce WPA3-Enterprise.

Adım Adım Çözüm

1
Analyze the security mandate requirements
Identified two primary requirements: individual user credential authentication against Active Directory via 802.1X RADIUS and centralized session auditability.
Security mandates require mapping network access to unique user identities rather than shared group credentials.
2
Evaluate the technician's proposed WPA3-Personal (SAE) solution
Determined that SAE (Simultaneous Authentication of Equals) replaces the WPA2-Pre-Shared Key (PSK) mechanism to protect against offline dictionary attacks, but still operates on a passphrase basis.
SAE lacks support for Extensible Authentication Protocol (EAP) mechanisms needed to query backend 802.1X RADIUS servers for individual domain credentials.
3
Determine the required security standard
Selected WPA3-Enterprise as the mandatory standard.
WPA3-Enterprise explicitly enforces 802.1X EAP authentication, enabling individual Active Directory user authentication and RADIUS session accounting.

Anahtar Kavram

Wireless Security Standards and Encryption Protocols
Soru 10Soru

A network administrator is configuring an extended IPv4 Access Control List (ACL) on a router interface to control traffic from the client workstation subnet (172.16.10.0/24172.16.10.0/24) targeting the corporate server farm subnet (10.5.0.0/2410.5.0.0/24). The security policy specifies the following requirements for traffic destined for the database server (10.5.0.2010.5.0.20) and the rest of the server farm:

1. SSH administrative access (TCP port 22) to host 10.5.0.2010.5.0.20 must be permitted ONLY from the primary administrator workstation at IP address 172.16.10.5172.16.10.5.
2. All other SSH traffic (TCP port 22) to host 10.5.0.2010.5.0.20 originating from subnet 172.16.10.0/24172.16.10.0/24 must be explicitly blocked.
3. All non-SSH TCP traffic from subnet 172.16.10.0/24172.16.10.0/24 to host 10.5.0.2010.5.0.20 must be permitted.
4. Non-TCP IP traffic from subnet 172.16.10.0/24172.16.10.0/24 to host 10.5.0.2010.5.0.20 must be blocked.
5. All IP traffic from subnet 172.16.10.0/24172.16.10.0/24 to all other servers in subnet 10.5.0.0/2410.5.0.0/24 must be permitted.

In what top-to-bottom sequential order must the ACL entries be placed on the interface to enforce this security policy without rule shadowing?

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

Cevabı ve açıklamayı göster

Cevap

The correct sequence from top to bottom is: permit SSH for host 172.16.10.5 -> deny SSH for subnet 172.16.10.0/24 -> permit all TCP for subnet 172.16.10.0/24 to host 10.5.0.20 -> deny all IP for subnet 172.16.10.0/24 to host 10.5.0.20 -> permit all IP for subnet 172.16.10.0/24 to subnet 10.5.0.0/24.
Extended Access Control Lists evaluate entries sequentially from top to bottom, stopping at the first match. To enforce granular control without rule shadowing, rules must be ordered from most specific to least specific: (1) Host-specific SSH permit for host 172.16.10.5, (2) Subnet-wide SSH deny for host 10.5.0.20, (3) Subnet-wide TCP permit for host 10.5.0.20, (4) Subnet-wide IP deny for host 10.5.0.20, and (5) Subnet-wide IP permit for the entire 10.5.0.0/24 destination network.

Adım Adım Çözüm

1
Place the specific host SSH permit statement first.
access-list 102 permit tcp host 172.16.10.5 host 10.5.0.20 eq 22 is evaluated first.
ACLs process rules sequentially top-to-bottom. Placing host 172.16.10.5 first allows the administrator's workstation to connect over SSH before any broader deny rules take effect.
2
Place the subnet SSH deny statement second.
access-list 102 deny tcp 172.16.10.0 0.0.0.255 host 10.5.0.20 eq 22 is evaluated second.
Placing this rule immediately below the host SSH permit entry blocks SSH access for all other hosts in subnet 172.16.10.0/24 while preventing it from shadowing the permit entry above.
3
Place the general TCP permit statement for host 10.5.0.20 third.
access-list 102 permit tcp 172.16.10.0 0.0.0.255 host 10.5.0.20 is evaluated third.
Because SSH (port 22) has already been filtered by the top two rules, this rule permits all other TCP traffic (e.g., HTTP/HTTPS) to host 10.5.0.20. If placed above rule 2, it would incorrectly permit SSH for the entire subnet.
4
Place the full IP deny statement for host 10.5.0.20 fourth.
access-list 102 deny ip 172.16.10.0 0.0.0.255 host 10.5.0.20 is evaluated fourth.
This blocks all non-TCP IP traffic (such as ICMP or UDP) targeting host 10.5.0.20. Placing it below the TCP permit rule ensures TCP traffic to host 10.5.0.20 is allowed first.
5
Place the subnet-wide IP permit statement fifth.
access-list 102 permit ip 172.16.10.0 0.0.0.255 10.5.0.0 0.0.0.255 is evaluated fifth.
This allows traffic to all other servers in subnet 10.5.0.0/24. Placing it at the bottom prevents it from permitting unauthorized traffic to host 10.5.0.20.

Anahtar Kavram

ACL Rule Evaluation Order and Shadowing Prevention
Soru 11Soru

A network administrator is designing security controls for transmitting sensitive corporate financial records between two remote office sites over an untrusted public network. The controls must ensure that unauthorized parties cannot intercept and read the data, and that any tampering during transit is immediately detected. Which TWO of the following technical mechanisms should the administrator implement to satisfy these requirements? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Encapsulating Security Payload (ESP) encryption to enforce data confidentiality; Hash-based Message Authentication Codes (HMAC) to guarantee data integrity

Cevap

Encapsulating Security Payload (ESP) encryption and Hash-based Message Authentication Codes (HMAC) are the correct mechanisms.
Encapsulating Security Payload (ESP) encryption ensures that data payload contents cannot be read by unauthorized interceptors (Confidentiality). Hash-based Message Authentication Codes (HMAC) ensure that any changes made to the data during transit can be detected by verifying the cryptographic hash (Integrity). Together, these mechanisms satisfy both mandatory requirements.

Adım Adım Çözüm

1
Identify the confidentiality requirement
Preventing unauthorized interception and reading of data in transit requires payload encryption.
Encryption transforms plaintext into ciphertext so unauthenticated listeners cannot decode the content.
2
Identify the integrity requirement
Detecting unauthorized tampering or modification of data in transit requires cryptographic hashing or message authentication codes.
Integrity mechanisms allow the recipient to verify that packet contents have not altered since transmission.
3
Select matching technical controls
ESP encryption delivers confidentiality, and HMAC delivers data integrity.
These controls directly map to the confidentiality and integrity pillars of the CIA triad.

Anahtar Kavram

CIA Triad: Confidentiality and Integrity Controls in Transit
Soru 12Soru

A network security engineer is deploying a remote access VPN solution using L2TP over IPsec (L2TP/IPsec) to support remote workers connecting from behind residential NAT routers. Authentication will be offloaded to a central enterprise AAA server. Which of the following port and protocol configurations must be permitted on the network firewalls and VPN gateway to ensure successful connection establishment and authentication? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: UDP ports 500 and 4500 must be opened inbound to allow Internet Key Exchange (IKE) negotiation and IPsec NAT Traversal (NAT-T).; UDP port 1701 must be permitted to transport encapsulated Layer 2 Tunneling Protocol data frames.

Cevap

The correct configurations are opening UDP ports 500 and 4500 for IKE negotiation and IPsec NAT-T, and permitting UDP port 1701 for L2TP frame encapsulation.
In an L2TP/IPsec VPN deployment across NAT gateways, IPsec requires UDP port 500 for initial IKE negotiations and UDP port 4500 for NAT Traversal (NAT-T), which wraps encrypted ESP packets inside UDP headers to preserve integrity across PAT devices. Meanwhile, L2TP handles session encapsulation using UDP port 1701.

Adım Adım Çözüm

1
Identify the key requirements for L2TP over IPsec tunnel establishment behind NAT.
IPsec relies on IKE (UDP port 500) for security association negotiation. Because NAT alters IP headers and breaks IPsec ESP integrity checks, NAT Traversal (NAT-T) encapsulates ESP within UDP port 4500 packets.
NAT-T allows IPsec traffic to traverse Network Address Translation (PAT) devices smoothly.
2
Determine the transport protocol and port used by L2TP.
L2TP handles multiplexing and PPP frame encapsulation over UDP port 1701.
L2TP does not use TCP; it uses UDP for low-overhead encapsulation before IPsec secures the packet payload.
3
Differentiate AAA protocol behaviors for remote user authentication.
RADIUS uses UDP ports 1812/1813 (or legacy 1645/1646) and encrypts only passwords, while TACACS+ uses TCP port 49 and encrypts the entire payload.
Confusing RADIUS and TACACS+ port assignments and encryption scope leads to incorrect firewall rules for backend AAA traffic.

Anahtar Kavram

L2TP/IPsec VPN NAT Traversal and AAA Protocol Integration
Soru 13Soru

An organization is deploying an enterprise remote access VPN solution for mobile users who frequently operate behind Carrier-Grade NAT (CGNAT) and restrictive corporate firewalls. The network security team requires mutual certificate authentication, complete confidentiality of internal IP headers, and seamless NAT traversal without dropping integrity checks. Which of the following technical configurations and protocol mechanisms must be selected to satisfy these requirements? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Enable IPsec NAT-Traversal (NAT-T) to encapsulate Encapsulating Security Payload (ESP) packets within UDP port 4500 when an intermediate NAT device is detected.; Utilize IPsec Encapsulating Security Payload (ESP) in Tunnel mode paired with EAP-TLS to encrypt the entire inner IP packet and enforce mutual certificate authentication.

Cevap

The required configurations are enabling NAT-Traversal to encapsulate ESP packets in UDP port 4500 and deploying IPsec ESP in Tunnel mode combined with EAP-TLS for full IP packet encryption and mutual certificate authentication.
The correct selection involves leveraging NAT-Traversal (NAT-T) over UDP port 4500 and deploying ESP in Tunnel mode with EAP-TLS. ESP Tunnel mode encrypts both the inner payload and the inner IP header, fulfilling the requirement for complete packet confidentiality, while EAP-TLS ensures mutual certificate authentication. NAT-T wraps ESP traffic inside standard UDP packets so stateful firewalls and CGNAT devices can properly map translation entries without invalidating cryptographic checksums.

Adım Adım Çözüm

1
Analyze confidentiality and authentication requirements
Full confidentiality of the original IP header and payload requires IPsec ESP in Tunnel mode. Mutual certificate authentication is provided by EAP-TLS.
Transport mode leaves the original IP header unencrypted, while Tunnel mode encapsulates the complete original IP packet inside a new IP header.
2
Evaluate NAT traversal compatibility
Standard ESP operates directly on top of IP (IP Protocol 50) without L4 port numbers, causing NAT mapping failures. NAT-T encapsulates ESP in UDP port 4500 after detecting NAT during IKE negotiations.
Encapsulating ESP in UDP port 4500 enables intermediate routers and CGNAT gateways to track network translation tables via standard port numbers.
3
Evaluate protocol flaws in incorrect choices
Authentication Header (AH) does not offer encryption and fails across NAT. Additionally, IKEv2 relies on UDP port 500/4500, not TCP port 500.
AH includes the IP header in its ICV calculation, making it incompatible with NAT IP address translation, while TCP port 500 is a non-existent standard port combination for IKE.

Anahtar Kavram

IPsec Tunnel Mode vs. Transport Mode & NAT-Traversal Mechanisms
Soru 14Soru

A network administrator needs to construct an IPv4 extended Access Control List (ACL) to filter traffic originating from the internal subnet 192.168.1.0/24192.168.1.0/24. The security policy requires the following requirements in order of processing:
1. Allow host 192.168.1.25192.168.1.25 to access web server 10.10.10.510.10.10.5 using secure HTTPS (port 443).
2. Block all other hosts on the 192.168.1.0/24192.168.1.0/24 subnet from reaching server 10.10.10.510.10.10.5.
3. Permit all remaining outbound traffic from subnet 192.168.1.0/24192.168.1.0/24 to any other destination.
4. Catch and drop all remaining unspecified IP traffic.

In what order should these ACL statements be evaluated from top to bottom to satisfy the security policy without shadowing any rules?

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

Cevabı ve açıklamayı göster

Cevap

The correct order of ACL statements from top to bottom is: (1) permit tcp host 192.168.1.25 host 10.10.10.5 eq 443, (2) deny ip 192.168.1.0 0.0.0.255 host 10.10.10.5, (3) permit ip 192.168.1.0 0.0.0.255 any, and (4) deny ip any any.
Router Access Control Lists process entries sequentially from top to bottom and stop at the first matching rule. To ensure correct policy enforcement, rules must be arranged from most specific (individual host and port permissions) to most general (subnet permits and implicit deny statements). Placing the host-specific permit for TCP port 443 first allows host 192.168.1.25 to reach server 10.10.10.5. Placing the subnet deny rule second blocks all other hosts in 192.168.1.0/24 from reaching server 10.10.10.5. Placing the subnet permit rule third allows subnet 192.168.1.0/24 to reach all other destinations. Placing the deny-all rule last catches all non-matching traffic.

Adım Adım Çözüm

1
Place the most specific host exception rule at the top of the list.
traffic matching host 192.168.1.25 destined for 10.10.10.5 on TCP port 443 is matched immediately and permitted.
ACLs process rules sequentially using a first-match mechanism. Host-specific rules must precede subnet-level rules to avoid being shadowed.
2
Place the specific subnet-to-server deny rule immediately after the host permit exception.
Any other packet originating from 192.168.1.0/24 heading to 10.10.10.5 is matched and denied.
This enforces the requirement to block the rest of the 192.168.1.0/24 subnet from reaching the server.
3
Place the general permit rule for subnet 192.168.1.0/24 after the server restriction.
Traffic from 192.168.1.0/24 aimed at destinations other than 10.10.10.5 is permitted.
Packets reaching this rule have already been checked against the server restriction rules, allowing normal outgoing network communication for the subnet.
4
Place the default deny statement at the bottom of the ACL.
Any packet not matching the 192.168.1.0/24 source criteria is explicitly dropped.
Ensures zero-trust security by dropping all unhandled packets at the end of the ACL processing sequence.

Anahtar Kavram

First-match sequential rule evaluation and rule shadowing prevention in Access Control Lists (ACLs)
Tahmini Süre:1m 0s
Soru 15Soru

A network engineer is configuring a centralized AAA server to support 802.1X port-based network access control across an enterprise wireless deployment. Which configuration parameters accurately specify the default transport protocol and port assignments required for standard RADIUS authentication and accounting services?

Cevabı ve açıklamayı göster

Cevap: UDP ports 1812 for authentication and 1813 for accounting

Cevap

The standard configuration for RADIUS authentication and accounting uses UDP ports 1812 and 1813, respectively.
Standard RADIUS implementation relies on UDP transport, utilizing port 1812 for authentication/authorization and port 1813 for accounting.

Adım Adım Çözüm

1
Identify the transport protocol used by RADIUS
RADIUS uses User Datagram Protocol (UDP) for low-overhead client-server communication.
Understanding transport protocol requirements is critical for proper firewall and service configuration.
2
Identify standard RADIUS service port assignments
RFC 2865 assigns UDP port 1812 for RADIUS authentication/authorization, and RFC 2866 assigns UDP port 1813 for RADIUS accounting.
Centralized AAA authentication servers rely on these specific port bindings to separate authentication requests from audit/accounting logs.

Anahtar Kavram

RADIUS Operational Parameters and Port Assignments
Soru 16Soru

A system auditor observes that malicious encrypted TLS command-and-control (C2) traffic traversing an internal server VLAN went completely undetected by a newly installed Network Intrusion Detection System (NIDS) connected to a core switch SPAN port. The organization requires a security solution that can inspect host system calls, file integrity changes, and decrypted application memory buffers on critical servers without altering network physical cabling or introducing a single point of failure that causes latency on the switch hardware. Which solution should be implemented to fulfill these security and architectural requirements?

Cevabı ve açıklamayı göster

Cevap: Deploy a Host-based Intrusion Detection System (HIDS) directly on the critical target servers.

Cevap

Deploying a Host-based Intrusion Detection System (HIDS) directly on the critical target servers provides local process, file integrity, and decrypted memory visibility without impacting network switch latency or introducing single-point-of-failure hardware topology dependencies.
Deploying a Host-based Intrusion Detection System (HIDS) directly on the target servers allows inspection of host system calls, unencrypted memory buffers, system logs, and file modifications. Because HIDS operates on the endpoint OS rather than inline on the physical network switch, it avoids introducing network latency or inline failure points while solving the network encryption visibility gap.

Adım Adım Çözüm

1
Analyze the limitation of out-of-band network-level monitoring (NIDS) against encrypted traffic.
Network-based passive sensors (NIDS) connected to SPAN/TAP ports only inspect network packet payloads in transit, which remain encrypted under TLS/SSL.
Out-of-band NIDS cannot inspect payload content or host memory without TLS session keys or host-level access.
2
Evaluate host-level versus network-level deployment options against constraints.
Host-based Intrusion Detection Systems (HIDS) monitor operating system calls, host log files, process activity, and unencrypted memory buffers locally on the host.
HIDS bypasses network transport encryption limitations by operating at the OS level while remaining out of the physical network forwarding path.
3
Select the host security solution that meets performance and reliability requirements.
Installing a HIDS on the target servers provides the necessary threat detection without adding physical latency or inline hardware network failure risks to switch links.
It fulfills the requirement for deep payload and host-state inspection without introducing inline network bottlenecks.

Anahtar Kavram

HIDS vs NIDS/NIPS Visibility and Deployment Architecture
Soru 17Soru

A network administrator is designing a secure transport mechanism for automated database replication traffic sent between two geographically separated data centers over the public internet. The design must specifically ensure both the confidentiality of the database records and the integrity of the data while in transit. Which TWO of the following technical controls should the administrator implement to satisfy these core security objectives?

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

Cevabı ve açıklamayı göster

Cevap: IPsec Encapsulating Security Payload (ESP) operating in tunnel mode to encrypt the network payload; Hash-based Message Authentication Code (HMAC) validation on each transmitted data packet

Cevap

The administrator should implement IPsec Encapsulating Security Payload (ESP) in tunnel mode for payload encryption (confidentiality) and Hash-based Message Authentication Codes (HMAC) for packet-level tampering detection (integrity).
IPsec Encapsulating Security Payload (ESP) encrypts packet contents to guarantee confidentiality across untrusted networks, while Hash-based Message Authentication Codes (HMAC) supply cryptographic checksums to detect data alteration during transmission, securing integrity.

Adım Adım Çözüm

1
Identify the CIA triad security requirements specified in the scenario
The requirements are data confidentiality (preventing unauthorized reading) and data integrity (preventing unauthorized alteration) for data in transit.
Security controls must match the specific threat vector and required pillar of the CIA triad.
2
Evaluate candidate controls for confidentiality in transit
IPsec ESP provides symmetric encryption of packet payloads across untrusted networks like the internet.
Encryption transforms plaintext data into ciphertext, preserving confidentiality.
3
Evaluate candidate controls for integrity in transit
HMAC generates a cryptographic checksum coupled with a secret key to detect modification or corruption.
Any alteration to the payload during transit will result in a mismatched hash value at the receiving end.

Anahtar Kavram

Mapping Security Mechanisms to CIA Triad Pillars (Confidentiality & Integrity)
Soru 18Soru

A network administrator configures a clientless SSL/TLS VPN on the corporate gateway to allow remote contractors access to internal management applications. The contractors can successfully authenticate and access internal web portals using their web browsers. However, they report being unable to connect to internal servers using native SSH desktop applications. Which of the following best explains why native SSH sessions fail in this deployment?

Cevabı ve açıklamayı göster

Cevap: Clientless SSL/TLS VPNs operate at the Application layer via a web browser and do not provide network-layer IP encapsulation or routing for standalone desktop applications.

Cevap

Clientless SSL/TLS VPNs operate at the Application layer via a web browser and do not provide network-layer IP encapsulation or routing for standalone desktop applications.
A clientless SSL/TLS VPN relies on a standard web browser to provide remote access to web-based services (HTTP/HTTPS) operating at the Application layer. Because no virtual network adapter or client software is installed on the user host, network-layer (Layer 3) IP routing and packet encapsulation are not established. Consequently, standalone client applications such as native SSH, RDP, or FTP clients cannot send traffic through the tunnel.

Adım Adım Çözüm

1
Analyze the VPN architecture type described in the scenario.
The scenario specifies a clientless SSL/TLS VPN accessed through a web browser.
Clientless VPNs rely on standard web browsers operating at the Application layer (Layer 7) without requiring client software installation.
2
Evaluate the capabilities and limitations of clientless SSL/TLS VPNs regarding non-web traffic.
Clientless SSL VPNs proxy web applications (HTTP/HTTPS) presented inside the browser interface, but do not create a virtual network interface card (NIC) to route system-wide Layer 3/4 traffic.
Standalone desktop applications like native SSH clients require Layer 3 network tunneling (such as client-based SSL VPNs or IPsec) to route traffic through the gateway.
3
Identify the correct reason for the SSH connection failure.
Native SSH client applications cannot transmit packets through the browser-bound clientless tunnel.
Full IP encapsulation is required for desktop client software, which is absent in a clientless SSL deployment.

Anahtar Kavram

Clientless SSL/TLS VPN vs. Client-based VPN Architecture
Soru 19Soru

A network security administrator is organizing the organization's access control architecture. Match each authentication protocol or framework to its correct operational characteristic and transport mechanism.

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

Öğeler

RADIUS
TACACS+
IEEE 802.1X
Kerberos

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

RADIUS matches with partial packet encryption over UDP 1812/1813; TACACS+ matches with full payload encryption over TCP 49; IEEE 802.1X matches with the port-based EAP encapsulation framework; Kerberos matches with KDC and Ticket-Granting Ticket issuance over port 88.
Each protocol correctly aligns with its architectural design: RADIUS provides combined authentication/authorization with UDP transport (1812/1813) encrypting passwords; TACACS+ separates AAA services using TCP 49 with full payload encryption; 802.1X serves as the Layer 2 EAP port-based access framework; and Kerberos relies on a KDC for TGT issuance over port 88.

Adım Adım Çözüm

1
Analyze transport protocols and encryption scope for remote user vs. device access protocols.
RADIUS uses UDP ports 1812/1813 and encrypts only the password, whereas TACACS+ uses TCP port 49 and encrypts the entire payload.
RADIUS was designed for broad client network access and user dial-in/VPN connection tracking, while TACACS+ was designed for granular network infrastructure management.
2
Evaluate port-based access control and local ticket-based network authentication protocols.
IEEE 802.1X defines port control using EAP encapsulation, while Kerberos provides ticket-granting ticket authentication via a Key Distribution Center.
802.1X prevents unauthenticated devices from connecting to physical switch ports or wireless access points, while Kerberos manages identity access tickets across domain resources.

Anahtar Kavram

Centralized AAA Frameworks, Port-Based Network Access Control, and Protocol Characteristics
Soru 20Soru

A network technician is configuring a centralized authentication protocol for remote access VPN clients. Which protocol encrypts only the password within the packet payload and operates over UDP?

Cevabı ve açıklamayı göster

Cevap: RADIUS

Cevap

RADIUS (Remote Authentication Dial-In User Service) is the protocol that encrypts only the password field and relies on UDP.
RADIUS (Remote Authentication Dial-In User Service) combines authentication and authorization into a single service, uses UDP for transport (ports 1812 and 1813), and encrypts only the user password within the packet payload.

Adım Adım Çözüm

1
Identify the transport protocol requirement
The question specifies UDP as the transport protocol, ruling out protocols using TCP.
RADIUS utilizes UDP (ports 1812/1813), whereas TACACS+ utilizes TCP (port 49).
2
Evaluate payload encryption behavior
RADIUS encrypts only the password in the Access-Request packet payload, leaving the remainder of the header unencrypted.
TACACS+ encrypts the entire payload body, distinguishing it from RADIUS.

Anahtar Kavram

RADIUS vs TACACS+ Protocol Differences
Sayfa 1 / 22Sonraki
Network Security Alıştırma Soruları — CompTIA Network+ | Examkin