Tüm alıştırma soruları

2237 soru

Soru 1021Soru

A network security analyst is reviewing a remote access VPN architecture that combines Layer 2 Tunneling Protocol (L2TP) with IPsec alongside a centralized AAA server infrastructure. Which of the following statements correctly describe the technical protocol characteristics and operational requirements of this solution? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: L2TP handles data link layer encapsulation for remote connections but does not inherently provide payload confidentiality, requiring IPsec for encryption.; IPsec Internet Key Exchange (IKE) phase 1 negotiations use UDP port 500 to establish the initial Security Association (SA) between endpoints.

Cevap

The correct statements are that L2TP provides data link layer encapsulation while relying on IPsec for encryption, and that IPsec IKE phase 1 negotiations communicate via UDP port 500.
L2TP provides frame tunneling at Layer 2 but does not specify cryptographic protection. Consequently, L2TP relies on IPsec to provide confidentiality and integrity. Additionally, IPsec uses IKE on UDP port 500 to establish Security Associations and exchange keys during phase 1 setup.

Adım Adım Çözüm

1
Evaluate the role and security capabilities of L2TP in a combined remote access VPN.
Identify that L2TP operates at Layer 2 to encapsulate PPP frames but lacks built-in encryption, requiring IPsec (specifically ESP) to secure transmitted data.
Understanding protocol layering reveals why L2TP and IPsec are frequently deployed together.
2
Verify the standard port and transport protocol used by IPsec IKE.
Confirm that IKE uses UDP port 500 for key exchange and SA negotiation in Phase 1.
Standard port identification is essential for configuring firewall rules for IPsec VPN tunnels.
3
Analyze distractors relating to OSI layer mapping and AAA encryption behavior.
Determine that IPsec AH operates at Layer 3 (without encryption) and that TACACS+ encrypts the entire packet body whereas RADIUS encrypts only the password.
Eliminates incorrect protocol claims.

Anahtar Kavram

L2TP/IPsec Protocol Integration and Centralized AAA AAA Characteristics
Soru 1022Soru

An organization is updating its perimeter defenses to protect a cluster of public-facing web servers from known exploit signatures. The security policy mandates that malicious traffic must be actively blocked in real time before reaching the internal network segment, while ensuring zero processing load added to the web servers' host operating systems. Which deployment architecture best fulfills these requirements?

Cevabı ve açıklamayı göster

Cevap: In-band Network Intrusion Prevention System (NIPS)

Cevap

The in-band Network Intrusion Prevention System (NIPS) is the correct architectural choice.
An in-band (inline) NIPS sits directly in the communication path between the external network and internal servers. It inspects live network traffic against attack signatures and actively drops malicious packets before they reach destination hosts, all while offloading inspection processing from host operating systems to dedicated network hardware.

Adım Adım Çözüm

1
Evaluate real-time blocking vs passive monitoring requirements.
The requirement specifies actively blocking malicious traffic before it reaches internal servers, ruling out passive/out-of-band monitoring tools like NIDS.
Out-of-band NIDS receive mirrored traffic and cannot prevent initial packet delivery.
2
Assess host resource constraints versus dedicated network appliance deployment.
The requirement mandates zero processing overhead on web server OSs, ruling out Host-based IPS (HIPS).
HIPS software consumes host CPU and memory resources to perform local inspection.
3
Verify inspection depth capabilities.
Known exploit signatures require payload-level deep packet inspection, ruling out simple stateless ACLs.
Stateless ACLs only evaluate basic packet header parameters such as source/destination IP addresses and port numbers.

Anahtar Kavram

Inline Network Intrusion Prevention System (NIPS) Placement and Functionality
Tahmini Süre:1m 30s
Soru 1023Soru

A network technician needs to inspect a host computer's local cache to view the mapping of IP addresses to physical MAC addresses. Which command-line utility should the technician execute?

Cevabı ve açıklamayı göster

Cevap: arp -a

Cevap

The correct command is arp -a, which lists the local Address Resolution Protocol table containing IP-to-MAC address entries.
The arp -a command displays the system ARP table, which lists cached IP addresses mapped to their corresponding physical network interface (MAC) addresses.

Adım Adım Çözüm

1
Identify the troubleshooting objective.
The requirement is to display local IP-to-MAC address translations.
Address Resolution Protocol (ARP) maintains the dynamic mapping between Layer 3 IP addresses and Layer 2 MAC addresses.
2
Select the appropriate command-line command.
Running arp -a outputs the active ARP cache table.
The arp tool with the -a parameter lists all cached ARP entries for all interfaces.

