Network Security

427 soru

Soru 301Soru

A network operations team is upgrading their device management infrastructure to implement centralized command-level access control on enterprise routers. They select TACACS+ over RADIUS to fulfill this security requirement. Which technical capability of TACACS+ directly supports restricting specific administrative commands on a per-user basis?

Cevabı ve açıklamayı göster

Cevap: The strict separation of authentication and authorization processes, paired with full packet payload encryption over TCP

Cevap

The strict separation of authentication and authorization processes, paired with full packet payload encryption over TCP
TACACS+ decouples authentication, authorization, and accounting functions within the AAA framework. This separation allows network access devices to send individual authorization requests to the TACACS+ server for each CLI command an administrator attempts to execute. Additionally, TACACS+ operates over TCP port 49 and encrypts the entire packet payload, providing comprehensive security for administrative device management.

Adım Adım Çözüm

1
Analyze the requirement for per-command administrative authorization
Determine that granular command-level authorization requires decoupling authentication from authorization in the AAA architecture.
When authentication and authorization are combined, authorization happens once at login rather than dynamically per CLI command.
2
Compare RADIUS and TACACS+ AAA architecture features
TACACS+ decouples AAA components, allowing independent authorization requests for every CLI command entered by an administrator. RADIUS combines authentication and authorization.
Decoupled architecture in TACACS+ enables dynamic per-command authorization.
3
Evaluate protocol transport and encryption specifications
TACACS+ uses TCP port 49 and encrypts the entire body of the packet, whereas RADIUS uses UDP (ports 1812/1813) and encrypts only the password field.
Full payload encryption provides maximum confidentiality for sensitive administrative session traffic.

Anahtar Kavram

AAA Protocol Differentiation (RADIUS vs TACACS+)
Tahmini Süre:1m 30s
Soru 302Soru

Match each Virtual Private Network (VPN) or remote access technology on the left with its core security or operational characteristic on the right.

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

Öğeler

Clientless SSL/TLS VPN
IPsec Encapsulating Security Payload (ESP)
IPsec Authentication Header (AH)
Generic Routing Encapsulation (GRE)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Clientless SSL/TLS VPN matches browser-based access using TCP 443 without client software; IPsec ESP matches payload encryption and integrity via IP protocol 50; IPsec AH matches complete IP packet integrity via IP protocol 51 incompatible with NAT; GRE matches unencrypted encapsulation of multicast and routing traffic.
Each VPN and remote access technology aligns directly with its primary operating mode: Clientless SSL/TLS VPN enables client-free web access on TCP 443; IPsec ESP encrypts payloads using IP protocol 50; IPsec AH authenticates entire IP headers via IP protocol 51 (which breaks under NAT modification); and GRE provides unencrypted multiprotocol tunneling.

Adım Adım Çözüm

1
Analyze client-side software requirements for remote access portals.
Clientless SSL/TLS VPN establishes remote access within standard web browser sessions over TCP 443, eliminating endpoint software deployment.
Web portals leverage built-in browser cryptography for lightweight remote connectivity.
2
Differentiate between IPsec ESP and AH header capabilities and NAT interactions.
ESP provides payload encryption using IP protocol 50, while AH authenticates outer IP headers using IP protocol 51, causing ICV failures when NAT alters packet headers.
AH includes mutable IP header fields in its hash verification, making it incompatible with address translation unless Nat-Traversal encapsulates it differently.
3
Evaluate multiprotocol routing encapsulation protocols.
GRE encapsulates non-IP and multicast traffic like OSPF/EIGRP updates across IP networks, but provides zero native encryption.
GRE delivers protocol versatility for site-to-site transport, relying on IPsec when confidentiality is required.

Anahtar Kavram

Virtual Private Networks and Remote Access Security protocols, IPsec modes, and tunneling mechanisms.
Soru 303Soru

A network security administrator must configure an IPv4 Access Control List (ACL) on a router to enforce network security policies for the internal subnet 172.16.10.0/24172.16.10.0/24. Place the following ACL rules in the correct top-to-bottom sequence so that host-specific restrictions are properly enforced without being shadowed by broader subnet rules.

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

Cevabı ve açıklamayı göster

Cevap

The correct top-to-bottom sequence is: 1) deny tcp host 172.16.10.5 host 192.168.1.50 eq 443, 2) permit tcp 172.16.10.0 0.0.0.255 host 192.168.1.50 eq 443, 3) permit icmp 172.16.10.0 0.0.0.255 192.168.1.0 0.0.0.255 echo, 4) deny ip any any.
Access Control Lists operate sequentially using first-match logic. Specific rules (such as blocking host 172.16.10.5) must be placed at the top of the list. Placing a general subnet permit rule above a specific host deny rule causes rule shadowing, where traffic matches the subnet permit first and the host block is never evaluated. Finally, general protocol permissions follow, and the catch-all deny rule resides at the very end.

