Tüm alıştırma soruları

2237 soru

Soru 1061Soru

A system administrator discovers an unauthorized wireless access point broadcasting the exact same network name (SSID) as the corporate Wi-Fi network, attempting to trick user devices into connecting to it. Which of the following network attack types best describes this scenario?

Cevabı ve açıklamayı göster

Cevap: Evil twin attack

Cevap

Evil twin attack
An evil twin attack occurs when an attacker sets up a rogue wireless access point using the same SSID (Service Set Identifier) as a legitimate network. Nearby client devices that recognize the SSID may automatically connect to the malicious access point, enabling the attacker to monitor or intercept network traffic.

Adım Adım Çözüm

1
Analyze the incident symptoms presented in the scenario.
An unauthorized wireless access point is broadcasting a duplicate SSID to deceive client devices into establishing a connection.
Identifying wireless SSID impersonation pinpoints rogue access point attack vectors.
2
Match the observed technique to standard network security attack definitions.
Broadcasting a fraudulent SSID that mirrors a trusted corporate network is the defining characteristic of an evil twin attack.
Evil twin attacks specifically exploit trusted SSID profiles saved on client devices to execute man-in-the-middle positioning.

Anahtar Kavram

Evil Twin Attack
Tahmini Süre:45s
Soru 1062Soru

A network engineer is configuring a stateless Access Control List (ACL) on a router interface connecting an internal subnet (10.100.10.0/2410.100.10.0/24) to an external gateway. To permit outbound DNS name resolution to a public DNS server (8.8.8.88.8.8.8), the engineer applies the following outbound ACL entry on the router interface:

`permit udp 10.100.10.0 0.0.0.255 host 8.8.8.8 eq 53`

After applying this configuration, internal client hosts are still unable to resolve domain names. Packet captures confirm outbound DNS query packets are leaving the interface, but clients never receive answers. Which of the following best explains why the DNS resolution is failing?

Cevabı ve açıklamayı göster

Cevap: The stateless ACL drops the return DNS reply traffic from port 53 because it does not maintain session state and lacks an inbound permit rule for return traffic.

Cevap

The DNS resolution fails because the stateless ACL filtering outbound traffic does not dynamically track connection state, causing the returning DNS response packets from the DNS server to be dropped by the implicit deny rule on the return path.
Stateless Access Control Lists (ACLs) do not monitor connection state tables or track session handshakes. While the outbound permit rule allows client DNS requests to reach external server 8.8.8.8, the return DNS answer packets originating from 8.8.8.8 port 53 back to the client are evaluated independently. Without a corresponding return permit rule on the incoming traffic path, the return packets hit the implicit deny at the end of the ACL structure and are dropped.

Adım Adım Çözüm

1
Analyze the operational difference between stateful firewalls and stateless access control lists.
Stateless filters treat every packet independently and do not inspect or maintain connection state tables for active flows.
Because stateless ACLs do not record outbound connection attempts, return packets are not automatically recognized or allowed back through the interface.
2
Trace the bidirectional traffic flow of a DNS query.
The outbound packet (Source: 10.100.10.x10.100.10.x:ephemeral_port, Destination: 8.8.8.88.8.8.8:53) matches the outbound permit rule and leaves the router. The return packet (Source: 8.8.8.88.8.8.8:53, Destination: 10.100.10.x10.100.10.x:ephemeral_port) arrives at the interface.
Without an inbound ACL entry permitting UDP traffic from source host 8.8.8.88.8.8.8 port 53 back to internal ephemeral ports, the return packet encounters the implicit deny.
3
Identify the required remedy for stateless packet filtering.
An explicit return rule must be configured (or a stateful firewall architecture implemented) to permit traffic originating from host 8.8.8.88.8.8.8 port 53 returning to 10.100.10.0/2410.100.10.0/24.
This completes the bidirectional communication path necessary for client-server protocol interaction.

Anahtar Kavram

Stateless vs. Stateful Packet Filtering in ACLs
Tahmini Süre:2m 0s
Soru 1063Soru

A network administrator notices that remote workers connected via a full-tunnel VPN are causing severe bandwidth saturation at the corporate perimeter by streaming internet media through the corporate gateway. To alleviate congestion, the administrator plans to modify the client configuration to allow split tunneling. Which of the following describes the primary security risk introduced by enabling split tunneling?

Cevabı ve açıklamayı göster

Cevap: The remote client device can act as a dual-homed bridge, allowing threats from the local untrusted network to bypass perimeter controls into the corporate network.

Cevap