Anahtar Kavram

Address Resolution Protocol (ARP) CLI Diagnostics
Tahmini Süre:45s
Soru 1024Soru

A network technician captures packet traces while troubleshooting administrative access logs on core routers. The trace analysis reveals that the authentication protocol operates over UDP, encrypts only the password field within packets, and combines authentication and authorization procedures into single exchange pairs. Which security protocol is actively in use for this centralized access control system?

Cevabı ve açıklamayı göster

Cevap: RADIUS

Cevap

RADIUS is the security protocol currently in use.
The scenario describes RADIUS because RADIUS relies on UDP (typically ports 1812 and 1813), encrypts only the password attribute within the packet, and combines authentication and authorization into single packet transactions.

Adım Adım Çözüm

1
Analyze transport protocol characteristics
The packet trace shows connectionless UDP transport.
RADIUS utilizes UDP (standard ports 1812 for authentication/authorization and 1813 for accounting), whereas TACACS+ uses reliable TCP (port 49).
2
Evaluate payload encryption scope
Only the password field is encrypted.
RADIUS encrypts only the password attribute inside Access-Request packets, leaving the rest of the packet header unencrypted. TACACS+ encrypts the entire packet body.
3
Examine AAA functional coupling
Authentication and authorization are combined.
RADIUS combines authentication and authorization within the same packet exchange, unlike TACACS+ which decouples AAA functions.

Anahtar Kavram

RADIUS vs TACACS+ Protocol Architecture and Operational Characteristics
Tahmini Süre:1m 0s
Soru 1025Soru

A network administrator discovers that hosts on a local subnet are directing default gateway traffic to an unauthorized computer's MAC address. An inspection reveals that the ARP caches on the affected hosts associate the default gateway's IP address with the attacker's MAC address. Which of the following statements correctly describe the mechanisms or impact of this network security attack? (Select TWO)

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

Cevabı ve açıklamayı göster

Cevap: The attacker transmits unsolicited ARP responses containing forged IP-to-MAC address mappings to poison host ARP tables.; This attack allows the threat actor to establish a Man-in-the-Middle (MitM) position to inspect or tamper with local subnet traffic.

Cevap

The correct statements are that the attacker transmits unsolicited ARP responses containing forged IP-to-MAC address mappings to poison host ARP tables, and that this attack allows the threat actor to establish a Man-in-the-Middle (MitM) position to inspect or tamper with local subnet traffic.
The scenario describes ARP poisoning (or ARP spoofing). In an ARP poisoning attack, a malicious actor broadcasts unsolicited gratuitous ARP replies containing spoofed Layer 2 address mappings. Endpoints receive these updates and modify their local ARP tables, routing traffic intended for the default gateway directly to the attacker. This configuration enables a Man-in-the-Middle (MitM) position, giving the attacker the ability to capture, analyze, or modify traffic before forwarding it to its actual destination.

Adım Adım Çözüm

1
Analyze the observed anomaly and log evidence from the scenario.
The issue involves altered ARP table entries on a local subnet mapping the gateway's IP to an unauthorized host MAC address.
Identifying that MAC-to-IP binding manipulation is occurring at Layer 2 points directly to an ARP poisoning/spoofing attack.
2
Evaluate the mechanism used by ARP poisoning.
Attackers send forged, unsolicited (gratuitous) ARP reply messages across the local broadcast domain.
Hosts accept these ARP replies and update their local cache tables, directing frame traffic intended for the gateway to the attacker.
3
Determine the impact of successfully poisoning local ARP caches.
The attacker achieves a Man-in-the-Middle (MitM) posture.
Traffic destined for off-subnet destinations flows through the attacker's system before reaching the real default gateway.

Anahtar Kavram

ARP Poisoning and Man-in-the-Middle (MitM) Attacks
Soru 1026Soru

A network administrator is reviewing basic firewall operations and Access Control List (ACL) filtering rules. Which of the following statements correctly describe how these security mechanisms function? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Stateful firewalls maintain a connection table to dynamically allow return traffic for established sessions.; Standard IPv4 Access Control Lists evaluate network traffic based strictly on the source IP address.

Cevap

The correct statements are that stateful firewalls maintain a connection table to dynamically allow return traffic for established sessions, and standard IPv4 Access Control Lists evaluate network traffic based strictly on the source IP address.
Stateful firewalls track session state information in a state table, allowing return traffic automatically. Additionally, standard ACLs filter traffic solely by inspecting the source IP address of packets.

Adım Adım Çözüm

