Tüm alıştırma soruları

2237 soru

Soru 181Soru

A security analyst is auditing an edge router configured with stateless Access Control Lists (ACLs) to filter traffic between an internal management subnet (10.200.5.0/2410.200.5.0/24) and a cloud monitoring cluster (172.31.40.0/24172.31.40.0/24). The analyst notes that SNMP monitoring requests sent over UDP port 161 from the cloud cluster to internal endpoints pass successfully, but the response packets generated by the internal endpoints fail to reach the monitoring cluster.

Which TWO of the following statements correctly explain why this issue occurs and identify an appropriate resolution?

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

Cevabı ve açıklamayı göster

Cevap: Stateless ACLs evaluate packets individually without tracking connection state, requiring an explicit reverse ACL rule to permit return UDP traffic from source port 161 back to the monitoring cluster.; Migrating the filtering mechanism to a stateful firewall would resolve the issue because stateful inspection dynamically allows return traffic by referencing an entry created in its state table during outbound transmission.

Cevap

The issue occurs because stateless ACLs inspect packets individually without maintaining connection tables, requiring an explicit reverse permit rule for returning traffic. Alternatively, replacing the stateless ACL with a stateful firewall resolves the issue by dynamically tracking sessions and automatically permitting return packets matching an active state table entry.
Stateless ACLs evaluate every packet independently without storing state history. Consequently, permitting outbound queries from a monitoring cluster does not automatically permit the response packets returning from internal hosts; an explicit reverse ACL entry is required to allow traffic flowing back. Alternatively, deploying a stateful firewall resolves this limitation because stateful devices monitor communication flows and dynamically permit return packets corresponding to active session entries.

Adım Adım Çözüm

1
Analyze the filtering architecture
Identified that the edge router uses stateless Access Control Lists (ACLs).
Stateless devices treat every packet as an independent event and do not keep memory of previous packets or established connections.
2
Evaluate why return packets are dropped
Outbound SNMP queries from 172.31.40.0/24172.31.40.0/24 to 10.200.5.0/2410.200.5.0/24 match an outbound permit rule, but returning response traffic moving in the opposite direction hits the implicit deny rule because no matching inbound rule exists.
Stateless ACLs require symmetric, bidirectional rule definitions for bidirectional communication.
3
Determine valid remediation approaches
Two solutions exist: (1) Add an explicit reverse ACL rule for return traffic, or (2) replace the stateless ACL with a stateful firewall.
Stateful firewalls maintain connection tables (even creating pseudo-state entries for UDP flows) to dynamically permit returning response packets.

Anahtar Kavram

Stateless vs. Stateful Packet Filtering and ACL Directionality
Soru 182Soru

During a security audit, a network analyst discovers that a host connected to an access port on VLAN 10 successfully transmitted unauthorized frames directly to a critical server on VLAN 30 without passing through an inter-VLAN routing firewall. The two hosts reside on separate switches connected by an 802.1Q trunk link, where VLAN 10 is designated as the native VLAN. Which of the following statements correctly identify the mechanism behind this security breach and the appropriate remediation step? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: The attacker crafted frames with dual 802.1Q tags; the first switch stripped the outer tag matching its native VLAN and forwarded the frame with the inner target tag across the trunk.; The attack can be prevented by reassigning the native VLAN across all trunk links to an unused dummy VLAN ID and explicitly tagging native VLAN traffic.

Cevap