Adım Adım Çözüm

1
Identify specific host exceptions requiring explicit denial.
Position host-specific deny rule (deny tcp host 172.16.10.5 host 192.168.1.50 eq 443) at the very top of the list.
ACLs perform top-down evaluation and stop checking rules on the first match. Placed lower, a broader permit statement would grant access unintentionally (rule shadowing).
2
Place general application traffic permits for the wider subnet.
Position the subnet permit rule (permit tcp 172.16.10.0 0.0.0.255 host 192.168.1.50 eq 443) immediately below the specific host deny.
This allows all authorized hosts in the 172.16.10.0/24 subnet to reach the HTTPS server while still enforcing the preceding host block.
3
Add auxiliary protocol permit rules.
Position ICMP Echo permit rules (permit icmp 172.16.10.0 0.0.0.255 192.168.1.0 0.0.0.255 echo) below key application permissions.
This enables diagnostic traffic across subnets without overriding specific application access controls.
4
Ensure global catch-all drop functionality.
Place explicit or implicit default deny (deny ip any any) at the bottom.
All unallowed traffic must be systematically dropped at the end of the ACL processing chain.

Anahtar Kavram

ACL First-Match Processing and Rule Shadowing
Tahmini Süre:1m 30s
Soru 304Soru

A network security administrator needs to select a security control that specifically protects log files against unauthorized modification while stored at rest on a syslog server. Which of the following technical controls directly fulfills this Integrity requirement?

Cevabı ve açıklamayı göster

Cevap: Calculating and periodically verifying SHA-256 cryptographic hashes of the stored log files

Cevap

Calculating and periodically verifying SHA-256 cryptographic hashes of the stored log files directly ensures data integrity at rest by providing a mechanism to detect any unauthorized modification of stored data.
The correct option involves generating and verifying SHA-256 cryptographic hashes. Cryptographic hashing provides one-way mathematical verification that file contents remain unaltered, directly supporting the Integrity pillar of the CIA triad for stored log files.

Adım Adım Çözüm

1
Identify the primary security requirement specified in the scenario
The requirement focuses on maintaining Integrity for stored data (preventing/detecting unauthorized modification of log files at rest).
The CIA triad categorizes protection against unauthorized alteration as Integrity.
2
Evaluate technical mechanisms designed to guarantee data integrity at rest
Cryptographic hashing algorithms like SHA-256 produce deterministic digests. Comparing current hashes against baseline hashes detects file modifications immediately.
Hashing is a one-way function specifically designed to detect data tampering.
3
Differentiate integrity controls at rest from transit protection or access control mechanisms
Transport protocols protect data in motion, RADIUS provides AAA access services, and VLANs provide network segmentation.
None of those alternative controls compute or verify file checksums for stored static files.

Anahtar Kavram

Integrity Control via Cryptographic Hashing
Soru 305Soru

An IT security administrator needs to implement a full-tunnel remote access VPN solution for traveling employees. The primary constraint is that these employees frequently connect from restrictive public Wi-Fi networks and hotels where firewalls block non-standard outbound ports as well as native IPsec protocols (such as IKE UDP 500/4500 and ESP). The chosen protocol must provide complete network-layer access to internal IP subnets while seamlessly encapsulating traffic over standard HTTPS. Which of the following VPN technologies best fulfills these requirements?

Cevabı ve açıklamayı göster

Cevap: Secure Socket Tunneling Protocol (SSTP)

Cevap

Secure Socket Tunneling Protocol (SSTP) is the optimal choice because it tunnels network traffic over TCP port 443 using SSL/TLS encryption, allowing full network access while passing through restrictive firewalls.
Secure Socket Tunneling Protocol (SSTP) transports PPP tunneling traffic over a standard SSL/TLS session using TCP port 443. Because TCP port 443 is universally enabled on firewalls for outbound HTTPS traffic, SSTP provides reliable full-tunnel network connectivity even from highly restrictive network environments.

Adım Adım Çözüm

1
Analyze the technical requirements and network environment constraints.
The requirement demands full network-layer IP routing that can pass through strict firewalls blocking native IPsec protocols (IKE/ESP) and non-standard UDP ports.
Public networks and hotel firewalls frequently restrict outbound traffic to standard web ports like TCP 80 and TCP 443.
2
Evaluate candidate protocols based on OSI layer encapsulation and transport port usage.
Secure Socket Tunneling Protocol (SSTP) encapsulates PPP frames within an SSL/TLS session over TCP port 443.
Because TCP port 443 is used for secure web browsing (HTTPS), firewalls almost universally allow it.
3
Differentiate SSTP from clientless SSL/TLS access.
SSTP acts as a full-tunnel network-level client solution, unlike clientless browser portals which only proxy specific application connections.
Full network access requires tunneling Layer 3 packets across the secure transport session.