1
Analyze firewall session tracking behavior
Stateful firewalls keep state tables recording active outgoing connections (such as source/destination IP and port pairs), which allows incoming response traffic automatically.
This differentiates stateful inspection from simple packet filtering.
2
Differentiate standard vs. extended IPv4 ACL capabilities
Standard IPv4 ACLs (typically numbered 1–99) look only at the source IP address in the packet header.
They lack the ability to inspect destination IPs, protocols, or port numbers.
3
Evaluate distractors regarding stateless inspection and ACL default behavior
Stateless filters do not track session state, and ACLs conclude with an implicit deny rule rather than an implicit permit.
Understanding these baseline security properties prevents accidental exposure of network segments.

Anahtar Kavram

Firewall Statefulness and Standard ACL Characteristics
Soru 1027Soru

A network administrator is setting up an IPsec remote access VPN tunnel for mobile workers. Place the steps of the Internet Key Exchange (IKE) negotiation process in the correct chronological order from first to last.

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

Cevabı ve açıklamayı göster

Cevap

The correct sequence begins with negotiating Phase 1 proposal parameters, followed by mutual authentication to form the Phase 1 ISAKMP SA, then negotiating Phase 2 IPsec SAs inside that protected tunnel, and concludes with establishing the Phase 2 tunnel to transmit encrypted payload data.
IPsec VPN setup requires establishing a secure management tunnel (IKE Phase 1) before negotiating parameters for actual payload encryption (IKE Phase 2). The process begins with Phase 1 parameter proposal exchange, followed by mutual peer authentication to complete the ISAKMP SA. Next, Phase 2 negotiations occur within the secure Phase 1 tunnel to create the IPsec SA, culminating in the establishment of the data tunnel for user traffic.

Adım Adım Çözüm

1
Identify the initial IKE Phase 1 handshake proposal step.
The client and gateway negotiate Phase 1 parameters (encryption, hashing, DH group).
Security parameters for the control channel must be agreed upon before any secure communication can start.
2
Identify Phase 1 peer authentication.
The endpoints authenticate each other and create the ISAKMP SA.
Authenticating endpoints verifies identity and secures the Phase 1 management tunnel.
3
Identify Phase 2 IPsec SA negotiation.
Parameters for data payload protection are negotiated inside the Phase 1 channel.
Phase 2 parameters are protected by the encryption provided by the Phase 1 ISAKMP SA.
4
Identify Phase 2 data tunnel establishment.
The IPsec data tunnel opens and encrypted user traffic begins flowing.
Encrypted user payload can only traverse the network once Phase 2 SAs are fully established.

Anahtar Kavram

IPsec IKE Phase 1 and Phase 2 Negotiation Order
Soru 1028Soru

Match each out-of-band management technology on the left to the enterprise infrastructure recovery scenario on the right for which it serves as the most appropriate solution.

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

Öğeler

IP-KVM Switch with Virtual Media Mapping
Switched Smart Power Distribution Unit (PDU)
Cellular Out-of-Band (OOB) Gateway with VPN
Dedicated Serial Terminal Server (Console Server)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

IP-KVM Switch with Virtual Media Mapping matches OS reinstallation via remotely mounted ISO images. Switched Smart PDU matches remote power cycling and current monitoring of frozen host servers. Cellular OOB Gateway matches alternate transport during primary fiber link cuts. Dedicated Serial Terminal Server matches console command-line recovery of switches stuck at bootloader prompts.
Each management method addresses a specific layer of failure. Virtual media on IP-KVM enables full remote system installation by presenting local images to remote bare-metal hardware. Smart PDUs provide direct control over power outlets to recover unresponsive hardware via hard power cycling. Cellular OOB gateways bypass severed terrestrial infrastructure using cellular networks to restore connectivity to management devices. Serial terminal servers consolidate console cables into a centralized platform for low-level switch and router recovery.

Adım Adım Çözüm

1
Analyze the technical requirements of each recovery scenario.
Scenario 1 requires low-level video/keyboard access and optical/ISO media redirection. Scenario 2 requires raw electrical power control and telemetry. Scenario 3 requires an independent WAN communication channel. Scenario 4 requires asynchronous serial CLI access.
Matching out-of-band techniques requires evaluating whether the access requirement is physical power, serial signals, peripheral redirection, or alternative transport layer availability.
2
Map each hardware/protocol mechanism to its specialized capability.
Virtual media redirection aligns with IP-KVM capabilities. Switched power outlets align with Smart PDUs. Independent cellular radio backhaul aligns with OOB Cellular Gateways. Multi-port RS-232/RJ-45 serial concentrators align with Terminal Servers.
Matching each technology's core function ensures proper operational recovery without relying on corrupted or unavailable in-band operating systems.