The primary security risk of split tunneling is that the remote device can act as a dual-homed bridge, allowing malicious traffic from the local untrusted network to pivot into the corporate environment.
Enabling split tunneling directs non-corporate internet traffic out of the remote user's local network connection while tunneling corporate traffic. The primary security vulnerability is that the endpoint host acts as a bridge between the untrusted public network and the protected corporate network, creating an unmonitored path for malware or unauthorized pivot attacks.

Adım Adım Çözüm

1
Analyze full tunneling versus split tunneling functionality.
Full tunneling routes 100% of remote host traffic through the encrypted VPN tunnel and corporate firewall. Split tunneling splits traffic: corporate destination traffic enters the tunnel, while general internet traffic exits directly through the user's local ISP gateway.
Understanding traffic path differences clarifies where security boundaries and risks shift.
2
Evaluate the security implication of simultaneous local network and corporate network access.
Because the host maintains simultaneous active connections to an untrusted local/public network and the trusted internal network, an attacker or malware on the local network can compromise the endpoint and pivot directly into the internal corporate network.
This dual-homed state bypasses perimeter firewalls and intrusion prevention controls.

Anahtar Kavram

Split Tunneling Security Implications
Soru 1064Soru

Match each Intrusion Detection/Prevention System (IDS/IPS) architectural model or detection mechanism on the left to its corresponding operational deployment scenario on the right.

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

Öğeler

Protocol Anomaly-Based NIDS
Out-of-Band Passive NIDS via Hardware TAP
In-Band Inline NIPS
Host-Based IPS (HIPS)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Protocol Anomaly-Based NIDS matches with protocol evaluation against RFC standards; Out-of-Band Passive NIDS via Hardware TAP matches with receiving duplicated full-duplex traffic with zero added latency; In-Band Inline NIPS matches with sitting directly in the flow of traffic to drop malicious frames in real time; Host-Based IPS (HIPS) matches with monitoring kernel system calls and system registry modifications locally.
Each deployment model corresponds directly to its architectural placement and inspection logic: HIPS focuses on endpoint OS internals; Inline NIPS sits directly in-path for immediate active mitigation; Passive TAP deployments duplicate traffic to guarantee zero network latency; Protocol anomaly-based NIDS inspects traffic against formal RFC specifications.

Adım Adım Çözüm

1
Identify the core operational characteristics of network vs host placement.
Host-based mechanisms (HIPS) inspect OS-level events like system calls and registry keys on endpoints, matching local server monitoring.
NIDS/NIPS operate on network traffic streams, whereas HIPS operates directly within the operating system host environment.
2
Differentiate between in-band (inline) active prevention and out-of-band passive detection.
In-band inline NIPS sits directly in the forwarding path to actively block traffic, while out-of-band passive NIDS via TAPs receives copied traffic to avoid introducing propagation delay/latency.
Inline devices are active inline single points of transit that can drop packets; TAP devices copy signals passively.
3
Analyze detection methodology logic (protocol anomaly vs signature/behavior).
Protocol anomaly detection relies on defined rules of protocol compliance (RFC standards) to detect non-standard structure or abnormal behavior.
Protocol anomaly engines establish expected standard behavior by baseline RFC definitions.

Anahtar Kavram

Architectural placement (in-band vs out-of-band, host vs network) and detection mechanics (signature, anomaly, protocol analysis) of IDS and IPS systems.
Soru 1065Soru

A network technician is configuring a external perimeter firewall to permit incoming remote access VPN connections for users utilizing the Secure Socket Tunneling Protocol (SSTP). Which transport protocol and port number combination must be opened on the firewall for SSTP connections to succeed?

Cevabı ve açıklamayı göster

Cevap: TCP port 443

Cevap

TCP port 443
The choice stating TCP port 443 is correct because SSTP establishes a secure VPN tunnel by encapsulating PPP frames inside an SSL/TLS encrypted stream, which natively operates over TCP port 443.

Adım Adım Çözüm

1
Identify the protocol operational mechanism for SSTP.
Secure Socket Tunneling Protocol (SSTP) transports PPP frames through an SSL/TLS channel.
SSTP uses standard web security standards to bypass strict network firewalls.
2
Determine the transport protocol and port associated with SSL/TLS tunnel creation.
SSL/TLS standard traffic runs over TCP port 443.
Firewalls typically permit outbound TCP port 443 for standard HTTPS traffic, making SSTP highly compatible.

Anahtar Kavram

SSTP VPN Protocol Specifications
Soru 1066Soru

A lead systems engineer is establishing physical and environmental security controls across a newly constructed high-density enterprise data center. Match each specialized environmental or power control mechanism to its primary protective function.

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

Öğeler