Anahtar Kavram

Secure Socket Tunneling Protocol (SSTP) Firewall Traversal
Soru 306Soru

A network engineer is configuring a remote access Virtual Private Network (VPN) solution using Layer 2 Tunneling Protocol over IPsec (L2TP/IPsec) for corporate users. Which of the following technical characteristics and operational requirements correctly apply to this deployment? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: L2TP relies on the IPsec Encapsulating Security Payload (ESP) protocol to provide payload confidentiality and encryption.; The initial Internet Key Exchange (IKE) negotiation phase operates over UDP port 500.

Cevap

L2TP relies on IPsec ESP for encryption, and the initial IKE key exchange negotiation phase operates over UDP port 500.
L2TP provides multi-protocol tunneling mechanisms but relies on IPsec ESP to encrypt packet contents. Furthermore, IPsec uses IKE over UDP port 500 to establish the initial security associations necessary for secure communication.

Adım Adım Çözüm

1
Analyze the encryption architecture of L2TP/IPsec.
Identify that L2TP handles Layer 2 frame tunneling but relies on IPsec (specifically ESP) for encryption and integrity.
L2TP lacks built-in cryptographic mechanisms.
2
Analyze the port requirements for IPsec phase 1 negotiation.
Confirm that IKE uses UDP port 500 for authentication and key exchange.
UDP port 500 is the standard port for establishing IKE Security Associations.
3
Evaluate distractor protocols and transport modes.
Reject the statements asserting TCP port 443 usage for native L2TP encryption and TCP port 1701 for encapsulation.
L2TP uses UDP port 1701 for tunneling, lacks native encryption, and TCP port 443 is used by SSTP/SSL VPNs.

Anahtar Kavram

L2TP/IPsec VPN Protocol Requirements and Port Usage
Soru 307Soru

An administrator notices that servers mounted in the middle of several server rack rows are experiencing thermal warnings during peak utilization. Environmental monitoring reveals that cool supply air from raised floor vents is mixing directly with hot exhaust air from adjacent equipment rows prior to entering server intake fans. Which physical infrastructure design change should the network administrator implement to prevent this air mixing?

Cevabı ve açıklamayı göster

Cevap: Reorient the equipment racks into alternating rows so server intakes face intake aisles and exhausts face exhaust aisles to create hot and cold aisles.

Cevap

Reorient the equipment racks into alternating rows so server intakes face intake aisles and exhausts face exhaust aisles to create hot and cold aisles.
Arranging rack equipment into alternating hot and cold aisles physically isolates cold intake streams from hot exhaust air streams. Cold supply air enters the cold aisles to feed server intake fans, while rear server exhausts discharge heat into dedicated hot aisles for collection by environmental return ducts.

Adım Adım Çözüm

1
Analyze environmental telemetry and airflow paths
Identified that cool supply air mixes with warm exhaust air before reaching server equipment intakes.
Uniform rack orientation without containment allows hot exhaust air to loop back into intake streams.
2
Select the standard physical layout design for data center thermal management
Arrange rack rows so fronts face fronts (cold aisles) and backs face backs (hot aisles).
Hot and cold aisle containment physically separates intake air from exhaust air, maximizing HVAC cooling efficiency.

Anahtar Kavram

Hot Aisle and Cold Aisle Environmental Containment
Soru 308Soru

A network security administrator is tasked with baseline hardening for a newly installed Layer 3 enterprise switch before connecting it to the production network. Corporate security compliance mandates that the configuration must mitigate double-tagging VLAN hopping attacks on trunk connections, prevent unauthorized access on unassigned physical ports, and protect administrative sessions from eavesdropping and tampering. Which set of device hardening measures best meets these requirements?

Cevabı ve açıklamayı göster

Cevap: Change the native VLAN on all 802.1Q trunk links to an unused non-default VLAN ID, disable Dynamic Trunking Protocol (DTP) on trunk ports, shut down all unused physical switch ports and reassign them to an isolated blackhole VLAN, and enforce SSHv2 alongside SNMPv3 with authPriv for remote management.

Cevap

Change the native VLAN on all 802.1Q trunk links to an unused non-default VLAN ID, disable Dynamic Trunking Protocol (DTP) on trunk ports, shut down all unused physical switch ports and reassign them to an isolated blackhole VLAN, and enforce SSHv2 alongside SNMPv3 with authPriv for remote management.
The correct response combines comprehensive Layer 2 and management plane hardening controls. Native VLAN reassignment to a dedicated, unused VLAN ID combined with disabling DTP prevents VLAN hopping via double-tagging and unauthorized trunk formation. Moving unused ports to a non-routed blackhole VLAN while disabling them prevents physical rogue access. Enforcing SSHv2 and SNMPv3 configured with authPriv guarantees both cryptographic authentication and strong payload encryption for remote management.