Anahtar Kavram

Out-of-Band (OOB) Remote Management Mechanisms
Soru 1029Soru

A network administrator is diagnosing Layer 2 operational issues across several switch ports in an enterprise campus network. Match each observed switch log message or diagnostic symptom on the left to its correct underlying root cause on the right.

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

Öğeler

%CDP-4-NATIVE_VLAN_MISMATCH: Native VLAN mismatch discovered on interface GigabitEthernet0/1 (10), with Switch-B GigabitEthernet0/1 (20).
%SPANTREE-2-BLOCK_BPDUGUARD: Received BPDU on port FastEthernet0/24 with BPDU Guard enabled. Disabling port.
Interface FastEthernet0/5 statistics display an abnormally high count of late collisions, FCS errors, and deferred transmissions under high traffic load.
Interface GigabitEthernet0/2 status displays 'down/down (not-connect)' after trunking failed to form, with DTP set to 'desirable' on Switch-A and 'nonegotiate' on Switch-B.

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

1. CDP native VLAN mismatch log pairs with inconsistent 802.1Q untagged traffic configurations.
2. SPANTREE BPDU Guard error log pairs with an unauthorized switch or device sending BPDUs on an edge access port.
3. Late collisions and FCS errors statistics pair with speed/duplex autonegotiation failure (half/full mismatch).
4. DTP desirable vs nonegotiate failure pairs with Dynamic Trunking Protocol negotiation suppressed on one end.
Each diagnostic log or symptom matches its precise root cause based on standard Layer 2 operation: CDP mismatch logs match native VLAN discrepancies; BPDU Guard err-disable events match rogue switch detection on edge ports; late collisions match duplex autonegotiation failures; and DTP dynamic trunking failure matches a nonegotiate command suppressing DTP frame generation.

Adım Adım Çözüm

1
Analyze the native VLAN log message
CDP directly reports native VLAN 10 on one end and VLAN 20 on the peer
802.1Q trunks require matching native VLANs on both endpoints to correctly process untagged frames.
2
Analyze the BPDU Guard error message
PortFast access port was disabled due to incoming BPDUs
BPDU Guard prevents rogue Layer 2 bridge insertion on ports designated for end-host devices.
3
Evaluate interface error counters for late collisions
Late collisions indicate transmission collisions occurring past the slot time window
This error signature specifically identifies duplex mismatches where full-duplex transmits while half-duplex is listening/transmitting.
4
Evaluate the DTP configuration discrepancy
DTP desirable needs incoming DTP frames, but nonegotiate turns off DTP frame output
Trunk negotiation fails if one switch stops sending DTP frames while the other relies on them for dynamic initiation.

Anahtar Kavram

Troubleshooting Layer 2 switching, VLAN trunking, STP port security, and physical interface negotiation issues
Soru 1030Soru

A network security administrator is configuring wireless security policies for remote retail branches that lack 802.1X/RADIUS authentication infrastructure. The new security baseline requires protecting modern client connections against offline dictionary attacks and wireless deauthentication frame spoofing. However, legacy Wi-Fi 5 point-of-sale terminals that only support WPA2-Personal (AES-CCMP) and do not support 802.11w Protected Management Frames (PMF) must continue operating on the same SSID until phase-out. Which of the following security settings must the administrator configure on the wireless controllers to meet all operational and security criteria? (Select TWO)

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

Cevabı ve açıklamayı göster

Cevap: Enable WPA3-Personal Transition Mode to allow Simultaneous Authentication of Equals (SAE) for supporting devices alongside WPA2-Personal (CCMP) fallback.; Configure Protected Management Frames (PMF / 802.11w) as optional or capable rather than required.

Cevap

The administrator must enable WPA3-Personal Transition Mode with Simultaneous Authentication of Equals (SAE) and set Protected Management Frames (PMF / 802.11w) to optional (capable).
WPA3-Personal Transition Mode permits both WPA3-Personal (using SAE to resist dictionary attacks) and WPA2-Personal (using AES-CCMP) to operate on the same SSID. Additionally, setting PMF (802.11w) to optional/capable permits legacy terminals that lack 802.11w support to connect while still enforcing management frame encryption/integrity for modern supporting clients.

Adım Adım Çözüm