The attack was executed via 802.1Q double tagging, where the first switch stripped the outer native VLAN tag and forwarded the frame with the inner tag intact. The threat is mitigated by changing the native VLAN to an unused dummy VLAN ID across all trunk interfaces.
In an 802.1Q double tagging attack, an attacker sends an Ethernet frame containing two VLAN tags (an outer tag matching the trunk's native VLAN and an inner tag specifying the target destination VLAN). When the first switch receives the frame, it strips the outer native VLAN tag before transmitting the frame over the trunk link. The secondary switch reads the remaining inner tag and delivers the frame to the destination VLAN, bypassing Layer 3 routing and firewall filtering. To remediate this risk, network administrators must configure an unused dummy VLAN ID as the native VLAN across all switch trunk ports so that incoming frames from active access VLANs are never subject to native tag stripping.

Adım Adım Çözüm

1
Analyze the reported VLAN traversal anomaly.
Identified 802.1Q Double Tagging (VLAN Hopping) exploitation.
When an attacker's access VLAN matches the native VLAN of an 802.1Q trunk, crafted frames containing two 802.1Q headers will have their outer tag removed by the first switch, allowing the inner tag to dictate destination VLAN delivery on the receiving switch.
2
Evaluate mitigation controls for double tagging vulnerabilities.
Reassign native VLANs to dedicated, unused VLAN IDs.
If no user endpoints reside on the native VLAN, frames arriving from valid host VLANs will always retain explicit tags, preventing unauthorized single-tag stripping over trunk links.

Anahtar Kavram

802.1Q Double Tagging Attack and Mitigation
Soru 183Soru

Match each wireless security standard on the left with its corresponding primary cryptographic cipher and authentication mechanism on the right.

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

Öğeler

WEP (Wired Equivalent Privacy)
WPA2-Personal
WPA3-Personal
WPA3-Enterprise (192-bit mode)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

WEP pairs with RC4/CRC-32; WPA2-Personal pairs with AES-CCMP with PSK; WPA3-Personal pairs with SAE with AES-CCMP-128/GCMP-128; WPA3-Enterprise (192-bit mode) pairs with GCMP-256 with 802.1X EAP.
Each wireless security standard defines specific cryptographic primitives and authentication methods: WEP uses RC4 with CRC-32; WPA2-Personal introduces AES-CCMP with a Pre-Shared Key; WPA3-Personal replaces traditional PSK with SAE while retaining/upgrading AES encryption; and WPA3-Enterprise 192-bit mode enforces GCMP-256 alongside enterprise 802.1X EAP authentication.

Adım Adım Çözüm

1
Identify legacy protocol primitives
WEP relies on the RC4 stream cipher and CRC-32.
WEP is the legacy standard utilizing static keys and RC4 encryption.
2
Distinguish WPA2 pre-shared key standards
WPA2-Personal pairs AES-CCMP with PSK authentication.
AES-CCMP replaced TKIP/RC4 as the mandatory cipher suite under IEEE 802.11i/WPA2.
3
Map WPA3 personal key exchange mechanisms
WPA3-Personal utilizes Simultaneous Authentication of Equals (SAE).
SAE provides forward secrecy and resistance to offline dictionary attacks.
4
Map enterprise high-security profile requirements
WPA3-Enterprise 192-bit mode maps to GCMP-256 with 802.1X EAP.
The 192-bit security mode specified in WPA3 requires GCMP-256 and robust EAP authentication methods.

Anahtar Kavram

Wireless Security Standards and Encryption Protocol Mapping
Soru 184Soru

A network administrator needs to display a list of all active network connections and listening ports on a local Windows host to inspect running network services. Which command-line utility should the administrator execute?

Cevabı ve açıklamayı göster

Cevap: netstat

Cevap

The administrator should execute the netstat command to view active network connections and listening ports on the local system.
The netstat (network statistics) command-line tool is specifically designed to display active TCP connections, UDP ports, listening sockets, and protocol statistics for the local host.

Adım Adım Çözüm

1
Identify the troubleshooting objective
The goal is to inspect open socket connections and listening ports on the local host.
Determining listening ports helps identify running network services and detect unauthorized port usage.
2
Evaluate command-line network tools
The netstat (network statistics) command reports incoming/outgoing TCP/UDP connections, listening ports, and routing tables.
Other tools like nslookup, tracert, and ipconfig serve different functions such as DNS queries, route tracing, and adapter IP configuration.

Anahtar Kavram

Utilizing Command-Line Network Troubleshooting Utilities (netstat)
Tahmini Süre:45s
Soru 185Soru

A network engineer is troubleshooting a name resolution issue on a corporate client workstation. When the engineer runs `nslookup internal.example.com 10.20.4.15`, the hostname successfully resolves to `10.20.4.100`. However, standard web browsers and ping utilities on the workstation report an error stating that the host cannot be found. Which of the following potential root causes best explain why direct `nslookup` queries succeed while system applications fail to resolve the hostname? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: The local hosts file on the workstation contains an outdated or incorrect static mapping for the target hostname, which local system applications evaluate prior to querying DNS.; The workstation's active network adapter is configured with an incorrect primary DNS server IP address that differs from the server specified in the command line query.

Cevap

The resolution failure during standard application usage is caused by either an outdated local hosts file entry overriding DNS resolution or an incorrect primary DNS server address assigned to the network interface card.
The nslookup utility bypasses the operating system's standard name resolution sequence by directly sending queries over UDP/TCP port 53 to the server specified in the command line argument. Standard applications rely on the OS resolver API, which evaluates the local hosts file first and then sends requests to the DNS servers configured on the network adapter interface. An erroneous hosts entry or a misconfigured adapter DNS IP address will cause application lookups to fail despite direct DNS server reachability.

Adım Adım Çözüm

1
Analyze the behavior of the diagnostic command versus OS application behavior.
Recognize that nslookup queries a specific DNS server directly (10.20.4.15) and bypasses the operating system's local resolver caching and static hosts configuration.
This isolation proves that the remote DNS server holds valid records, while local client-side configuration or resolution order is causing standard applications to fail.
2
Evaluate local system resolution mechanics.
The OS resolver checks the local hosts file prior to contacting DNS servers, and relies on network adapter TCP/IP settings for automatic server selection.
An invalid entry in the hosts file or a mismatched primary DNS IP on the network interface will break general application resolution while leaving explicit command-line queries unaffected.

Anahtar Kavram

Operating System Name Resolution Order vs Command-Line Query Tools
Tahmini Süre:1m 30s
Soru 186Soru

A network administrator suspects that an unauthorized device acting as a rogue DHCP server is responding to client requests on a local subnet and handing out invalid default gateway addresses. The administrator connects a laptop running a packet analyzer to a mirrored port on the switch. Which display filter should the administrator apply in the packet analyzer to isolate traffic originating specifically from DHCP servers?

Cevabı ve açıklamayı göster

Cevap: udp.srcport == 67

Cevap

The display filter udp.srcport == 67 correctly isolates outbound DHCP server traffic, allowing the administrator to identify the IP and MAC address of the rogue server.
DHCP communication utilizes UDP ports 67 and 68. The server listens on port 67 and sends outbound response messages (DHCP Offer and DHCP ACK) using UDP source port 67. Applying a display filter for udp.srcport == 67 isolates packets generated by any DHCP server on the broadcast domain, revealing the source MAC and IP addresses of the unauthorized rogue device.

Adım Adım Çözüm

1
Identify the protocol and port usage for DHCP communication.
DHCP relies on UDP transport, where servers listen on port 67 and clients send requests from port 68.
Understanding transport protocol port assignments is required to write packet filters.
2
Determine the direction of traffic required to identify the rogue server.
Server responses (DHCP Offer and DHCP ACK) originate from the server using source port 67.
Filtering by source port 67 isolates packets sent BY the server rather than requests sent BY clients.
3
Select the exact filter expression matching UDP source port 67.
The expression udp.srcport == 67 captures all server outbound DHCP traffic.
This isolates rogue server responses containing the offending gateway configurations.

Anahtar Kavram

Packet Analyzer Display Filters for DHCP Troubleshooting
Soru 187Soru

Match each AAA protocol or network authentication framework to its corresponding operational characteristic.

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

Öğeler

TACACS+
RADIUS
Kerberos
IEEE 802.1X

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

TACACS+ matches with whole-payload TCP encryption and separated AAA functions; RADIUS matches with UDP password-only encryption and combined auth/authz; Kerberos matches with ticket-granting service mutual authentication; and IEEE 802.1X matches with Layer 2 EAP-based port access control.
Each authentication solution corresponds directly to its architectural features: TACACS+ delivers connection-oriented TCP administration with complete payload encryption and granular AAA separation; RADIUS operates over UDP with password-only encryption; Kerberos enforces ticket-granting mutual authentication; and IEEE 802.1X serves as a Layer 2 port-level access framework utilizing EAP encapsulation.

Adım Adım Çözüm

1
Analyze TACACS+ operational properties
Identify TACACS+ characteristics: TCP port 49, full packet payload encryption, modular separation of AAA functions.
TACACS+ is primarily used for network device administration, allowing granular authorization of individual command-line instructions.
2
Analyze RADIUS operational properties
Identify RADIUS characteristics: UDP transport (ports 1812/1813), password-only obfuscation, combined authentication and authorization response.
RADIUS is designed for wide-scale user network access, such as VPNs and wireless authentications, leaving headers and attribute-value pairs unencrypted.
3
Analyze Kerberos operational properties
Identify Kerberos characteristics: Key Distribution Center (KDC), Ticket Granting Service (TGS), ticket-based single sign-on (SSO).
Kerberos authenticates identity across enterprise directory services (such as Active Directory) through symmetric session keys.
4
Analyze IEEE 802.1X operational properties
Identify IEEE 802.1X characteristics: Layer 2 port control, EAP encapsulation (EAPoL), supplicant-authenticator-server architecture.
802.1X prevents unauthorized endpoints from passing network traffic through a switch port or wireless access point until validated.

Anahtar Kavram

AAA Protocols and Authentication Framework Mechanics
Soru 188Soru

A network technician is systematically troubleshooting a connectivity failure from a client workstation to a remote application server. Place the following command-line utilities in the logical order they should be executed to isolate the issue from local interface settings out to remote route reachability.

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

Cevabı ve açıklamayı göster

Cevap

The correct logical order begins with checking local IP settings using `ipconfig`, verifying local gateway reachability using `ping`, tracing the remote path using `tracert`, and verifying DNS resolution using `nslookup`.
Standard network troubleshooting follows a logical sequence from local host configuration (`ipconfig`), to local subnet reachability (`ping`), to multi-hop path analysis (`tracert`), and finally upper-layer services like DNS resolution (`nslookup`).

Adım Adım Çözüm

1
Check local host IP assignment.
Confirms the host has a valid IP configuration and default gateway.
Local IP misconfigurations render all outbound network diagnostics invalid.
2
Test local gateway ICMP reachability.
Confirms local Layer 2 and Layer 3 communication to the router.
Traffic cannot reach remote networks if the local gateway cannot be reached.
3
Trace path across intermediate network hops.
Identifies packet loss or latency across remote routers.
Helps distinguish between local network issues and upstream routing failures.
4
Verify DNS name resolution.
Confirms the DNS server resolves the FQDN to the correct destination IP address.
Ensures application accessibility issues are not caused by name resolution errors.

Anahtar Kavram

Structured Command-Line Diagnostic Sequence
Soru 189Soru

A network engineer is diagnosing intermittent performance issues and log warnings on an inter-switch trunk link connecting Switch-Alpha (GigabitEthernet0/1) to Switch-Beta (GigabitEthernet0/1). The console on Switch-Alpha displays `%CDP-4-NATIVE_VLAN_MISMATCH: Native VLAN mismatch discovered on GigabitEthernet0/1 (10), with Switch-Beta GigabitEthernet0/1 (20)`. Concurrently, interface statistics for GigabitEthernet0/1 on Switch-Alpha show a steadily increasing count of late collisions and Frame Check Sequence (FCS) errors. Which TWO of the following root causes are directly responsible for the observed log messages and interface error counters?

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

Cevabı ve açıklamayı göster

Cevap: Inconsistent 802.1Q native VLAN configurations on the opposing ends of the trunk link.; A duplex mismatch between the connected GigabitEthernet interfaces on Switch-Alpha and Switch-Beta.

Cevap

The two correct root causes are inconsistent 802.1Q native VLAN configurations across the trunk link and a duplex mismatch between the connected interfaces.
The correct selections identify the two distinct issues present: the explicit Cisco Discovery Protocol log indicates an 802.1Q native VLAN ID mismatch between the switch ports, and the presence of late collisions with FCS errors points directly to a speed/duplex negotiation mismatch.

Adım Adım Çözüm

1
Analyze the CDP warning log message
The message %CDP-4-NATIVE_VLAN_MISMATCH confirms that Switch-Alpha uses native VLAN 10 while Switch-Beta uses native VLAN 20 on their respective trunk ports.
802.1Q trunks must share the same native VLAN ID on both sides so untagged control and data frames are correctly interpreted and isolated.
2
Analyze the interface error metrics (late collisions and FCS errors)
Late collisions occur when an interface operating in half-duplex detects a collision after transmit window timing has elapsed, caused by the opposite end transmitting simultaneously in full-duplex mode.
In a full-duplex to half-duplex mismatch, the full-duplex side ignores carrier sense and transmits at will, resulting in collisions during transmission on the half-duplex side.
3
Evaluate remaining options against observed symptoms
STP bridge priority misconfigurations affect root election and topology blocking but do not cause physical/data-link layer framing or collision errors. Layer 3 routers are only needed for inter-VLAN routing, not intra-VLAN frame forwarding across Layer 2 trunks.
Eliminating invalid causes confirms native VLAN mismatch and duplex mismatch as the two independent issues.

Anahtar Kavram

Troubleshooting Layer 2 trunk misconfigurations (Native VLAN mismatches) and physical-layer interface mismatches (Speed/Duplex mismatch indicators).
Tahmini Süre:2m 0s
Soru 190Soru

A network administrator is troubleshooting an issue where a user's workstation periodically attempts to connect to an old IP address (10.1.5.50) when reaching `db.internal.corp`, despite the DNS server returning the updated IP address (10.1.5.200) for other hosts. The administrator inspects the client using a local command-line diagnostic tool and views the following output snippet:

text
Record Name . . . . . : db.internal.corp
Record Type . . . . . : 1
Time To Live . . . . : 86400
Data Length . . . . . : 4
Section . . . . . . . : Answer
A (Host) Record . . . : 10.1.5.50

Which of the following actions should the administrator take on the client workstation to resolve this issue and ensure it uses the correct IP address? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Execute `ipconfig /flushdns` to purge the local DNS resolver cache.; Inspect the local `hosts` file for static mappings pointing `db.internal.corp` to 10.1.5.50 and remove them.

Cevap

Purging the DNS resolver cache with `ipconfig /flushdns` and removing any outdated static entry in the local `hosts` file will resolve the issue on the client workstation.
The issue is caused by stale resolution data on the local system. Executing the command to flush the DNS cache clears the local resolver storage so the client sends a new query to the authoritative DNS server. Additionally, checking and editing the local `hosts` file removes any static IP-to-hostname mappings that take precedence over external DNS responses and re-populate the cache upon reboot.

Adım Adım Çözüm

1
Analyze the client command output
The `ipconfig /displaydns` snippet reveals a cached A record with a high Time To Live (86400 seconds) mapping `db.internal.corp` to the outdated IP address 10.1.5.50.
When a client system resolves hostnames, it checks the local cache first before contacting DNS servers.
2
Identify the source of stale data and clear the cache
Running `ipconfig /flushdns` purges the local resolver cache so the OS queries the DNS server for fresh resolution.
Local cache entries persist until their TTL expires unless manually flushed.
3
Check persistent local overrides
Examining the local `hosts` file ensures that static mappings overriding DNS responses are identified and removed.
Static `hosts` entries take precedence over DNS server queries during local resolution.

Anahtar Kavram

Local Resolver Cache and Hosts File Precedence in DNS Name Resolution
Soru 191Soru

Match each network diagnostic requirement or operational anomaly to the most appropriate diagnostic hardware tool or packet analyzer syntax.

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

Öğeler

Locating the precise distance to a high-reflectance mechanical splice break along a 12 km single-mode fiber-optic backbone.
Isolating an unmapped RJ45 wall jack inside a dense, fully patched telecommunications closet without disrupting active switch links.
Detecting an unauthorized secondary DHCP server on a local VLAN by analyzing mirrored frame payloads for DHCPOFFER messages.
Measuring real-time voltage and verifying negotiated 802.3at Power over Ethernet (PoE+) draw at an endpoint deployment location prior to connecting a PTZ camera.

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

The correct pairings match: (1) Long-distance single-mode fiber splice fault distance to an Optical Time-Domain Reflectometer (OTDR); (2) Unmapped cable identification in dense patch panels without disconnection to a tone generator and inductive probe; (3) Rogue DHCP server identification in packet captures to Wireshark filtering on BOOTP message type 2 (DHCPOFFER); and (4) Endpoint PoE voltage and IEEE 802.3at load validation to a hardware PoE inline analyzer.
Each diagnostic requirement requires a tool operating at the correct OSI layer and physical media type: OTDRs characterize optical fiber reflection and attenuation; tone generators with inductive probes trace unshielded or shielded copper cabling non-intrusively; Wireshark DHCP display filters capture Layer 7 application bootstrap options; and PoE inline analyzers assess negotiated power delivery under load.

Adım Adım Çözüm

1
Analyze the physical fiber requirement for single-mode optical reflectometry.
Identified that OTDR is required for measuring backscatter and distance to faults over optical fiber links.
Copper TDRs cannot analyze light pulses, making an OTDR mandatory for fiber optic length and reflective event analysis.
2
Identify non-disruptive physical cable tracing methods.
Selected the tone generator and inductive probe tracer.
Inductive amplification reads signals standard wiremap continuity testers cannot detect without breaking electrical contact.
3
Analyze frame payloads for protocol-specific rogue service behaviors.
Applied `bootp.option.dhcp == 2` in Wireshark.
DHCP offer frames utilize BOOTP message option 53 with a value of 2 to announce IP lease availability to requesting clients.
4
Evaluate inline power testing under operational load.
Matched PoE inline analyzer to the high-draw PTZ endpoint requirement.
Multi-meters measure open-circuit voltage but fail to validate active IEEE PoE handshake negotiating 802.3at power classes under load.

Anahtar Kavram

Selecting target hardware diagnostic tools and packet analyzer display filters based on physical medium and protocol layer analysis requirements.
Soru 192Soru

A Linux server configured with the IPv4 address 192.168.120.45/24192.168.120.45/24 is unable to establish connections with servers on external subnets. Local subnet communication functions normally. The network administrator runs `ip route show` on the server and reviews the following routing table output:

text
default via 192.168.121.1 dev eth0
192.168.120.0/24 dev eth0 proto kernel scope link src 192.168.120.45

Which of the following identifies the root cause of the connectivity failure?

Cevabı ve açıklamayı göster

Cevap: The default gateway IP address resides on a different IP subnet than the host's configured IP address.

Cevap

The default gateway IP address (192.168.121.1) is configured on a different IP subnet than the server's interface IP address (192.168.120.45/24).
A default gateway must reside on the same local IP subnet as the host interface so that the host can resolve the gateway's MAC address using ARP. The host address is 192.168.120.45/24192.168.120.45/24, making the local subnet range 192.168.120.1192.168.120.1 to 192.168.120.254192.168.120.254. Because the default gateway is set to 192.168.121.1192.168.121.1, it lies outside the local subnet and cannot be reached.

Adım Adım Çözüm

1
Analyze the host's IP address configuration and subnet boundary.
The server's address is 192.168.120.45192.168.120.45 with a /24/24 prefix (255.255.255.0255.255.255.0), defining a local usable host range of 192.168.120.1192.168.120.1 through 192.168.120.254192.168.120.254.
Understanding the host's subnet boundary is required to verify gateway reachability.
2
Evaluate the default gateway IP address in the routing table output.
The default route points to `192.168.121.1`.
The gateway address 192.168.121.1192.168.121.1 resides in the 192.168.121.0/24192.168.121.0/24 network segment, which is outside the local 192.168.120.0/24192.168.120.0/24 subnet.
3
Determine the impact of the subnet mismatch on Layer 2 / Layer 3 resolution.
The host cannot resolve the MAC address of the default gateway via ARP because the gateway is not on the directly connected local subnet.
A host default gateway must always reside on the same IP subnet as the local network interface.

Anahtar Kavram

Default Gateway Subnet Alignment
Tahmini Süre:1m 30s
Soru 193Soru

A network administrator needs to enable centralized remote monitoring on core network switches. The corporate security baseline mandates that management traffic must enforce both cryptographic user authentication and encryption (privacy) of transmitted payload data across the management network. Which SNMP configuration should the administrator implement to satisfy these security requirements?

Cevabı ve açıklamayı göster

Cevap: SNMPv3 using the authPriv security level

Cevap

SNMPv3 using the authPriv security level
To satisfy requirements for both authentication and encryption of management data, SNMPv3 must be deployed using the authPriv (Authentication with Privacy) security level. This mode authenticates communication using algorithms such as SHA/MD5 and encrypts management payloads using AES or DES.

Adım Adım Çözüm

1
Identify security policy requirements
Requirements are dual-fold: cryptographic authentication and privacy (encryption).
Hardening best practices dictate matching the exact security level supported by management protocols.
2
Evaluate SNMP version capabilities
SNMPv1 and SNMPv2c lack native cryptographic encryption; only SNMPv3 supports configurable security levels.
Legacy SNMP versions send community strings and data in cleartext.
3
Select the appropriate SNMPv3 security level
Select authPriv mode.
noAuthNoPriv offers no authentication/privacy, authNoPriv offers authentication without privacy, while authPriv provides both authentication and data encryption.

Anahtar Kavram

SNMP Protocol Hardening and Security Levels
Tahmini Süre:1m 15s
Soru 194Soru

A network administrator needs to establish a remote management connection to a core router located at an unstaffed branch office. The solution must grant low-level command-line interface (CLI) access for emergency troubleshooting even if the router's primary operating system network interfaces or main WAN links experience a complete failure. Which of the following solutions best satisfies these requirements?

Cevabı ve açıklamayı göster

Cevap: An out-of-band serial console server connected to the router's console port with a dedicated cellular modem link

Cevap

An out-of-band serial console server connected to the router's console port with a dedicated cellular modem link
Out-of-band (OOB) management provides an alternate, isolated communication path to network hardware. By connecting a serial console server directly to the router's physical console port and routing traffic over an independent channel such as a cellular modem, administrators retain full CLI access to troubleshoot device failures even when primary IP interfaces or WAN circuits are down.

Adım Adım Çözüm

1
Analyze the operational constraints and availability requirements
Management access must function even when primary WAN links fail and main OS interfaces are down.
In-band management paths depend on active primary network interfaces and operational IP routing, which fail during link or interface outages.
2
Differentiate between in-band and out-of-band (OOB) management architectures
Out-of-band management provides a separate physical or logical communication channel outside the primary data network path.
Connecting directly to a physical console port via a terminal/console server paired with an alternate WAN connection (like cellular) guarantees administrative access during primary outages.

Anahtar Kavram

Out-of-Band (OOB) Remote Management
Soru 195Soru

During an incident response investigation, a network security analyst discovers that internal users attempting to connect to a partner organization's remote server were redirected to an untrusted external host. Analysis reveals that client workstations issued standard domain name lookup requests, but the enterprise's recursive resolver returned forged IP address records that had been injected into its local cache. Which of the following attack types best describes this security incident?

Cevabı ve açıklamayı göster

Cevap: DNS cache poisoning

Cevap

DNS cache poisoning is the correct attack type, as it involves injecting invalid IP address resolutions into a caching DNS server to redirect user traffic.
DNS cache poisoning (also known as DNS spoofing) occurs when an attacker introduces false resolution data into a DNS resolver's cache. As a result, subsequent queries for the compromised domain return the attacker's fake IP address, redirecting legitimate users to malicious sites without modifying client configurations.

Adım Adım Çözüm

1
Analyze the incident symptoms presented in the scenario.
Identified that client workstations issued standard domain name requests, but received corrupted IP address mappings cached on the internal resolver.
Understanding the precise vector differentiates Layer 2 address resolution attacks from Layer 7 domain resolution attacks.
2
Compare candidate attack vectors against domain name resolution mechanisms.
Confirmed that malicious injection of false domain-to-IP mappings into a recursive DNS server is defined as DNS cache poisoning (DNS spoofing).
Corrupting nameserver lookup entries diverts user connections at the domain resolution phase.

Anahtar Kavram

DNS Cache Poisoning and Network Attack Vectors
Tahmini Süre:1m 15s
Soru 196Soru

Users on a remote office subnet (10.240.12.0/2410.240.12.0/24) report that they cannot access a cloud database hosted at 172.16.50.100172.16.50.100. Follow the standard CompTIA network troubleshooting methodology to arrange the administrative actions into the correct logical sequence from first step to last step.

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

Cevabı ve açıklamayı göster

Cevap

The correct order follows the standard troubleshooting methodology: first gather information from users and host settings, second test a theory using diagnostic tools like traceroute and inspecting ACL configuration, third implement the corrective ACL rule change, fourth verify full database connectivity from the client workstation, and finally document the findings and actions taken.
The standard CompTIA network troubleshooting sequence requires progressing linearly through: 1) Identify the problem / gather information, 2) Establish and test a theory of probable cause, 3) Plan and implement the solution, 4) Verify full system functionality, and 5) Document findings, actions, and outcomes.