Adım Adım Çözüm

1
Analyze layer 2 trunk hardening requirements.
Default VLAN 1 should never be used as the native VLAN on 802.1Q trunks because untagged frames could enable double-tagging attacks. Reassigning the native VLAN to a dummy/unused VLAN ID and explicitly disabling DTP prevents malicious trunk negotiation.
Eliminates potential VLAN hopping and untagged frame leakage vulnerabilities across trunk interfaces.
2
Analyze physical switch port security requirements.
Unused interfaces should be administratively disabled (`shutdown`) and assigned to an isolated blackhole VLAN that is not routed anywhere on the network.
Prevents unauthorized physical access to the internal network by plugging into inactive Ethernet ports.
3
Analyze management plane security requirements.
Legacy cleartext management protocols (Telnet, HTTP, SNMPv1/v2c) must be replaced with secure, encrypted alternatives (SSHv2, HTTPS, SNMPv3 with authentication and privacy/encryption).
Ensures administrative credentials and network monitoring telemetry are protected against eavesdropping and man-in-the-middle attacks.

Anahtar Kavram

Switch Baseline Hardening & Management Plane Security
Soru 309Soru

A network administrator is designing security controls for an enterprise application that transmits customer records across an untrusted network. The security policy dictates that the solution must prevent unauthorized eavesdropping on the payload content while also ensuring any unauthorized modifications to the data during transit are detected. Which TWO of the following security measures directly address these requirements?

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

Cevabı ve açıklamayı göster

Cevap: Encrypting the data payload using Transport Layer Security (TLS); Appending a Hash-based Message Authentication Code (HMAC) to the transmitted data

Cevap

The correct measures are encrypting the payload using Transport Layer Security (TLS) to enforce confidentiality, and appending a Hash-based Message Authentication Code (HMAC) to enforce message integrity.
The scenario requires addressing two pillars of the CIA Triad: Confidentiality (preventing unauthorized viewing) and Integrity (detecting unauthorized modification). Encrypting the payload with Transport Layer Security (TLS) satisfies confidentiality by scrambling data in transit. Using a Hash-based Message Authentication Code (HMAC) satisfies integrity by calculating a cryptographic checksum that reveals any tampering during transmission.

Adım Adım Çözüm

1
Identify the required CIA Triad pillars specified in the scenario
Preventing unauthorized eavesdropping maps to Confidentiality; detecting unauthorized modifications during transit maps to Integrity.
Security controls must align specifically with the targeted security goals of confidentiality and integrity.
2
Evaluate cryptographic controls that enforce Confidentiality
Transport Layer Security (TLS) encrypts session traffic, making intercepted payloads unreadable to unauthorized parties.
Encryption is the primary mechanism for maintaining data confidentiality in transit.
3
Evaluate cryptographic controls that enforce Integrity
HMAC calculates a cryptographic digest using a shared key, allowing the receiver to verify that data was not tampered with.
Hashing mechanisms (like HMAC) ensure message integrity by detecting modifications.

Anahtar Kavram

CIA Triad (Confidentiality and Integrity Controls for Data in Transit)
Soru 310Soru

An IT manager is reviewing a proposed wireless network implementation for a corporate office. The security policy mandates individual user accountability through centralized 802.1X RADIUS authentication alongside mandatory Protected Management Frames. The installation team proposes deploying WPA3-Personal with a robust shared passphrase to streamline client onboarding. Which of the following statements best evaluates this proposal against the organization's requirements?

Cevabı ve açıklamayı göster

Cevap: The proposal fails to meet requirements because WPA3-Personal uses Simultaneous Authentication of Equals (SAE) with a shared passphrase rather than individual 802.1X user authentication.

Cevap

The proposal fails to meet requirements because WPA3-Personal uses Simultaneous Authentication of Equals (SAE) with a shared passphrase rather than individual 802.1X user authentication.
WPA3-Personal is designed for home and small office networks using Simultaneous Authentication of Equals (SAE) with a pre-shared passphrase. Because all clients share the same key, it cannot provide individual user accountability or integrate with 802.1X RADIUS authentication servers. Meeting the requirement for central user authentication requires WPA3-Enterprise.

Adım Adım Çözüm

1
Identify the organization's key wireless security requirement
The requirement specifies centralized 802.1X RADIUS authentication for individual user accountability.
Enterprise security environments require unique credentials per user mapped to a central identity provider via RADIUS.
2
Evaluate the capabilities of the proposed WPA3-Personal standard
WPA3-Personal uses Simultaneous Authentication of Equals (SAE) with a shared password across devices.
SAE provides strong key exchange for pre-shared key environments but does not support EAP/802.1X RADIUS authentication.
3
Determine the correct standard and conclusion
The team must deploy WPA3-Enterprise instead of WPA3-Personal.
WPA3-Enterprise is required to integrate 802.1X RADIUS authentication for unique user account identity verification.