1
Analyze authentication and site infrastructure requirements
Since RADIUS infrastructure is absent, 802.1X/Enterprise modes are ruled out, requiring a WPA3-Personal solution.
WPA3-Enterprise cannot function without an active RADIUS server for credential verification.
2
Determine key exchange protocol for backward compatibility and modern security
Selecting WPA3-Personal Transition Mode enables Simultaneous Authentication of Equals (SAE) for modern clients while maintaining WPA2-Personal (AES-CCMP) compatibility.
SAE replaces PSK to eliminate offline dictionary attack vulnerabilities via dragonfly key exchange, while transition mode allows legacy clients to join.
3
Determine Management Frame Protection (802.11w) policy
Configure PMF as optional/capable rather than mandatory.
Mandatory PMF prevents non-PMF legacy devices from connecting, whereas optional PMF protects supported endpoints without dropping legacy clients.

Anahtar Kavram

WPA3-Personal Transition Mode & PMF Negotiation
Tahmini Süre:2m 0s
Soru 1031Soru

A network security technician is configuring a secure wireless deployment for a financial institution's regional office. Organization policy requires individual user accounting and authentication against a central Active Directory infrastructure via a RADIUS server, along with enforced protection against deauthentication and management frame spoofing attacks. Which wireless security deployment standard and authentication combination fully satisfies these organization requirements?

Cevabı ve açıklamayı göster

Cevap: WPA3-Enterprise using 802.1X EAP authentication with mandatory Protected Management Frames (PMF)

Cevap

WPA3-Enterprise using 802.1X EAP authentication with mandatory Protected Management Frames (PMF)
WPA3-Enterprise incorporates 802.1X EAP to authenticate users individually against a backend RADIUS server connected to Active Directory. Additionally, the WPA3 specification mandates the implementation of Protected Management Frames (IEEE 802.11w / PMF), which encrypts and authenticates management frames to protect against wireless eavesdropping and spoofed disassociation/deauthentication denial-of-service attacks.

Adım Adım Çözüm

1
Analyze authentication requirements
Centralized RADIUS integration and individual accounting require an 802.1X EAP enterprise mode rather than personal pre-shared keys or SAE.
Enterprise modes use 802.1X to pass authentication requests to a backend RADIUS server for individual identity validation.
2
Analyze management frame protection requirements
Protected Management Frames (PMF / IEEE 802.11w) are required to prevent spoofed deauthentication attacks.
WPA3 mandates PMF across all modes, whereas earlier standards made PMF optional.
3
Synthesize standard and protocol selection
Combining 802.1X EAP RADIUS authentication with mandatory PMF points directly to WPA3-Enterprise.
WPA3-Enterprise delivers both robust 802.1X/RADIUS enterprise access control and mandatory management frame protection.

Anahtar Kavram

Wireless Security Standards (WPA3-Enterprise vs Personal, 802.1X, PMF)
Soru 1032Soru

A network security administrator is evaluating network security monitoring appliances for an enterprise network segment that hosts time-sensitive industrial SCADA controllers. The team is deciding between installing an out-of-band passive Network Intrusion Detection System (NIDS) fed by a hardware network TAP versus an in-band inline Network Intrusion Prevention System (NIPS). Which of the following statements correctly identify operational trade-offs or characteristics of deploying the passive NIDS architecture over the inline NIPS architecture? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: The passive NIDS deployment introduces zero processing latency into the primary traffic path, avoiding potential disruption to time-sensitive control traffic.; The passive NIDS cannot directly stop inline malicious packets in real time before they arrive at the target system.

Cevap

The passive NIDS deployment introduces zero processing latency into the primary traffic path and cannot directly stop inline malicious packets in real time before they arrive at the target system.
Out-of-band passive NIDS deployments utilize network TAPs or mirror ports to receive copies of traffic. Consequently, live packets pass uninterrupted between source and destination without experiencing processing latency from the inspection engine. Because the NIDS operates on traffic duplicates, it lacks the ability to actively drop or alter malicious frames before they hit the target network interface.

Adım Adım Çözüm

1
Analyze the structural difference between out-of-band (passive TAP) NIDS and in-band (inline) NIPS architecture.
Passive NIDS receives duplicated network traffic from a test access point (TAP) or SPAN port, whereas inline NIPS processes live traffic directly in the communication path.
Understanding physical placement determines latency impact and inline blocking capabilities.
2
Evaluate the impact of passive monitoring on packet delivery latency and prevention capability.
Since traffic flows uninhibited past the TAP, no interface queuing or inspection delay is added to the live link. However, because the system receives copies, it cannot drop malicious packets before they reach the target destination.
Out-of-band placement guarantees zero inline latency at the trade-off of active inline packet filtering.
3
Evaluate inspection capabilities regarding OSI layers and encrypted traffic on passive streams.
Passive NIDS appliances perform full deep packet inspection up to Layer 7 application data. Encryption on port 443 (HTTPS) still hides packet payloads regardless of whether monitoring is passive or inline, unless decryption keys are configured.
NIDS operates across layers up to Layer 7, but payload encryption obscures higher-layer content regardless of TAP monitoring.