Hot Aisle Containment (HAC) with Differential Air Pressure Monitoring
Gaseous Clean-Agent Fire Suppression (e.g., Novec 1230)
Positive-Pressure Air Handling with Filtration
Intelligent Per-Outlet Switching PDU with Automated Load Shedding

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Hot Aisle Containment matches with preventing thermal recirculation between exhaust and intake air. Clean-Agent Fire Suppression matches with extinguishing electrical fires without leaving residue. Positive-Pressure Air Handling matches with preventing dust and airborne contaminants from entering the server hall. Intelligent Per-Outlet Switching PDU matches with preventing cascading circuit trips via automated load shedding.
Each mechanism directly addresses a distinct physical or environmental hazard in network facilities: Hot Aisle Containment mitigates thermal recirculation; Clean-Agent Gaseous Suppression neutralizes electrical fires without liquid or chemical damage; Positive-Pressure HVAC prevents dust infiltration; and Intelligent PDUs mitigate circuit overload through load shedding.

Adım Adım Çözüm

1
Analyze thermal management controls
Hot Aisle Containment physically isolates server exhaust air, utilizing differential pressure monitoring to stop hot air from mixing back into intake streams.
Eliminating thermal recirculation is critical in high-density rack deployments to maximize HVAC efficiency.
2
Evaluate fire suppression mechanisms for network equipment
Gaseous clean agents interrupt combustion without liquid residue or electrical conductivity.
Water-based systems or dry chemicals cause irreversible physical damage to active network equipment.
3
Examine air quality and contamination prevention methods
Positive-pressure HVAC forces internal air outward through structural openings, creating an active barrier against external airborne particles.
Particulate accumulation on server components increases ESD risk and impedes thermal dissipation.
4
Identify power redundancy and circuit protection controls
Intelligent PDUs evaluate real-time wattage demand and drop non-essential loads when total current draw threatens circuit capacity.
Automated load shedding protects core network switches from total loss of power caused by primary breaker trips.

Anahtar Kavram

Data Center Physical and Environmental Security Controls
Soru 1067Soru

Match each authentication protocol or network security framework to its primary operational characteristic.

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

Öğeler

TACACS+
RADIUS
802.1X
SAML 2.0

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

TACACS+ pairs with full payload encryption and TCP port 49; RADIUS pairs with UDP ports 1812/1813 and password-only encryption; 802.1X pairs with port-based access control and EAP encapsulation; SAML 2.0 pairs with XML assertions for federated web SSO.
Each protocol matches its defined standard: TACACS+ separates AAA services over TCP port 49 with full payload encryption; RADIUS combines authentication and authorization over UDP ports 1812/1813 with password-only encryption; 802.1X provides port-based access control; and SAML 2.0 enables XML-based federated web SSO.

Adım Adım Çözüm

1
Identify the transport layer and encryption characteristics of device administration protocols.
TACACS+ utilizes TCP port 49 and encrypts the complete packet body, whereas RADIUS utilizes UDP ports 1812/1813 and encrypts only the password field.
Understanding transport protocol and payload encryption boundaries differentiates TACACS+ from RADIUS.
2
Analyze port-based network authentication mechanisms.
802.1X acts as the IEEE framework for authenticating devices before granting switch port or wireless access using EAP encapsulated over LAN.
802.1X operates at Layer 2 to enforce port control.
3
Differentiate web single sign-on standards from network access protocols.
SAML 2.0 uses XML tokens for web federated SSO between Identity Providers and Service Providers.
SAML is an application/web federation protocol rather than a network hardware management protocol.

Anahtar Kavram

AAA Architecture, Transport Protocols, and Authentication Frameworks
Soru 1068Soru

During a security audit of a dual-stack enterprise LAN, network administrators discover that several IPv4-configured workstations are unexpectedly redirecting web traffic to an untrusted external IP address. Packet captures reveal that these workstations regularly receive unsolicited ICMPv6 Router Advertisement (RA) packets from a non-gateway host. These RA frames specify an unknown link-local IPv6 address as the default gateway and assign a rogue IPv6 DNS server. Which of the following statements accurately describe this network attack and its operational impact? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: The attacker is exploiting IPv6 Router Advertisements to conduct an On-Path (Man-in-the-Middle) attack via SLAAC spoofing.; Dual-stack client operating systems naturally prefer IPv6 DNS resolution over IPv4, causing traffic to route through the rogue IPv6 gateway.

Cevap