Adım Adım Çözüm

1
Gather symptoms and user reports.
Establishes a baseline understanding of host configuration and specific error behavior without altering the network state.
CompTIA troubleshooting methodology requires identifying the problem first.
2
Perform diagnostics using traceroute and ACL inspection.
Confirms whether traffic reaches the gateway and if an implicit deny ACL statement is dropping the database packets.
Testing the theory isolates the exact point of failure between routing and gateway security filtering.
3
Implement the configuration fix on the gateway/router ACL.
Permits host traffic to traverse the router outbound toward the destination address.
Changes to network configuration should only occur after a theory of probable cause has been confirmed.
4
Verify database connectivity from the client host.
Ensures the application functions correctly and no unintended blocking remains.
Verification confirms that the problem is completely resolved before closing the incident.
5
Record changes and resolution details in technical documentation.
Creates a historical audit trail for future troubleshooting and configuration tracking.
Documentation is the mandatory final step of structured network troubleshooting.

Anahtar Kavram

CompTIA Network Troubleshooting Methodology applied to Gateway ACL issues
Soru 197Soru

An enterprise network architect is assigned the IPv4 block 10.180.64.0/1910.180.64.0/19. Using Variable Length Subnet Masking (VLSM), the architect sequentially allocates subnets starting from the lowest available IP address to satisfy the following host requirements:

- Subnet A (Data Center): 1,2001,200 usable hosts
- Subnet B (Corporate HQ): 500500 usable hosts
- Subnet C (Voice Gateway): 250250 usable hosts
- Subnet D (Branch Office): 120120 usable hosts

Each subnet is provisioned using the smallest viable CIDR block. After allocating these four subnets back-to-back without leaving gaps between them, what is the maximum number of usable host IP addresses that can be supported by the single largest contiguous subnet that can be formed within the remaining unallocated space of the 10.180.64.0/1910.180.64.0/19 prefix?

Cevabı ve açıklamayı göster

Cevap: 4094

Cevap

The maximum number of usable host IP addresses in the single largest contiguous subnet remaining is 4094.
The sequentially allocated subnets occupy IP addresses up to 10.180.75.127. The unallocated space spans 10.180.75.128 to 10.180.95.255. Because IPv4 subnets must align on binary power-of-two boundaries matching their size, the largest valid contiguous subnet that can be formed in this space is 10.180.80.0/20 (size 4,096 IPs). Subtracting 2 for the network and broadcast addresses yields 4,094 usable hosts.

Adım Adım Çözüm

1
Determine the minimum prefix size for each required subnet
Subnet A requires /21 (2048 IPs), Subnet B requires /23 (512 IPs), Subnet C requires /24 (256 IPs), Subnet D requires /25 (128 IPs)
Host requirement formula is 2^n - 2. Subnet A: 2^11 - 2 = 2046 >= 1200; Subnet B: 2^9 - 2 = 510 >= 500; Subnet C: 2^8 - 2 = 254 >= 250; Subnet D: 2^7 - 2 = 126 >= 120.
2
Map sequential subnet allocations across address space
Allocated address range spans 10.180.64.0 through 10.180.75.127
Subnet A: 10.180.64.0/21 (10.180.64.0 - 10.180.71.255). Subnet B: 10.180.72.0/23 (10.180.72.0 - 10.180.73.255). Subnet C: 10.180.74.0/24 (10.180.74.0 - 10.180.74.255). Subnet D: 10.180.75.0/25 (10.180.75.0 - 10.180.75.127).
3
Identify remaining contiguous IP space and evaluate boundary alignments
Unallocated space consists of 10.180.75.128/25, 10.180.76.0/22, and 10.180.80.0/20
Address 10.180.80.0 is divisible by 16 in the 3rd octet, aligning perfectly on a /20 boundary (4096 IPs) covering 10.180.80.0 through 10.180.95.255.
4
Calculate usable hosts for the largest valid contiguous subnet block (/20)
4,094 usable host IP addresses
Formula: 2^(32 - 20) - 2 = 2^12 - 2 = 4,096 - 2 = 4,094.