Anahtar Kavram

Passive out-of-band NIDS vs Inline NIPS architectural trade-offs
Soru 1033Soru

A network administrator is troubleshooting an isolated server at a remote site after its operating system suffers a complete kernel panic. Because the host OS is non-functional, all in-band management sessions are disconnected and unresponsive. The administrator must view pre-boot POST and BIOS screens and perform a hard power cycle on the system without physical access. Which of the following deployment strategies best achieves these out-of-band management objectives?

Cevabı ve açıklamayı göster

Cevap: Connecting an IP-KVM appliance to the server's video and USB ports while plugging the server's power supplies into a networked managed Power Distribution Unit (PDU)

Cevap

The optimal solution is to connect an IP-KVM appliance to the server's hardware console ports and plug its power supplies into a networked managed Power Distribution Unit (PDU).
Out-of-band (OOB) management operates independently of the host operating system. An IP-KVM switch captures hardware display output (BIOS/POST) and sends keyboard/mouse inputs directly via hardware ports. Paired with a networked managed PDU (Power Distribution Unit), an administrator can remotely toggle electrical power to force a hard cold reboot when the host OS is frozen.

Adım Adım Çözüm

1
Analyze the management constraints and system failure state.
Identified that the host operating system has kernel-panicked, rendering all in-band software services (SSH, RDP, VNC, SNMP) non-functional.
Out-of-band (OOB) solutions must operate independent of the host OS and primary network stack.
2
Identify the required hardware interaction capabilities.
The scenario requires BIOS/POST screen output viewing and direct physical electrical power toggling.
Standard network CLI tools cannot display pre-boot video or force a hard hardware power cycle.
3
Select the appropriate out-of-band hardware technologies.
An IP-KVM provides remote keyboard, video, and mouse interaction at the hardware level, while a managed PDU provides remote outlet power control.
Combining IP-KVM with a managed PDU fulfills both hardware-level display inspection and hard power cycling requirements.

Anahtar Kavram

Out-of-Band (OOB) Management and Hardware Abstraction
Tahmini Süre:2m 0s
Soru 1034Soru

A network administrator needs to select remote access mechanisms for data center infrastructure that provide secure, encrypted command-line management or function out-of-band during a primary production network outage. Which of the following options satisfy these requirements? (Select TWO)

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

Cevabı ve açıklamayı göster

Cevap: Connecting device serial console ports to a dedicated terminal server accessible via an external cellular modem; Establishing a Secure Shell (SSH) connection over a dedicated out-of-band management interface

Cevap

Connecting device serial console ports to a dedicated terminal server with cellular backup, and establishing Secure Shell (SSH) connections over an isolated out-of-band management interface.
Out-of-band management relies on dedicated physical or secondary paths (such as serial console connections to a terminal server backed by cellular connectivity) to reach devices independently of production IP networks. For remote management, Secure Shell (SSH) ensures administrative commands and credentials are securely encrypted.

Adım Adım Çözüm

1
Identify methods that provide true out-of-band (OOB) connectivity during primary network failures.
Connecting physical console/serial ports to a terminal server paired with an independent transport channel (such as a cellular modem) allows network administrators to manage hardware even when primary and secondary WAN links are down.
Out-of-band management requires an alternate physical or logical pathway isolated from standard production data paths.
2
Identify secure, encrypted remote access protocols.
Secure Shell (SSH) encrypts all traffic (including passwords and commands) to prevent eavesdropping and unauthorized access, especially when paired with a dedicated out-of-band management network.
In-band unencrypted protocols such as Telnet or legacy SNMP transmit credentials in cleartext and present unacceptable security risks.

Anahtar Kavram

Out-of-Band Management & Secure Remote Access Protocols
Tahmini Süre:1m 0s
Soru 1035Soru

A network security analyst is reviewing logs and architecture reports following a series of coordinated security incidents across an enterprise environment. Match each network attack type on the left with its corresponding operational vector or primary mechanism on the right.

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

Öğeler