Anahtar Kavram

WPA3-Personal vs. WPA3-Enterprise Authentication Requirements
Soru 311Soru

A system administrator notices that log events from the client subnet 10.100.20.0/2410.100.20.0/24 are not reaching the central Syslog server located at 192.168.10.50192.168.10.50. An extended IPv4 Access Control List (ACL) applied inbound on the router interface serving the client subnet contains the following entries:

access-list 105 permit tcp 10.100.20.0 0.0.0.255 host 192.168.10.50 eq 514
access-list 105 permit udp 10.100.20.0 0.0.0.255 host 192.168.10.50 eq 161
access-list 105 deny ip any any

Which configuration error is preventing the log messages from reaching the Syslog server?

Cevabı ve açıklamayı göster

Cevap: The ACL rule permits TCP traffic on port 514, but standard Syslog operates over UDP port 514, causing the log packets to be matched and dropped by the deny rule.

Cevap

The ACL rule permits TCP traffic on port 514, but standard Syslog operates over UDP port 514, causing the log packets to be matched and dropped by the deny rule.
Standard Syslog generates event messaging over UDP port 514. The configured Access Control List explicitly specifies `tcp` for port 514 in the first rule. Because TCP and UDP are distinct transport-layer protocols, incoming UDP Syslog datagrams fail to match the first rule, fail to match the SNMP rule (UDP 161), and are ultimately discarded by the final deny statement.

Adım Adım Çözüm

1
Identify the transport protocol and port used by standard Syslog.
Standard Syslog operates over UDP using port 514.
Syslog default message transmission relies on connectionless UDP datagram delivery to port 514.
2
Evaluate the configured ACL rules against incoming Syslog packets.
The first entry permits `tcp ... eq 514` which fails to match UDP packets. The second entry permits `udp ... eq 161` (SNMP).
Because protocol type matching requires exact protocol match (TCP vs UDP), UDP 514 packets bypass rules 1 and 2.
3
Determine packet disposition after passing unmatched rules.
The packet hits `deny ip any any` and is dropped.
ACLs process rules sequentially until a match occurs; unmatched packets reach explicit or implicit deny statements.

Anahtar Kavram

Syslog Protocol & Transport ACL Matching
Soru 312Soru

A network administrator is reviewing security logs for remote employees connecting to the corporate network via a client-based Remote Access Virtual Private Network (VPN). The administrator discovers that while remote users can access internal private servers, their web browsing traffic to external internet sites is being routed directly through their local home internet service providers rather than through the corporate firewall and web content filter. Which of the following configuration settings on the VPN concentrator or client profile should the administrator modify to ensure all network traffic from remote clients is routed through the secure tunnel?

Cevabı ve açıklamayı göster

Cevap: Disable split tunneling and enforce a full-tunnel VPN configuration.

Cevap

Disable split tunneling and enforce a full-tunnel VPN configuration.
Split tunneling allows a remote user's device to route internet-bound traffic directly through their local network while only routing corporate-bound traffic through the VPN. Disabling split tunneling and implementing a full-tunnel VPN configuration modifies the client's routing table so that all network traffic—regardless of destination—is encapsulated and forwarded to the corporate VPN gateway for processing and security inspection.

Adım Adım Çözüm

1
Analyze the observed network behavior.
Internal corporate traffic enters the VPN tunnel, while external internet traffic bypasses the tunnel and exits directly via the remote user's local interface.
This behavior describes split tunneling, where only specific corporate subnets are directed into the VPN tunnel, leaving all other destination traffic on the default local default gateway.
2
Identify the security requirement.
All client traffic must be routed to the corporate network so central security policies (firewalling, web filtering, DLP) can be applied.
Full tunneling redirects the client's default route into the VPN tunnel, sending all outbound IP packets to the VPN gateway.
3
Select the correct profile configuration.
Disabling split tunneling (enforcing full-tunnel mode) forces all traffic through the corporate gateway.
Full tunneling ensures zero traffic bypasses security inspection, meeting the requirement.

Anahtar Kavram

Split Tunneling vs. Full Tunneling VPN Configurations
Soru 313Soru

An enterprise organization experiences a security incident where a system administrator denies executing a set of unauthorized configuration changes on a core network switch, claiming another user forged their session. The security team must implement a technical control that ensures administrative actions can be cryptographically traced to a specific individual who cannot later deny performing them. Which of the following security concepts best meets this operational requirement?

Cevabı ve açıklamayı göster