Anahtar Kavram

Variable Length Subnet Masking (VLSM) and Bit Boundary Alignment
Tahmini Süre:3m 0s
Soru 198Soru

During a security incident response on subnet 192.168.50.0/24192.168.50.0/24, a network engineer observes that multiple workstations have lost connectivity to internal corporate servers and are transmitting sensitive traffic to an unapproved external address. Packet captures reveal a rapid influx of DHCP DISCOVER and REQUEST messages originating from thousands of randomly generated MAC addresses, which completely exhausts the legitimate DHCP server's IP address pool. Immediately after the pool is depleted, clients receive IP leases containing an unauthorized default gateway IP address broadcast by an unidentified device on the local Layer 2 broadcast domain. Which of the following attack types represents the primary vector used to hijack client traffic?

Cevabı ve açıklamayı göster

Cevap: A DHCP starvation attack combined with a rogue DHCP server injection

Cevap

The attack executed is a DHCP starvation attack combined with a rogue DHCP server injection.
The scenario describes a classic two-stage network attack. First, the adversary floods the network with DHCP requests containing randomized MAC addresses, completely exhausting the legitimate DHCP server's available IP scope (DHCP starvation). Second, an unauthorized device answers subsequent client lease requests by assigning IP configurations that include a malicious default gateway (rogue DHCP server injection), effectively establishing a Man-in-the-Middle (MitM) position.