The attack is an On-Path (Man-in-the-Middle) attack executed via rogue ICMPv6 Router Advertisement (RA) / SLAAC spoofing, which leverages the default host OS behavior of prioritizing IPv6 traffic and DNS resolution over IPv4.
In dual-stack network environments, transmitting unauthorized ICMPv6 Router Advertisements (RAs) allows an attacker to automatically configure client network settings via SLAAC. Because modern operating systems default to prioritizing IPv6 connectivity and DNS resolution over IPv4, hosts will send their DNS requests and outbound traffic to the attacker's rogue IPv6 link-local gateway, establishing an On-Path (Man-in-the-Middle) position.

Adım Adım Çözüm

1
Analyze the log excerpts and packet capture details.
Identified unsolicited ICMPv6 Router Advertisement (RA) messages originating from an unauthorized internal host.
ICMPv6 RAs are used in Stateless Address Autoconfiguration (SLAAC) to advertise default routers and network parameters to client endpoints.
2
Determine the attack vector and mechanism.
The rogue host announces itself as an IPv6 default gateway and IPv6 DNS provider, placing itself in the communication path (On-Path / MITM).
Workstations accept the unsolicited IPv6 configuration and update their routing and DNS resolution tables.
3
Evaluate operating system traffic preference behavior.
Dual-stack client endpoints prefer IPv6 destination lookup and routing over legacy IPv4 when valid IPv6 parameters are present.
Standard networking stack implementation (RFC 6724) prioritizes IPv6 communications over IPv4 unless explicitly reconfigured.

Anahtar Kavram

Rogue IPv6 Router Advertisement (RA) Spoofing and On-Path Attacks
Tahmini Süre:2m 0s
Soru 1069Soru

A network technician is auditing a campus network layout where two Layer 3 switches operate as redundant gateways for a corporate VLAN. Users report degraded throughput during high-traffic periods, and analysis reveals that traffic regularly traverses the inter-switch trunk link to reach the active gateway. Which TWO configuration steps should the technician verify or implement to ensure optimal high-availability traffic paths and prevent unnecessary trunk saturation? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Configure the active Virtual Router Redundancy Protocol (VRRP) master switch to be the Spanning Tree Protocol (STP) root bridge for that VLAN.; Configure DHCP scope options to distribute the virtual IP (VIP) address as the default gateway for client workstations on the VLAN.

Cevap

To optimize high-availability traffic flow and eliminate extra trunk hops, the primary VRRP switch must also be configured as the STP root bridge for the VLAN, and client devices must be assigned the virtual IP (VIP) address as their default gateway.
Optimal network redundancy relies on aligning Layer 2 topology with Layer 3 active forwarding paths. Ensuring that the VRRP master switch is also the Spanning Tree Protocol root bridge guarantees that switch ports leading to the active gateway remain in a forwarding state without unnecessary forwarding across inter-switch links. Furthermore, client devices must use the virtual IP address to benefit from automated gateway redundancy.

Adım Adım Çözüm

1
Analyze the Layer 2 and Layer 3 topologies for high availability efficiency.
Identify that if the STP root bridge and the VRRP master gateway reside on different physical switches, client traffic will travel across the inter-switch link to reach the root bridge before being forwarded to the default gateway.
Aligning the STP root bridge position with the active FHRP master prevents asymmetrical paths and unnecessary utilization of inter-switch trunks.
2
Verify client default gateway configuration settings.
Ensure client workstations receive the shared Virtual IP (VIP) address from DHCP rather than the physical IP address of a single switch.
Using the VIP enables seamless hardware address failover without requiring client reconfiguration when the primary master fails.

Anahtar Kavram

First Hop Redundancy Protocol (FHRP) and Spanning Tree Protocol (STP) Coexistence
Soru 1070Soru

A network engineer is configuring a site-to-site VPN tunnel between two enterprise office locations. Unicast IP traffic successfully traverses the tunnel using standard IPsec transport. However, OSPF routing protocol neighbor adjacencies fail to form across the VPN, preventing dynamic routing updates from being exchanged. Which solution should the engineer implement to enable dynamic routing protocols across the encrypted connection?

Cevabı ve açıklamayı göster

Cevap: Encapsulate the traffic using a Generic Routing Encapsulation (GRE) tunnel and secure the GRE tunnel with IPsec.

Cevap

Encapsulate the traffic using a Generic Routing Encapsulation (GRE) tunnel and secure the GRE tunnel with IPsec.
Native IPsec does not support broadcast or multicast traffic, which routing protocols like OSPF require to form neighbor adjacencies. Generic Routing Encapsulation (GRE) encapsulates multicast traffic into standard unicast IP packets. By combining GRE with IPsec (GRE over IPsec), the GRE tunnel handles the multicast routing packets while IPsec provides confidentiality and integrity for the encapsulated GRE tunnel.