Cevap: Non-repudiation enforced through asymmetric digital signatures

Cevap

Non-repudiation enforced through asymmetric digital signatures
Non-repudiation ensures that an individual cannot dispute the validity of their action or command. Asymmetric digital signatures provide non-repudiation because the signature can only be created using the sender's private key, guaranteeing both authenticity and accountability.

Adım Adım Çözüm

1
Analyze the core security requirement in the scenario.
The requirement focuses on ensuring an administrator cannot deny performing specific logged actions, which is the core definition of non-repudiation.
Non-repudiation ensures that the origin or execution of a transaction/command cannot be refuted by the party responsible.
2
Identify the cryptographic mechanism supporting non-repudiation.
Asymmetric cryptography using private keys creates digital signatures tied uniquely to an individual.
Because only the specific individual possesses their private key, a valid digital signature proves identity and action beyond reasonable doubt.

Anahtar Kavram

CIA Triad & Core Security Concepts - Non-repudiation and Asymmetric Digital Signatures
Tahmini Süre:1m 15s
Soru 314Soru

A network engineer is conducting a security baseline hardening exercise on a branch office router. The audit reveals that administrative management sessions and remote telemetry are currently using unencrypted legacy protocols. The engineer must secure the management plane so that all administrative command access and monitoring data are protected against eavesdropping and unauthorized modification. Which TWO configuration actions should the network engineer implement to meet these hardening requirements?

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

Cevabı ve açıklamayı göster

Cevap: Disable Telnet and HTTP access, and enable SSHv2 alongside HTTPS for encrypted administrative sessions.; Migrate network monitoring services from SNMPv1/v2c to SNMPv3 configured with the authPriv security level.

Cevap

The correct hardening actions are to disable Telnet and HTTP in favor of SSHv2 and HTTPS, and to implement SNMPv3 with the authPriv security level for remote monitoring.
Hardening network device management planes requires encrypting all administrative and telemetry streams. Replacing cleartext Telnet and HTTP with SSHv2 and HTTPS protects command-line and web administration sessions. Furthermore, deploying SNMPv3 with authPriv ensures both authentication integrity and payload confidentiality for network monitoring traffic.

Adım Adım Çözüm

1
Analyze management plane protocol requirements
Identify that plain-text administration (Telnet/HTTP) must be replaced with encrypted equivalents (SSHv2/HTTPS).
Plain-text protocols expose administrative credentials and session traffic to sniffing attacks.
2
Analyze remote telemetry and monitoring requirements
Select SNMPv3 using the authPriv security tier.
Unlike SNMPv1/v2c which transmit community strings in plain text without payload encryption, SNMPv3 authPriv enforces HMAC authentication and AES/DES encryption.
3
Evaluate distractor practices against device hardening baselines
Reject retaining default VLAN 1 assignments on unused interfaces or trunk native VLANs, as well as port 23 misconfigurations.
Unused ports should be shutdown and moved to a non-default blackhole VLAN, native VLAN 1 should be changed, and port 23 remains unencrypted Telnet.

Anahtar Kavram

Device Management Plane Hardening
Tahmini Süre:2m 0s
Soru 315Soru

A network administrator is deploying a WPA3-Enterprise wireless network for corporate headquarters to satisfy compliance mandates for individual user accountability and wireless management security. Which of the following components or protocol features are mandatory requirements when implementing WPA3-Enterprise? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: An 802.1X RADIUS authentication server infrastructure for centralizing individual user credentials; Protected Management Frames (PMF) enabled to prevent spoofing and eavesdropping of management traffic

Cevap

The mandatory components for WPA3-Enterprise are an 802.1X RADIUS authentication server infrastructure and Protected Management Frames (PMF).
WPA3-Enterprise requires 802.1X RADIUS authentication for individual user accountability and mandates Protected Management Frames (PMF / IEEE 802.1w) to protect wireless management frames against forgery.

Adım Adım Çözüm

1
Determine the required authentication framework for enterprise wireless security
WPA3-Enterprise mandates 802.1X EAP authentication backed by a central RADIUS server rather than preshared keys.
802.1X provides individual user accountability and centralized identity management required by enterprise policies.
2
Identify the required management frame protection mechanisms under WPA3 standards
Protected Management Frames (PMF / IEEE 802.1w) must be enabled.
WPA3 strictly mandates PMF to protect control and management frames (such as deauthentication) against interception and forgery.

Anahtar Kavram

WPA3-Enterprise Architecture and Security Requirements
Soru 316Soru

An organization is renovating a central server room that houses high-density rack servers and critical core switches. The facility team needs to install a fire suppression system that immediately extinguishes electrical fires without leaving residue, causing short circuits, or damaging sensitive electronic components. Which of the following fire suppression systems best meets these physical environmental requirements?