Adım Adım Çözüm

1
Analyze the log signature showing thousands of DISCOVER/REQUEST packets with unique spoofed MAC addresses.
Identify that the legitimate DHCP scope pool on 192.168.50.0/24192.168.50.0/24 was intentionally exhausted (DHCP starvation).
Depleting available IP addresses prevents new or renewing hosts from acquiring legitimate network configurations.
2
Examine the client lease details received immediately after pool exhaustion.
Observe that clients accepted new network configurations, including a malicious default gateway, from an unauthorized device.
Once the legitimate server is starved, a rogue DHCP server can answer client requests faster and assign malicious gateway settings.
3
Correlate the multi-stage behavior to select the corresponding network attack vector.
Confirm that the combination of MAC address flooding and unauthorized lease generation constitutes DHCP starvation and rogue DHCP injection.
This specific multi-step vector relies on Layer 2 broadcasting of UDP port 67/68 traffic to manipulate endpoint routing.

Anahtar Kavram

DHCP Starvation and Rogue DHCP Server Injection
Soru 199Soru

An enterprise server receives an Ethernet frame containing an HTTP request destined for its running web service. Which of the following operations occur during the de-encapsulation process as the incoming data moves up the protocol stack at the receiving host? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: The Network Interface Card validates the Frame Check Sequence in the Ethernet trailer and strips the Data Link header and trailer before passing the payload up to Layer 3.; The operating system inspects the destination port number within the Transport layer header to direct the unencapsulated payload to the specific web service process.