Adım Adım Çözüm

1
Analyze the technical limitation of standard native IPsec tunnels.
Native IPsec (ESP/AH) only encapsulates and transports unicast IP packets. It cannot directly encapsulate multicast or broadcast traffic.
Routing protocols such as OSPF rely on multicast packets (224.0.0.5 and 224.0.0.6) to discover neighbors and exchange Link-State Advertisements (LSAs).
2
Identify a tunneling protocol that supports multicast traffic.
Generic Routing Encapsulation (GRE) creates a virtual point-to-point link that can encapsulate multiprotocol, broadcast, and multicast traffic into unicast IP packets.
GRE creates the necessary wrapper for OSPF multicast packets, but GRE by itself does not provide encryption or security.
3
Combine GRE encapsulation with IPsec encryption (GRE over IPsec).
OSPF multicast packets are encapsulated inside a GRE unicast packet, which is then encrypted by IPsec for secure transmission across the untrusted network.
Combining both protocols satisfies both requirements: supporting multicast dynamic routing and securing the communication channel.

Anahtar Kavram

GRE over IPsec Multicast Tunneling
Soru 1071Soru

A network administrator is conducting a post-audit baseline security hardening on an enterprise edge router. The audit report specifies three critical remediation goals: secure the administrative management plane, mitigate unauthorized VLAN hopping attacks across 802.1Q trunk links, and establish cryptographically secured remote device telemetry. Which of the following baseline configuration sets fully satisfies all three audit requirements?

Cevabı ve açıklamayı göster

Cevap: Configure SSHv2 on TCP port 22 while disabling Telnet, reassign the 802.1Q native VLAN to an unused non-default VLAN ID on trunk ports, and deploy SNMPv3 using the authPriv security level.

Cevap

The baseline configuration that configures SSHv2 on TCP port 22, reassigns the 802.1Q native VLAN to an unused non-default VLAN ID, and deploys SNMPv3 with authPriv.
The correct response combines essential device hardening practices: disabling unencrypted management protocols in favor of SSHv2 on TCP port 22, changing the 802.1Q trunk native VLAN from default VLAN 1 to an unused VLAN ID to mitigate VLAN hopping, and enforcing SNMPv3 with authPriv (authentication and privacy encryption) for secure telemetry.

Adım Adım Çözüm

1
Evaluate management plane remote administration security.
SSHv2 operating on standard TCP port 22 encrypts administrative control traffic, whereas Telnet and incorrect port mappings leave access exposed or misconfigured.
Telnet communicates in plaintext over TCP port 23, so migrating to SSHv2 over port 22 is essential for baseline management plane hardening.
2
Evaluate trunk interface configuration for VLAN security.
Reassigning the native VLAN from default VLAN 1 to a dedicated, unused VLAN ID isolates untagged frame processing.
Default VLAN 1 usage on 802.1Q trunks creates exploitation vectors for double-tagging and VLAN hopping.
3
Evaluate network telemetry protocol security.
SNMPv3 with authPriv provides cryptographic user authentication (HMAC-SHA/MD5) and data encryption (AES/DES).
SNMPv1 and SNMPv2c rely on cleartext community strings, which exposes device statistics and management data to interception.

Anahtar Kavram

Device Baseline Hardening: Management Plane Protocols, Native VLAN Isolation, and SNMPv3 Security
Soru 1072Soru

An organization is enhancing the physical access controls for its core data center. Management requires a solution that strictly enforces single-person entry and prevents unauthorized individuals from tailgating behind an authenticated employee into the server hall. Which physical access control mechanism should the network administrator deploy to best satisfy this requirement?

Cevabı ve açıklamayı göster

Cevap: A mantrap physical enclosure equipped with interlocking doors and weight sensors

Cevap

A mantrap physical enclosure equipped with interlocking doors and weight sensors is the most effective physical control to prevent tailgating and enforce single-person entry.
A mantrap is a specialized physical access control structure consisting of a small space with two interlocking doors. Once an authorized user unlocks and enters the first door, it closes and locks behind them before the second door will release. Combined with weight or optical sensors, it physically guarantees that only one authenticated person enters the secure area at a time, making it the definitive defense against tailgating.

Adım Adım Çözüm

1
Identify the primary requirement
The goal is to physically restrict access so that only one authenticated individual can enter at a time, eliminating tailgating (piggybacking).
Tailgating occurs when an unauthorized person follows an authorized person through a single access portal.
2
Evaluate access control mechanisms against tailgating prevention
Single-door solutions (badge readers, biometrics, CCTV) provide access control or detection, but do not physically block extra persons from entering while the door is open. A mantrap uses two interlocking doors so the first door must close before the second opens, often combining weight sensors to ensure only one person is inside.
Physical enclosure control is required to prevent multiple people from walking through a single door opening.