Deauthentication Attack
BGP Route Hijacking
DNS Amplification Attack
Evil Twin Attack

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Deauthentication Attack matches spoofing unauthenticated 802.11 management frames; BGP Route Hijacking matches maliciously advertising unauthorized autonomous system IP prefixes; DNS Amplification Attack matches exploiting open recursive resolvers with forged source IP headers; Evil Twin Attack matches deploying a rogue access point with identical SSID and authentication parameters.
Each attack type is mapped directly to its defining vector: Deauthentication attacks send spoofed 802.11 management frames to force client disconnects; BGP route hijacking broadcasts false prefix advertisements to divert network traffic; DNS amplification uses open resolvers to magnify UDP traffic sent to a spoofed victim IP; and Evil Twin attacks establish unauthorized wireless access points using trusted SSIDs to harvest credentials.

Adım Adım Çözüm

1
Analyze the mechanism of a Deauthentication Attack
Identified that it targets Layer 2 wireless management frames to break established client associations
Legacy 802.11 wireless management frames do not require authentication unless 802.11w Protected Management Frames are enforced
2
Analyze the mechanism of BGP Route Hijacking
Identified that it involves sending fraudulent BGP route announcements to alter Internet path selection
Border Gateway Protocol inherently trusts peer announcements unless secured with mechanisms such as RPKI
3
Analyze the mechanism of a DNS Amplification Attack
Identified that it is a reflection DDoS vector using open resolvers and spoofed UDP headers
Small DNS request packets with EDNS0 options generate disproportionately large response payloads sent to the victim's spoofed IP address
4
Analyze the mechanism of an Evil Twin Attack
Identified that it sets up a fraudulent wireless network mimicking a legitimate service set identifier
Wireless clients typically auto-connect to known SSIDs offering the highest signal strength

Anahtar Kavram

Identifying specific network security attack vectors across wireless, routing, and application infrastructure
Tahmini Süre:2m 0s
Soru 1036Soru

A network technician is configuring environmental controls for a server room housing sensitive equipment. To minimize the risk of electrostatic discharge (ESD) damaging internal hardware components, which environmental measure should be maintained within standard recommended thresholds?

Cevabı ve açıklamayı göster

Cevap: Ambient relative humidity levels

Cevap

Maintaining proper ambient relative humidity levels is the primary environmental control used to prevent electrostatic discharge (ESD) buildup in network equipment facilities.
Electrostatic discharge occurs when dry air allows static charges to accumulate on physical surfaces and personnel. Maintaining ambient relative humidity at recommended target levels (typically 40% to 55%) ensures sufficient air moisture to dissipate static charges safely before they reach network hardware.

Adım Adım Çözüm

1
Identify the physical security/environmental hazard described in the scenario.
The target threat is electrostatic discharge (ESD), which can destroy electronic micro-components.
Understanding the physical mechanics of ESD is necessary to select the appropriate environmental countermeasure.
2
Evaluate how environmental metrics control static electricity.
Low humidity creates dry air, causing static electricity to accumulate easily on objects and human bodies. Maintaining appropriate relative humidity keeps moisture levels sufficient to ground static charges harmlessly.
Environmental control of moisture (humidity) directly mitigates ESD risks in server rooms and wiring closets.

Anahtar Kavram

Environmental Controls and Electrostatic Discharge Mitigation
Soru 1037Soru

Engineers troubleshooting a remote access IPsec IKEv2 VPN deployment notice that clients can successfully complete initial IKE negotiations over UDP port 500 when assigned a public IPv4 address directly. However, when telecommuters attempt to connect from behind residential routers performing Port Address Translation (PAT), Phase 2 negotiation fails and no encrypted data passes through the tunnel because the intermediate PAT router drops IP Protocol 50 (ESP) packets. Which configuration modification on the VPN gateway will resolve this connection issue while preserving payload encryption for telecommuters?

Cevabı ve açıklamayı göster

Cevap: Enable NAT Traversal (NAT-T) on the gateway to encapsulate IPsec ESP packets inside UDP port 4500 datagrams.

Cevap

Enable NAT Traversal (NAT-T) on the gateway to encapsulate IPsec ESP packets inside UDP port 4500 datagrams.
Enabling NAT Traversal (NAT-T) dynamically detects intermediate NAT/PAT devices during IKE negotiations. Upon detection, the gateway and client encapsulate IPsec ESP packets (IP Protocol 50) within UDP datagrams using destination port 4500. Because UDP port 4500 includes standard Layer 4 port headers, intermediate routers performing Port Address Translation (PAT) can translate and forward the traffic without dropping the VPN connection or invalidating payload encryption.

Adım Adım Çözüm