Cevap

The correct statements are that the Network Interface Card validates the Frame Check Sequence in the Ethernet trailer and strips the Data Link header and trailer before passing the payload to Layer 3, and that the operating system inspects the destination port number within the Transport layer header to direct the unencapsulated payload to the specific web service process.
When a host receives network traffic, de-encapsulation occurs from Layer 2 up to Layer 7. The NIC validates frame integrity via the FCS and removes the Layer 2 header and trailer to pass the IP packet up. Subsequently, at Layer 4, the operating system inspects the destination port number to deliver the unencapsulated application data to the appropriate process.

Adım Adım Çözüm

1
Analyze Layer 2 de-encapsulation at the receiving host
The NIC receives the physical signal, validates the Frame Check Sequence (FCS) in the Ethernet trailer for errors, and strips the Ethernet header and trailer to reveal the IP packet.
De-encapsulation unwraps data from the bottom up, removing outer Layer 2 encapsulation boundaries first.
2
Analyze Layer 3 processing
The Network layer examines the IP header, verifies the destination IP address matches the receiving host, and strips the IP header to expose the Transport layer segment.
Layer 3 processing validates addressing and identifies the encapsulated upper-layer protocol.
3
Analyze Layer 4 processing and application handoff
The Transport layer evaluates the TCP header, identifies the destination port number, and hands the clean payload to the designated application layer process.
Port numbers at Layer 4 provide socket-level multiplexing to target specific services.