Anahtar Kavram

Physical Access Control and Anti-Tailgating Measures (Mantraps)
Tahmini Süre:1m 0s
Soru 1073Soru

A network security administrator is mapping recently deployed enterprise security controls to core security principles. Match each technical implementation on the left with the primary security concept or CIA triad pillar it addresses on the right.

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

Öğeler

Configuring redundant uninterruptible power supplies (UPS) and dual ISP links for core network switches
Calculating and comparing cryptographic SHA-256 checksums of network device firmware images prior to installation
Deploying IPsec Encapsulating Security Payload (ESP) encryption for inter-site router traffic over public transit
Requiring asymmetric digital signatures on administrative audit log transfers to verify sender origin and prevent denial of action

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Redundant power and dual links match Availability. Cryptographic SHA-256 firmware checksums match Integrity. IPsec ESP traffic encryption matches Confidentiality. Asymmetric digital signatures on audit logs match Non-repudiation.
Each control aligns directly with a core security concept: power and link redundancy maintain system availability during outages; SHA-256 checksum comparisons confirm integrity by validating that software files were not altered; IPsec ESP encryption protects confidentiality by hiding payload contents from eavesdroppers; and asymmetric digital signatures enforce non-repudiation by providing indisputable cryptographic proof of log transmission origin.

Adım Adım Çözüm

1
Analyze the objective of redundant power supplies and ISP connectivity
These controls prevent downtime and ensure hardware and link resilience
Maintaining continuous access to network resources maps directly to Availability.
2
Analyze cryptographic hashing of firmware images
Hashes verify that data has not been modified or corrupted during transfer
Ensuring data remains unaltered and trustworthy maps directly to Integrity.
3
Analyze IPsec ESP encryption for transit traffic
Payload encryption hides data from unauthorized listeners over public networks
Protecting sensitive information from unauthorized exposure maps directly to Confidentiality.
4
Analyze digital signatures on administrative audit log transfers
Asymmetric signing binds the action to the private key of the sender
Preventing an entity from denying its actions or communications maps directly to Non-repudiation.

Anahtar Kavram

Mapping Security Mechanisms to the CIA Triad and Core Principles
Soru 1074Soru

A network operations team plans to upgrade the core layer-3 switches in a healthcare system's primary data center. Place the following change management phases in the correct sequence from start to finish.

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

Cevabı ve açıklamayı göster

Cevap

The correct operational order is: 1) Submit a formal Request for Change (RFC); 2) Perform an impact analysis, risk assessment, and establish a rollback procedure; 3) Present the proposed change to the Change Advisory Board (CAB) for authorization; 4) Execute the upgrade during an authorized maintenance window; 5) Conduct post-implementation verification testing and update configuration baseline documentation.
The standard change management lifecycle begins with RFC submission, followed by risk analysis and rollback planning. The complete proposal is then submitted to the CAB for authorization. Once authorized, implementation takes place within an approved maintenance window, followed by post-implementation validation and baseline documentation updates.

Adım Adım Çözüm

1
Identify the initial request phase
Submitting the RFC initiates the change lifecycle.
Change tracking begins with formal documentation of what is changing and why.
2
Analyze risk and fallback options
Impact analysis, risk scoring, and rollback plans are attached to the RFC.
The approving body requires technical risk metrics and back-out plans to evaluate the change.
3
Seek administrative authorization
The Change Advisory Board (CAB) reviews and approves the change.
Execution cannot proceed without stakeholders and advisory boards granting formal permission.
4
Perform the technical deployment
The upgrade is executed within the scheduled maintenance window.
Changes must be deployed only during approved time frames to prevent unplanned outages.
5
Validate and finalize baseline documentation
Verification testing is completed, and baseline network documentation is updated.
Closing a change requires verifying success and ensuring documentation reflects current state.

Anahtar Kavram

Standard ITIL Change Management Life Cycle
Soru 1075Soru

A network technician needs to perform the initial configuration on a brand-new managed switch that has no IP address assigned to its interfaces. Which of the following connection methods should the technician use to access the device command-line interface?

Cevabı ve açıklamayı göster

Cevap: Local console connection

Cevap

Local console connection
A local console connection provides direct out-of-band management access using a serial interface connection. It allows initial configuration of network devices when no IP address or network connectivity has been established.

Adım Adım Çözüm