1
Analyze the protocol failure cause in the scenario.
IPsec Encapsulating Security Payload (ESP) operates directly over IP as Protocol 50 without Layer 4 TCP or UDP port headers.
Because Port Address Translation (PAT) relies on modifying Layer 4 TCP/UDP port numbers, intermediate PAT routers frequently drop or fail to map raw IP Protocol 50 ESP traffic.
2
Evaluate standard IPsec solutions for PAT compatibility.
NAT Traversal (NAT-T) is defined in RFC standards (RFC 3947/3948) specifically to detect NAT/PAT devices during IKE Phase 1.
When NAT is detected, NAT-T wraps the ESP packet inside a standard UDP header using destination port 4500.
3
Verify that payload security and data path function correctly.
Intermediate PAT routers can successfully track and translate UDP port 4500 sessions, ensuring encrypted VPN payloads pass through while maintaining full ESP encryption integrity.
Encapsulating ESP in UDP port 4500 allows PAT translation without breaking the cryptographic integrity of the original payload.

Anahtar Kavram

IPsec NAT Traversal (NAT-T) and UDP Port 4500 Encapsulation
Soru 1038Soru

A network technician needs to inspect live network traffic and decode packet headers passing through a server's network interface to troubleshoot an application issue. Which of the following tools are packet analyzers designed for this task? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: tcpdump; Wireshark

Cevap

tcpdump and Wireshark are both packet analyzers capable of capturing and inspecting network protocol traffic.
tcpdump and Wireshark are software packet analyzers that intercept, log, and decode raw network frames from a network interface.

Adım Adım Çözüm

1
Identify the required functional capability in the scenario.
The requirement is to capture network frames and inspect protocol headers.
Determining whether physical electrical testing or upper-layer protocol analysis is needed guides tool selection.
2
Evaluate the candidate tools based on operating layer and purpose.
tcpdump and Wireshark operate at the protocol analysis level, whereas tone probes and loopback plugs operate at the physical hardware testing level.
Hardware testing tools evaluate physical layer continuity and signal paths but cannot decode packet contents.

Anahtar Kavram

Packet analyzers (or protocol analyzers) capture and decode protocol data units across network layers, whereas hardware physical testers verify physical media and interface hardware.
Soru 1039Soru

A network administrator is configuring a remote access VPN for external contractors who need access to internal web-based applications. To comply with corporate security policies, the solution must allow access directly through a standard web browser over TCP port 443 without requiring the installation of dedicated endpoint client software on contractor devices. Which VPN technology should the administrator deploy?

Cevabı ve açıklamayı göster

Cevap: Clientless SSL/TLS VPN

Cevap

Clientless SSL/TLS VPN is the correct solution because it operates via web browsers over TCP port 443 without requiring dedicated client software installation.
The choice specifying a Clientless SSL/TLS VPN is correct because it uses standard web technologies (HTTPS on TCP port 443) through the user's browser, satisfying the requirement to grant access to internal web applications without installing software on the client device.

Adım Adım Çözüm

1
Analyze the connectivity requirements given in the scenario
Identified key requirements: browser-based access, TCP port 443 (HTTPS), and zero endpoint client software installation.
Contractors use unmanaged endpoints where installing corporate client software is prohibited or impracticable.
2
Evaluate remote access protocols against the identified requirements
SSL/TLS VPN supports a clientless portal model native to web browsers using TCP 443. IPsec, L2TP/IPsec, and GRE all require local software configuration or network equipment.
SSL/TLS functions at the Application/Transport layers, enabling HTML portal access directly.

Anahtar Kavram

Clientless SSL/TLS Remote Access VPNs
Soru 1040Soru

A network administrator is configuring remote access VPN user authentication to forward requests to a central server using RADIUS. Which transport protocol and default destination port does RADIUS use for authentication traffic?

Cevabı ve açıklamayı göster

Cevap: UDP port 1812

Cevap

RADIUS uses UDP port 1812 by default for authentication traffic.
RADIUS relies on UDP transport and uses port 1812 by default for authentication and authorization traffic.

Adım Adım Çözüm

1
Identify the protocol used for centralized remote access authentication in the scenario.
The scenario specifies RADIUS (Remote Authentication Dial-In User Service).
RADIUS is a widely deployed open-standard AAA protocol.
2
Recall the transport layer protocol and default port assignment for RADIUS authentication.
RADIUS uses UDP port 1812 for authentication and authorization.
Standard RFC 2865 assigns UDP port 1812 to RADIUS authentication services (and UDP port 1813 for RADIUS accounting).

Anahtar Kavram

RADIUS Protocol Specifications and Port Assignments
ÖncekiSayfa 52 / 112Sonraki
Tüm alıştırma soruları — CompTIA Network+ | Examkin