Anahtar Kavram

De-encapsulation sequence and layer-specific PDU handling at the receiving host
Tahmini Süre:1m 30s
Soru 200Soru

A network administrator is configuring an edge router connected to two upstream service providers. The router learns a default route (0.00.0/00.00.0/0) via eBGP from ISP A with an Administrative Distance of 20 and a metric of 10. Simultaneously, the administrator configures a manual static default route pointing toward ISP B using the default Administrative Distance of 1. If both links are active and healthy, which path will the router install into its Routing Information Base (RIB) for default traffic?

Cevabı ve açıklamayı göster

Cevap: The static route pointing to ISP B, because static routes have a lower Administrative Distance than eBGP routes.

Cevap

The static route pointing to ISP B, because static routes have a lower Administrative Distance than eBGP routes.
When a router receives multiple candidate routes for the exact same network prefix (0.0.0.0/00.0.0.0/0) from different routing protocols or administrative sources, it compares their Administrative Distance (AD). Administrative distance rates trustworthiness, where lower numerical values indicate higher preference. Static routes default to an AD of 1, whereas external BGP (eBGP) routes have a default AD of 20. Because 1 is less than 20, the static route is selected and installed into the active routing table.

Adım Adım Çözüm

1
Compare the source protocols of the identical prefix (0.0.0.0/00.0.0.0/0).
Identified two routing sources: Static Route (AD = 1) and eBGP (AD = 20).
When a router receives multiple routes for the exact same prefix length from different routing sources, it evaluates Administrative Distance (AD) first.
2
Select the route with the lower Administrative Distance.
The static route with AD = 1 is selected over the eBGP route with AD = 20.
Lower Administrative Distance values represent higher trustworthiness in routing decision logic.

Anahtar Kavram

Routing Table Path Selection & Administrative Distance Hierarchy
ÖncekiSayfa 10 / 112Sonraki
Tüm alıştırma soruları — CompTIA Network+ | Examkin