1
Determine the network operational status of the new switch.
The device is unconfigured and has no IP address assigned to any interface.
Network-layer remote management protocols require IP addressing to establish connectivity.
2
Evaluate access protocols against the current state.
In-band protocols (SSH, Telnet, RDP) cannot reach an unconfigured device.
In-band management depends on an operational network protocol stack.
3
Select a direct physical management connection.
Use a serial console cable connected directly from the technician workstation to the switch console port.
Console management operates out-of-band and works without IP addressing.

Anahtar Kavram

Out-of-Band Management via Serial Console
Soru 1076Soru

A network technician is troubleshooting a point-to-point wireless bridge spanning 250 meters between two corporate buildings. Signal strength readings indicate a strong Received Signal Strength Indicator (RSSI) of -51 dBm, but the link suffers from high packet corruption, fluctuating bit rates, and intermittent dropouts whenever large cargo trucks cross the intervening parking lot. Which of the following is the most likely cause of this wireless performance issue?

Cevabı ve açıklamayı göster

Cevap: Multipath fading caused by RF reflections off moving vehicles arriving out of phase at the receiving antenna.

Cevap

Multipath fading caused by RF reflections off moving vehicles arriving out of phase at the receiving antenna is the primary cause of the signal degradation.
Multipath propagation occurs when RF signals take multiple paths from transmitter to receiver due to reflection off metallic surfaces like trucks. When these reflected signals arrive slightly out of phase with the direct signal, they cause destructive interference (multipath fading) and inter-symbol corruption even when overall RSSI appears high.

Adım Adım Çözüm

1
Analyze diagnostic indicators
Strong RSSI (-51 dBm) confirms adequate transmission power and basic line of sight, but high frame corruption indicates physical layer RF distortion.
High signal power paired with low throughput or packet loss points toward signal quality issues (SNR/Interference) rather than attenuation.
2
Evaluate environmental variables
Intermittent corruption specifically coincides with large metal vehicles entering the path between buildings.
Metallic surfaces serve as prominent reflectors for radio waves, splitting the transmitted signal into multiple paths.
3
Identify the RF phenomenon
Reflected signals arrive at the receiving antenna milliseconds after the direct line-of-sight signal, creating phase interference.
When reflected signals arrive out of phase with the main signal, vector addition causes signal cancellation and inter-symbol interference (multipath fading).

Anahtar Kavram

Multipath Fading and RF Reflection in Point-to-Point Wireless Links
Soru 1077Soru

A network technician deploys three wireless access points across an office building to provide coverage on the 2.4 GHz band. Users report frequent packet loss, slow speeds, and dropped connections when moving near areas covered by multiple access points. Upon inspecting the wireless controller, the technician observes that the access points are manually configured to operate on channels 1, 2, and 3, respectively. Which of the following is the most likely cause of the wireless performance degradation?

Cevabı ve açıklamayı göster

Cevap: Adjacent-channel interference caused by using overlapping channels in the 2.4 GHz frequency spectrum.

Cevap

Adjacent-channel interference caused by using overlapping channels in the 2.4 GHz frequency spectrum.
In the 2.4 GHz frequency band, standard 20 MHz channels require a 25 MHz separation between channel centers to avoid overlapping. Consequently, only channels 1, 6, and 11 are non-overlapping. Setting adjacent access points to channels 1, 2, and 3 causes severe adjacent-channel interference (ACI), resulting in corrupted Wi-Fi frames, excessive retransmissions, and performance degradation in areas where signals overlap.

Adım Adım Çözüm

1
Analyze the wireless spectrum configuration provided in the scenario.
The access points are set to channels 1, 2, and 3 in the 2.4 GHz band.
The 2.4 GHz Wi-Fi spectrum consists of 11 channels in North America (13 globally), each 20 MHz wide but spaced only 5 MHz apart.
2
Identify non-overlapping channels for 2.4 GHz wireless deployments.
Channels 1, 6, and 11 are the standard non-overlapping 20 MHz channels.
Channels 1, 2, and 3 share overlapping frequency ranges, causing adjacent-channel interference (ACI) where signals bleed into neighbouring frequencies.
3
Correlate channel overlap with the observed symptoms.
Adjacent-channel interference leads to frame corruption, retransmissions, high latency, and dropped connections in overlapping coverage zones.
Using channels 1, 6, and 11 eliminates adjacent-channel interference between nearby access points.

Anahtar Kavram

2.4 GHz Wireless Channel Overlap and Interference
Tahmini Süre:45s
Soru 1078Soru