Cevabı ve açıklamayı göster

Cevap: Clean-agent gaseous fire suppression system

Cevap

Clean-agent gaseous fire suppression system
Clean-agent gaseous fire suppression systems utilize non-conductive gases (such as FM-200, Novec 1230, or Inergen) to extinguish fires by removing heat or oxygen without releasing water, chemical powders, or conductive residue. This protects live electronics and server infrastructure from water damage and short-circuit risks.

Adım Adım Çözüm

1
Analyze the physical environmental requirements of the server room
Identified the need for a non-conductive, zero-residue fire suppression agent suitable for energized electrical and network equipment.
Water and chemical foam agents conduct electricity and cause permanent physical hardware corrosion and short circuits.
2
Evaluate fire suppression system types against electronic safety criteria
Clean-agent gas systems (FM-200, Novec 1230, or inert gases) smother or interrupt the chemical reaction of fires without water or residue.
Gaseous clean agents evaporate quickly, leave no chemical deposit, and do not conduct electricity.

Anahtar Kavram

Clean-Agent Fire Suppression for Data Centers and MDFs
Tahmini Süre:1m 0s
Soru 317Soru

A network administrator is configuring inbound firewall rules on a perimeter security appliance for a web server located in a DMZ with IP address 192.168.50.10/32192.168.50.10/32. Public users must be able to access the secure web application, and system administrators must be able to perform remote command-line administration from an authorized external management subnet (203.0.113.0/24203.0.113.0/24). Which of the following rule configurations are required to fulfill these security requirements? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Permit inbound TCP traffic with destination IP 192.168.50.10192.168.50.10 and destination port 443443 from any source IP address.; Permit inbound TCP traffic with destination IP 192.168.50.10192.168.50.10 and destination port 2222 restricted to source IP range 203.0.113.0/24203.0.113.0/24.

Cevap

The required configurations are permitting inbound TCP traffic on destination port 443 from any source IP for HTTPS access, and permitting inbound TCP traffic on destination port 22 restricted to the source subnet 203.0.113.0/24 for SSH access.
To securely publish web applications while enabling management access, firewalls must explicitly allow TCP port 443 for public HTTPS traffic and TCP port 22 scoped tightly to administrative IP ranges for SSH traffic.

Adım Adım Çözüm

1
Identify protocol and port requirements for public web services.
Secure web services (HTTPS) use TCP on destination port 443 and require open inbound access from public clients.
Public web application delivery requires accessible HTTPS endpoints over TCP port 443.
2
Identify protocol, port, and access restriction requirements for remote management.
Secure administration via SSH uses TCP on destination port 22 and must be restricted to source network 203.0.113.0/24.
Limiting management access to known administrative source subnets follows the principle of least privilege.
3
Evaluate transport layer protocols and ACL default behavior.
UDP is inappropriate for SSH management, and an explicit permit any rule invalidates network security posture.
SSH requires connection-oriented TCP, and firewalls rely on implicit deny logic to block unapproved traffic.

Anahtar Kavram

Firewall Rule Protocol Matching and Least Privilege Access Control
Soru 318Soru

A network administrator is implementing hardening controls on an enterprise core switch following a security audit. The audit report flagged two primary vulnerabilities: administrative monitoring data and CLI sessions are being transmitted without payload encryption, and untagged management traffic is exposed to potential VLAN hopping attacks across 802.1Q trunk lines. Which set of device hardening configurations directly remediates both identified security risks?

Cevabı ve açıklamayı göster

Cevap: Migrate network monitoring to SNMPv3 using the authPriv security level, enforce SSH for CLI administration, and reassign the native VLAN on all 802.1Q trunks to an unused non-default VLAN ID.

Cevap

Migrate network monitoring to SNMPv3 using the authPriv security level, enforce SSH for CLI administration, and reassign the native VLAN on all 802.1Q trunks to an unused non-default VLAN ID.
The correct configuration combines SNMPv3 at the authPriv security level (which provides cryptographic authentication and AES payload encryption) with SSH (which encrypts CLI management traffic). Additionally, reassigning the native VLAN on 802.1Q trunk links from default VLAN 1 to a dedicated, unused VLAN ID prevents untagged traffic leakage and mitigates double-tagging VLAN hopping attacks.

Adım Adım Çözüm

1
Analyze transport security requirements for management plane protocols.
Identified that legacy protocols (Telnet, HTTP, SNMPv1/v2c) transmit data in cleartext. SSH and HTTPS provide encrypted transport for administration, while SNMPv3 with authPriv provides both authentication hashing (auth) and payload encryption (priv).
Resolves cleartext credential and health metric exposure over the local management domain.
2
Analyze trunk link vulnerability requirements.
Default VLAN 1 usage as the native VLAN on 802.1Q trunks exposes switches to double-tagging and untagged frame leakage. Changing the native VLAN to an unused ID (and disabling untagged traffic processing) mitigates VLAN hopping.
Isolates control plane/management traffic from untagged user frame processing.
3
Combine protocol and switchport hardening controls into a complete mitigation plan.
The correct configuration combines SNMPv3 (authPriv), SSH, and native VLAN reassignment to an unused VLAN ID.
Directly satisfies both encryption and layer 2 trunk isolation requirements.