A security technician observes traffic logs indicating an external host is conducting a half-open TCP SYN scan against a gateway firewall. Which of the following statements accurately describe the operational characteristics of a TCP SYN stealth scan? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: The scanning host sends an initial TCP packet with only the SYN flag enabled to probe a target port.; The scanning host responds with a RST packet after receiving a SYN-ACK from an open port.

Cevap

A TCP SYN stealth scan initiates a connection using a SYN packet and immediately resets the connection with a RST packet upon receiving a SYN-ACK from an open port, preventing a full TCP connection from being logged.
During a SYN stealth scan, the attacker sends a TCP SYN packet to a target port. If the port is open, the target replies with a SYN-ACK packet. Rather than completing the three-way handshake with an ACK, the scanner transmits a RST packet to terminate the session immediately, avoiding standard connection logging on target applications.

Adım Adım Çözüm

1
Analyze how a SYN scan initiates contact with a target port.
The scanner sends a single TCP packet with the SYN flag set.
This tests whether the port is listening for incoming TCP connections.
2
Determine how the scanner handles the target's response without completing the connection.
When the target sends a SYN-ACK, the scanner responds with a RST packet.
Aborting the handshake before sending the final ACK keeps the connection half-open and avoids application-level connection logging.

Anahtar Kavram

TCP SYN Stealth Scanning
Soru 1079Soru

Following an unscheduled shutdown of a secondary Computer Room Air Handler (CRAH) unit in a high-density data center, network engineers observe water droplets forming on core switch chassis enclosures and optical transceiver modules. To compensate for the reduced cooling capacity, the remaining active CRAH unit automatically dropped its discharge air supply temperature to 10C10^\circ\text{C} (50F50^\circ\text{F}) while maintaining a relative humidity setpoint of 70%70\%. Which environmental mechanism directly accounts for the moisture condensation on the operating network hardware?

Cevabı ve açıklamayı göster

Cevap: The discharge supply air temperature fell below the dew point temperature of the server room ambient air.

Cevap

The condensation formed because the discharge supply air temperature dropped below the dew point of the ambient server room air.
Condensation forms whenever an object's surface temperature drops below the dew point of the ambient air. Reducing the CRAH supply air temperature to 10C10^\circ\text{C} while maintaining high relative humidity (70%70\%) causes equipment chassis and transceiver surfaces to cool below the dew point of the server room air, turning gaseous moisture into liquid water droplets on network hardware.

Adım Adım Çözüm

1
Analyze the relationship between cooling supply temperature, relative humidity, and dew point in data center HVAC design.
Dew point represents the atmospheric temperature at which water vapor condenses into liquid water.
Maintaining elevated relative humidity (70%70\%) combined with low supply air temperature (10C10^\circ\text{C}) lowers equipment surface temperatures beneath the ambient dew point.
2
Determine the impact of moisture condensation on active network equipment.
Liquid water forms on cold chassis walls, SFP/SFP+ optical modules, and cabling, introducing short-circuit and hardware degradation risks.
Air saturation occurs when surface temperatures fall below the dew point of the air mass, triggering liquid phase transition directly onto equipment surfaces.

Anahtar Kavram

Dew Point Management and Environmental Controls in Network Facilities
Soru 1080Soru

A network technician needs to safeguard a remote equipment room against electrostatic discharge (ESD) and prevent unauthorized physical tampering with individual server hardware inside shared enclosures. Which TWO of the following controls should be deployed to meet these specific requirements? (Select TWO)

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

Cevabı ve açıklamayı göster

Cevap: Maintain relative humidity levels between 40% and 55% within the equipment room; Install smart card locking door handles and secure side panels on server racks

Cevap

Maintaining relative humidity between 40% and 55%, and installing smart card locks with secure side panels on server racks.
Maintaining humidity levels between 40% and 55% dissipates static charges in the air to protect sensitive components from ESD. Rack-level smart card locks and secure side panels provide physical containment and access logging specifically for equipment cabinets.

Adım Adım Çözüm

1
Identify the environmental control needed to prevent electrostatic discharge (ESD).
Relative humidity kept between 40% and 55% prevents static electricity from accumulating in dry air while avoiding condensation.
Air that is too dry generates static electricity, whereas proper humidity management dissipates ESD potential.
2
Identify the physical security control needed to prevent tampering at the rack cabinet level.
Smart card locking handles combined with solid or locked side panels secure individual server equipment inside enclosures.
Limiting access to the server rack ensures unauthorized individuals cannot open cabinet doors or access exposed server hardware.

Anahtar Kavram

Physical Security Controls and Environmental Measures
ÖncekiSayfa 54 / 112Sonraki
Tüm alıştırma soruları — CompTIA Network+ | Examkin