Anahtar Kavram

Management Plane Hardening & Native VLAN Isolation
Tahmini Süre:2m 0s
Soru 319Soru

A network security architect is reviewing the organization's technical controls to ensure alignment with foundational security principles. Match each core security principle on the left with the technical control on the right that primarily enforces it.

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

Öğeler

Confidentiality
Integrity
Availability
Non-repudiation

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Confidentiality pairs with enforcing AES-256 encryption on SSH administrative sessions; Integrity pairs with verifying SHA-256 hashes of router firmware images; Availability pairs with deploying redundant ISP connections with automated BGP failover; Non-repudiation pairs with requiring asymmetric digital signatures on configuration change requests.
Each core security goal aligns with a specific defensive mechanism: encryption enforces confidentiality by hiding data from unauthorized viewers; cryptographic hashing enforces integrity by verifying data hasn't been altered; hardware and path redundancy maintains availability against failures; digital signatures enforce non-repudiation by mathematically linking an action to a specific party.

Adım Adım Çözüm

1
Analyze Confidentiality controls
Confidentiality prevents unauthorized access to sensitive information. Encrypting management sessions using AES-256 renders the data unreadable to unauthorized sniffers.
Encryption is the primary mechanism for preserving confidentiality of data in transit.
2
Analyze Integrity controls
Integrity ensures data has not been modified or corrupted. Verifying SHA-256 hashes confirms that firmware code matches the original published release without unauthorized alterations.
Cryptographic hashing provides verification of data integrity.
3
Analyze Availability controls
Availability guarantees that network assets and services are operational when required. Dual ISP links with automated BGP failover maintain connectivity during provider outages.
Redundancy and failover mechanisms preserve service availability.
4
Analyze Non-repudiation controls
Non-repudiation ensures an actor cannot deny performing a specific authorization or transaction. Asymmetric digital signatures link specific cryptographic keys to signed requests.
Digital signatures bind identity and action using asymmetric cryptography to enforce non-repudiation.

Anahtar Kavram

CIA Triad and Core Security Principles
Soru 320Soru

A network security administrator is deploying a site-to-site Virtual Private Network (VPN) using Internet Key Exchange version 2 (IKEv2) and IPsec. Place the following operational phases and message exchanges in the correct chronological order from the first step to the final step during successful tunnel negotiation and data transfer.

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

Cevabı ve açıklamayı göster

Cevap

The correct chronological sequence for establishing an IKEv2/IPsec VPN tunnel is: 1) Negotiate cryptographic parameters and Diffie-Hellman keys via IKE_SA_INIT, 2) Authenticate peer identities via encrypted IKE_AUTH exchange, 3) Finalize the IPsec Child Security Association parameters, and 4) Transmit encapsulated payload data across the established tunnel.
IKEv2 establishes secure IPsec tunnels in a structured sequence: First, the IKE_SA_INIT exchange negotiates security algorithms and generates Diffie-Hellman key material. Second, using the encrypted channel formed by the initial exchange, the IKE_AUTH exchange authenticates peer identities (via certificates or pre-shared keys). Third, the specific IPsec Child Security Association parameters are negotiated. Finally, user network traffic is encapsulated using ESP and safely routed across the tunnel.

Adım Adım Çözüm

1
Identify the unauthenticated initial key exchange phase.
The IKE_SA_INIT message exchange establishes cryptographic suites and generates shared Diffie-Hellman secret material.
Encryption keys must be derived prior to authenticating sensitive identity credentials.
2
Identify the authentication phase.
The IKE_AUTH message exchange authenticates both endpoints securely over the encrypted channel established by IKE_SA_INIT.
Peer authentication prevents man-in-the-middle attacks before establishing data SAs.
3
Identify the Child SA negotiation phase.
The IPsec Child Security Association parameters are configured to secure actual user payload data.
The IKE SA manages control communications, while the Child SA manages protected data traffic.
4
Identify the active data transmission phase.
User traffic is encapsulated in ESP and transmitted across the tunnel.
Payload encryption can only take place after both control and data SAs are operational.

Anahtar Kavram

IKEv2/IPsec Tunnel Negotiation Sequence
ÖncekiSayfa 16 / 22Sonraki
Network Security Alıştırma Soruları — CompTIA Network+ — Sayfa 16 | Examkin