Tüm alıştırma soruları

2237 soru

Soru 2181Soru

A network administrator is provisioning a dedicated IPv4 subnet for a web server cluster that requires static IP address assignments for 2828 physical web servers, 22 firewall gateway interfaces, and 11 floating virtual IP (VIP) address. Assuming the administrator assigns the smallest standard CIDR subnet block that accommodates all required endpoints, how many additional usable host IP addresses will remain available for future expansion?

Cevabı ve açıklamayı göster

Cevap: 3131

Cevap

The smallest CIDR subnet that accommodates the requirement leaves 31 additional usable host IP addresses available.
The scenario requires 3131 static IP assignments (2828 servers + 22 gateways + 11 VIP). A /27/27 subnet block contains 3232 total IP addresses, but only 252=302^5 - 2 = 30 are usable, which falls short by one address. Consequently, the administrator must step up to a /26/26 subnet block (6464 total addresses), which yields 262=622^6 - 2 = 62 usable host IPs. Subtracting the 3131 assigned addresses from the 6262 usable addresses leaves exactly 3131 usable host IP addresses available for future expansion.

Adım Adım Çözüm

1
Calculate the total number of required host IP endpoints.
28 servers+2 gateway interfaces+1 VIP=31 required IP addresses28\text{ servers} + 2\text{ gateway interfaces} + 1\text{ VIP} = 31\text{ required IP addresses}.
Every active host interface, physical gateway, and virtual redundancy IP requires a distinct usable IP address.
2
Determine the smallest subnet prefix that supports at least 31 usable IP addresses.
A /27/27 prefix yields 252=302^5 - 2 = 30 usable addresses (insufficient). A /26/26 prefix yields 262=622^6 - 2 = 62 usable addresses (sufficient).
Usable host capacity formula is 2h22^h - 2, where hh is the number of host bits remaining (32prefix32 - \text{prefix}).
3
Calculate the remaining available usable IP addresses in the /26/26 subnet.
62 usable addresses31 assigned addresses=31 available addresses62\text{ usable addresses} - 31\text{ assigned addresses} = 31\text{ available addresses}.
Subtracting the required IP addresses from the maximum usable host capacity gives the remaining expansion capacity.

Anahtar Kavram

Usable IPv4 Host Calculation & Subnet Sizing
Tahmini Süre:1m 30s
Soru 2182Soru

A network operations team is configuring intermediate Access Control Lists (ACLs) to allow perimeter routers to send standardized event logs to a central SIEM server located in the management VLAN. If the infrastructure relies on standard unencrypted log forwarding, which transport protocol and destination port combination must be allowed through the ACLs?

Cevabı ve açıklamayı göster

Cevap: UDP port 514

Cevap

UDP port 514 is the correct transport protocol and destination port for standard unencrypted Syslog forwarding.
Standard unencrypted Syslog log forwarding uses User Datagram Protocol (UDP) on port 514 to send event notifications to a log collector or SIEM server without incurring TCP connection setup overhead.

Adım Adım Çözüm

1
Identify the standard protocol utilized by routers and switches to send system notifications and logs to a central collector.
The network protocol used for system log aggregation is Syslog.
Syslog is the defined RFC standard for transmitting event messages across IP networks.
2
Determine the transport layer protocol and destination port number for traditional unencrypted Syslog.
Unencrypted Syslog operates over User Datagram Protocol (UDP) on destination port 514.
UDP is selected for standard logging to ensure lightweight transmission without requiring connection handshakes or acknowledgement overhead.

Anahtar Kavram

Syslog transport protocol and port assignments
Tahmini Süre:1m 0s
Soru 2183Soru

A network engineer is configuring a redundant centralized DHCP infrastructure with primary and secondary DHCP servers located on a dedicated management subnet (10.50.100.0/2410.50.100.0/24). Multiple client subnets, including VLAN 12 (172.16.12.0/24172.16.12.0/24) and VLAN 24 (172.16.24.0/24172.16.24.0/24), must be able to receive lease offers from both servers. Which of the following configuration steps must be implemented on the Layer 3 interface for each client subnet to ensure redundant DHCP relay service? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Configure an `ip helper-address` statement specifying the unicast IPv4 address of the primary DHCP server.; Configure an additional `ip helper-address` statement specifying the unicast IPv4 address of the secondary DHCP server.

Cevap

The correct steps are to configure an ip helper-address specifying the primary DHCP server's unicast IP address and a second ip helper-address specifying the secondary DHCP server's unicast IP address on each client subnet's Layer 3 boundary interface.
To support redundant DHCP servers across a Layer 3 boundary, the relay agent (router or Layer 3 switch interface) must be configured with an explicit unicast `ip helper-address` for each server. When multiple `ip helper-address` commands are configured on the same interface, the device replicates incoming client DHCP broadcasts into individual unicast packets sent to each specified DHCP server IP address.

Adım Adım Çözüm

1
Identify how Layer 3 relay agents handle DHCP broadcast requests from clients.
The router intercepts Layer 2/3 local broadcasts (UDP port 67) on the client SVI/subinterface.
DHCP Discover and Request packets are broadcasts and cannot cross Layer 3 boundaries without relay assistance.
2
Apply unicast helper address entries for both primary and secondary servers on the client-facing Layer 3 interface.
Multiple `ip helper-address <IP>` commands populate the relay destination table for that interface.
When multiple helper addresses are configured on an interface, the router duplicates the client's broadcast packet and forwards unicast copies to each configured server address.
3
Verify transport layer protocol requirements for DHCP relay forwarding.
DHCP traffic utilizes UDP ports 67 (server listening port) and 68 (client listening port).
TCP is not used during the DORA process or relay agent forwarding.

Anahtar Kavram

DHCP Relay Agent Multi-Server Redundancy
Soru 2184Soru

A network administrator is configuring an edge router for a branch office. The office contains 100 internal workstations using private IP addresses on the 192.168.10.0/24192.168.10.0/24 network that require simultaneous outbound internet connectivity. In addition, an internal web server at 192.168.10.50192.168.10.50 must accept inbound connections from external clients via a dedicated public IP address (203.0.113.10203.0.113.10). Which of the following implementation steps correctly satisfy these network requirements? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Configure Static NAT for the internal web server to create a persistent one-to-one mapping between 192.168.10.50192.168.10.50 and 203.0.113.10203.0.113.10.; Configure Port Address Translation (PAT / NAT Overload) for the internal workstations to allow multiple private IP addresses to share a single public IP address using unique source port numbers.

Cevap

Static NAT must be configured for the internal web server to provide a permanent one-to-one public-to-private mapping, while Port Address Translation (PAT / NAT Overload) must be configured for the internal workstations to multiplex outbound traffic over a shared public IP using unique Layer 4 source ports.
Static NAT provides a static 1:1 mapping between an internal private IP address and an external public IP address, which allows external devices to initiate connections to internal resources such as web servers. PAT (NAT Overload) allows multiple internal devices with private IP addresses to share a single public IP address by assigning a unique Layer 4 source port number to each connection session.

Adım Adım Çözüm

1
Identify the inbound server access requirement
Recognize that external clients must consistently initiate connections to an internal IP address.
Static NAT is required because it maintains a fixed bidirectional mapping between a single internal private IP address and a public IP address.
2
Identify the outbound host connectivity requirement
Recognize that 100 internal host PCs require outbound internet access simultaneously using minimal public IP space.
Port Address Translation (PAT/Overload) allows multiple internal hosts to share a single public IP address by mapping internal IP addresses and source ports to unique external source port numbers.

Anahtar Kavram

Selecting and combining Static NAT (for persistent inbound server access) and PAT/Overload (for many-to-one outbound client access).
Soru 2185Soru

An organization is upgrading its wireless network to support high-throughput applications in a conference room. The network administrator decides to deploy access points supporting the IEEE 802.11ac (Wi-Fi 5) standard. Which operating frequency band is exclusively utilized by the IEEE 802.11ac standard for wireless data transmission?

Cevabı ve açıklamayı göster

Cevap: 5 GHz band

Cevap

The IEEE 802.11ac standard exclusively utilizes the 5 GHz frequency band.
The IEEE 802.11ac (Wi-Fi 5) standard was designed specifically for high-throughput local wireless networks by operating exclusively in the 5 GHz spectrum. This allows for wider channel bonding (up to 80 MHz or 160 MHz) and less signal congestion compared to the crowded 2.4 GHz spectrum.

Adım Adım Çözüm

1
Identify the wireless standard specified in the question
The target standard is IEEE 802.11ac (Wi-Fi 5).
Different Wi-Fi standards are defined by the IEEE to operate on specific radio frequency bands.
2
Determine the operating frequency band for 802.11ac
IEEE 802.11ac is defined strictly to operate within the 5 GHz spectrum.
By focusing solely on 5 GHz, 802.11ac supports mandatory wider channel bonding (such as 80 MHz and optional 160 MHz channels) and higher density modulation.

Anahtar Kavram

IEEE 802.11 Wireless Standards Operating Frequencies
Soru 2186Soru

A network architect is designing a high-density wireless LAN for a enterprise campus using 802.11ac Wave 2 access points (APs). To achieve maximum throughput per client, the architect intends to configure wide 80 MHz channels in the 5 GHz spectrum. However, a post-installation site survey reveals that radar equipment is actively operating in the UNII-2 and UNII-2 Extended frequency ranges (channels 52 through 144). If Dynamic Frequency Selection (DFS) events are frequently triggered across these bands, which of the following operational impacts will most significantly compromise the wireless design?

Cevabı ve açıklamayı göster

Cevap: The APs will be forced to vacate the DFS channels upon detecting radar, reducing the available non-overlapping 80 MHz channels to as few as two in UNII-1 and UNII-3, which dramatically increases co-channel interference.

Cevap

The APs will be forced to vacate the DFS channels upon detecting radar, reducing the available non-overlapping 80 MHz channels to as few as two in UNII-1 and UNII-3, which dramatically increases co-channel interference.
In the 5 GHz band, configuring 80 MHz channel bonding consumes four 20 MHz channels per bonded group. There are only 6 non-overlapping 80 MHz channels available across the entire 5 GHz spectrum. When radar activity triggers Dynamic Frequency Selection (DFS) in the UNII-2 and UNII-2 Extended bands (which contain 4 of those 6 bonded channels), the access points are forced to evacuate those bands. This leaves only two 80 MHz channels available (one in UNII-1 and one in UNII-3) for the entire enterprise deployment, resulting in severe co-channel interference (CCI) across adjacent access points.

Adım Adım Çözüm

1
Analyze the available 5 GHz channel spectrum and 80 MHz channel bonding requirements.
The 5 GHz spectrum contains 24 non-overlapping 20 MHz channels. Bonding four adjacent 20 MHz channels into an 80 MHz channel yields 6 total available 80 MHz channels across UNII-1, UNII-2, UNII-2E, and UNII-3.
Calculating total channel availability determines how density and channel width interact.
2
Evaluate the impact of active radar signals on UNII-2 and UNII-2 Extended channels.
FCC and ETSI regulatory rules require APs to employ Dynamic Frequency Selection (DFS). When radar is detected in UNII-2 (channels 52-64) and UNII-2E (channels 100-144), APs must immediately cease transmission and change channels.
DFS compliance forces APs out of the middle 5 GHz bands when radar bursts are detected.
3
Assess the resulting channel capacity and co-channel interference (CCI) in non-DFS channels.
Excluding UNII-2 and UNII-2E leaves only UNII-1 (channels 36, 40, 44, 48 -> one 80 MHz block) and UNII-3 (channels 149, 153, 157, 161 -> one 80 MHz block). Deploying a multi-AP campus on only two 80 MHz channels causes extensive co-channel interference.
Re-using only two 80 MHz channels across multiple enterprise access points causes severe channel overlap and performance degradation.

Anahtar Kavram

5 GHz Channel Bonding and DFS Radar Constraints
Soru 2187Soru

Match each network documentation artifact to its primary operational use case during infrastructure planning and maintenance.

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

Öğeler

Logical Network Diagram
Physical Network Diagram
Rack Elevation Diagram
Network Baseline Documentation

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Logical Network Diagram matches IP subnet and VLAN relationships; Physical Network Diagram matches cable runs and port assignments; Rack Elevation Diagram matches rack space and power planning; Network Baseline Documentation matches historical operational metric collection.
Each documentation type addresses a distinct operational requirement: logical diagrams map abstract networking structures like subnets and VLANs; physical diagrams depict actual cabling and hardware interfaces; rack elevations track enclosure slotting and power; and baselines set reference performance metrics.

Adım Adım Çözüm

1
Analyze the operational role of logical documentation versus physical documentation.
Identify that logical diagrams depict software and protocol boundaries (IP/VLANs/routing), whereas physical diagrams depict tangible connections (cables/ports).
This separates logical infrastructure layout from physical cabling.
2
Evaluate rack elevation and baseline documentation purposes.
Confirm rack elevations map enclosure U-space and power placement, while baselines capture standard performance metrics over time.
Rack diagrams serve physical spatial organization, and baselines serve performance comparison.
3
Match each documentation artifact to its exact functional description.
Form correct associations for all four document types.
Matches align completely with standardized Network+ documentation definitions.

Anahtar Kavram

Distinguishing between network diagram types and operational documentation artifacts.
Soru 2188Soru

An enterprise router receives dynamic routing updates from multiple protocols for the exact same destination network prefix. Place the processing steps in the correct order that the router follows to evaluate these updates and install the optimal path into the Forwarding Information Base (FIB).

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

Cevabı ve açıklamayı göster

Cevap

The correct sequence begins with receiving the routing updates, followed by evaluating Administrative Distance across different protocols, comparing metrics within the winning protocol, and finally installing the selected route into the Forwarding Information Base.
When a router learns multiple routes to the exact same prefix, it first receives all update advertisements. It then uses Administrative Distance (AD) to evaluate protocol trustworthiness. If the preferred protocol advertises multiple candidate paths, the router uses the protocol metric to break the tie. Finally, the chosen route is moved into the Forwarding Information Base (FIB) for rapid data plane forwarding.

Adım Adım Çözüm

1
Ingest incoming routing protocol updates.
The router places candidates for the destination prefix into the control plane buffer.
Updates must be received before path selection decision logic can run.
2
Filter incoming routes based on Administrative Distance (AD).
The protocol with the lowest AD value (e.g., OSPF at 110 vs RIP at 120) is chosen.
Metrics are incompatible across different protocols, so AD is used first to select the most reliable routing source.
3
Compare metrics among candidate paths from the winning protocol.
The path with the lowest metric (lowest cost) within that specific protocol is chosen.
When multiple paths are advertised by the same protocol, metric comparison resolves path preference.
4
Commit the best path to the Forwarding Information Base (FIB).
The FIB is updated with the next-hop IP and outgoing interface.
The FIB handles hardware-accelerated packet forwarding based on the control plane's selection.

Anahtar Kavram

Route Selection Hierarchy (Administrative Distance vs Metric and FIB Programming)
Soru 2189Soru

A network administrator is allocated the IPv4 address block 10.75.12.0/2310.75.12.0/23 to provision subnets for remote branch kiosks. Each kiosk requires a subnetwork capable of supporting at least 2828 usable host IP addresses. What is the maximum number of equal-sized subnets meeting this host requirement that can be created from the allocated address block?

Cevabı ve açıklamayı göster

Cevap: 16

Cevap

The maximum number of equal-sized subnets that can be created is 16.
To support at least 2828 usable host addresses, each subnet must have 5 host bits (252=302^5 - 2 = 30 usable addresses). An allocation of 5 host bits yields a /27/27 mask (325=2732 - 5 = 27). Dividing the parent /23/23 block into /27/27 subnets borrows 2723=427 - 23 = 4 subnet bits, yielding 24=162^4 = 16 maximum usable subnets.

Adım Adım Çözüm

1
Calculate the minimum number of host bits required per subnet
5 host bits are needed because 252=302^5 - 2 = 30 usable hosts, which satisfies the requirement of at least 2828 usable host IP addresses (242=142^4 - 2 = 14 is insufficient).
Subnet sizing requires accounting for 2 reserved addresses (network ID and broadcast address).
2
Determine the required CIDR subnet prefix length
The subnet prefix length is /27/27 (325=2732 - 5 = 27).
Subtracting the 5 host bits from the 32-bit IPv4 address space leaves 27 bits for the network identifier.
3
Calculate the total number of /27/27 subnets that fit into the assigned /23/23 address block
16 subnets (22723=24=162^{27 - 23} = 2^4 = 16).
Dividing a /23/23 address block into /27/27 subnets requires borrowing 4 bits from the host portion for subnetting.

Anahtar Kavram

IPv4 Subnet Sizing and Subnet Count Calculation
Soru 2190Soru

A network technician is preparing to install a newly purchased 2U rackmount switch into a server room enclosure. Before physically mounting the device, the technician needs to check the layout of the cabinet to ensure there is enough contiguous vertical space and proper power distribution available at that specific position. Which of the following network documentation artifacts is most appropriate for the technician to consult?

Cevabı ve açıklamayı göster

Cevap: Rack diagram

Cevap

The correct document to consult is a rack diagram.
A rack diagram (or rack elevation diagram) shows a visual, scaled representation of server racks and the equipment mounted within them. It details exact vertical positions measured in Rack Units (U), helping technicians plan power, cooling, and space availability before mounting hardware.

Adım Adım Çözüm

1
Identify the primary requirement in the scenario.
The technician needs to view the vertical physical layout and slot availability inside an equipment enclosure.
Installing hardware requires verifying physical space (rack units) and slot arrangement.
2
Match the requirement to the appropriate network document.
A rack diagram provides a scale elevation view of equipment mounted inside standard 19-inch or 23-inch racks.
Rack elevation diagrams specifically track vertical Unit height allocations (such as 1U, 2U) and device locations.

Anahtar Kavram

Rack Diagrams and Physical Elevation Documentation
Soru 2191Soru

Match each advanced wireless deployment technology or regulatory mechanism on the left with its corresponding operational requirement or physical layer behavior on the right.

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

Öğeler

Dynamic Frequency Selection (DFS)
BSS Coloring
Orthogonal Frequency-Division Multiple Access (OFDMA)
Maximum Ratio Combining (MRC)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Dynamic Frequency Selection (DFS) pairs with radar detection and channel switching on U-NII-2 bands. BSS Coloring pairs with appending 6-bit PHY header tags to mitigate co-channel interference contention in 802.11ax. OFDMA pairs with dividing channels into Resource Units (RUs) for parallel multi-user traffic. Maximum Ratio Combining (MRC) pairs with combining phase/gain signals across receiver antennas at the AP to boost uplink SNR.
Dynamic Frequency Selection (DFS) enforces active radar signal monitoring on U-NII-2 5 GHz channels. BSS Coloring uses a 6-bit identifier in 802.11ax PHY headers to differentiate overlapping service sets and optimize clear channel assessment. OFDMA partitions channels into Resource Units (RUs) for simultaneous multi-user transmissions. Maximum Ratio Combining (MRC) is a receive-side diversity mechanism that combines signal inputs across multiple antennas to boost uplink SNR.

Adım Adım Çözüm

1
Analyze regulatory frequency requirements for DFS.
DFS is strictly required in the 5 GHz U-NII-2/2E bands to prevent interference with radar systems, forcing APs to listen and change channels dynamically.
Regulatory compliance mandates non-interference with priority radar signals.
2
Evaluate high-density spatial reuse features in 802.11ax for BSS Coloring.
BSS Coloring uses a 6-bit field in the PHY header to mark distinct BSS cells, allowing stations to adjust clear channel assessment (CCA) thresholds.
This reduces medium contention overhead caused by overlapping basic service sets (OBSS).
3
Examine multi-user channel access methods in modern Wi-Fi standards for OFDMA.
OFDMA divides a 20/40/80 MHz channel into smaller sub-carriers called Resource Units (RUs), enabling simultaneous multi-client scheduling.
Unlike OFDM which serves one user per time slot, OFDMA allows multi-user concurrent subchannel access.
4
Identify receiver diversity techniques for Maximum Ratio Combining (MRC).
MRC processes signals from multiple receive antennas at the AP level, combining them constructively based on phase alignment.
It improves receiver sensitivity and compensates for low transmit power from mobile client devices.

Anahtar Kavram

Advanced Enterprise Wireless Deployment Technologies & Spectrum Regulations
Tahmini Süre:2m 0s
Soru 2192Soru

An administrator interconnects three switches—Switch- Alpha, Switch-Beta, and Switch-Gamma—in a redundant triangular loop topology using standard IEEE 802.1D Spanning Tree Protocol (STP). All switches use their factory default configuration settings except for bridge priorities, which are assigned as follows:

• Switch-Alpha: Bridge Priority = 32768, MAC Address = 0011.2233.4455
• Switch-Beta: Bridge Priority = 28672, MAC Address = 0055.4433.2211
• Switch-Gamma: Bridge Priority = 40960, MAC Address = 0000.1111.2222

Which switch will be elected as the STP Root Bridge for the topology?

Cevabı ve açıklamayı göster

Cevap: Switch-Beta, because it has the lowest numerical Bridge Priority value.

Cevap

Switch-Beta will be elected as the Root Bridge because it possesses the lowest overall Bridge ID, determined primarily by having the lowest numerical Bridge Priority value (28672).
In 802.1D Spanning Tree Protocol, the Root Bridge election compares the Bridge ID (BID) of each switch in the network. The BID is composed of Bridge Priority and MAC Address. The switch with the lowest overall numerical BID becomes the Root Bridge. Priority is evaluated first; because Switch-Beta is configured with a priority of 28672—which is numerically lower than 32768 (Switch-Alpha) and 40960 (Switch-Gamma)—it wins the election immediately.

Adım Adım Çözüm

1
Examine the components of the Spanning Tree Protocol Bridge ID (BID).
The BID consists of a 2-byte Bridge Priority concatenated with a 6-byte MAC Address (Bridge ID = Priority + MAC Address).
STP uses the total BID value to elect the Root Bridge, where the lowest numerical value wins.
2
Compare the configured Bridge Priority values across all switches.
Switch-Alpha has a priority of 32768, Switch-Beta has a priority of 28672, and Switch-Gamma has a priority of 40960.
Bridge Priority is evaluated first before checking MAC addresses.
3
Identify the switch with the lowest numerical Bridge Priority.
Switch-Beta has the lowest priority (28672 < 32768 < 40960) and is elected Root Bridge without needing a MAC address tiebreaker.
Lower numerical values represent higher priority in standard 802.1D STP root bridge elections.

Anahtar Kavram

STP Root Bridge Election Mechanics
Soru 2193Soru

A senior network engineer is designing a high-density enterprise WLAN deployment supporting diverse legacy and high-performance real-time applications across multiple frequency bands. Match each IEEE wireless standard or deployment mechanism on the left with its precise operational constraint or physical layer (PHY) capability on the right.

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

Öğeler

802.11ax (Wi-Fi 6) Orthogonal Frequency-Division Multiple Access (OFDMA)
802.11ac (Wi-Fi 5) Wave 2 Multi-User MIMO (MU-MIMO)
802.11n (Wi-Fi 4) Greenfield Mode
802.11a Legacy 5 GHz PHY Specification

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

802.11ax OFDMA matches channel division into Resource Units across 2.4 GHz and 5 GHz bands. 802.11ac Wave 2 MU-MIMO matches downlink-only multi-user streams operating exclusively in 5 GHz. 802.11n Greenfield mode matches eliminating legacy preambles to optimize throughput without backward compatibility. 802.11a legacy PHY matches 5 GHz OFDM operation across 20 MHz channels achieving up to 54 Mbps.
The correct matches accurately differentiate between frequency spectrum constraints, multi-user transmission mechanisms (OFDMA vs MU-MIMO), frame preamble modes (Greenfield), and legacy OFDM channel characteristics across IEEE 802.11 wireless deployment standards.

Adım Adım Çözüm

1
Analyze 802.11ax (Wi-Fi 6) key physical layer mechanisms
Identify that 802.11ax introduces OFDMA, which allocates subcarriers into Resource Units (RUs) for parallel bi-directional transmission across 2.4 GHz and 5 GHz spectrums.
OFDMA is the hallmark channelization technique of 802.11ax for multi-user efficiency.
2
Evaluate 802.11ac Wave 2 capabilities and constraints
Confirm 802.11ac operates exclusively in 5 GHz and introduces downlink-only MU-MIMO capability.
802.11ac does not support 2.4 GHz operation nor uplink MU-MIMO (which was added later in 802.11ax).
3
Examine 802.11n Greenfield preamble framing
Recognize that Greenfield mode strips out legacy 802.11a/b/g headers to eliminate frame overhead at the cost of legacy station compatibility.
High-Throughput (HT) Greenfield mode assumes zero legacy devices exist on the wireless cell.
4
Verify 802.11a legacy operational specifications
Match 802.11a to its native 5 GHz OFDM specification using 20 MHz wide channels up to 54 Mbps.
802.11a was the first 5 GHz OFDM implementation operating with 20 MHz channel widths.

Anahtar Kavram

Wireless Standards and Physical Layer (PHY) Capabilities
Soru 2194Soru

A network engineer is setting up an edge router for a small office with only a single public IPv4 address assigned to its WAN interface. The office contains 40 internal hosts on the 192.168.1.0/24192.168.1.0/24 subnet that require outbound internet connectivity. Simultaneously, an internal web server at 192.168.1.50192.168.1.50 must be reachable from external clients on HTTPS port 443443. Which of the following address translation strategies correctly satisfies both requirements using the single WAN IPv4 address?

Cevabı ve açıklamayı göster

Cevap: Implement Port Address Translation (PAT) for the internal host subnet while configuring a static port redirection (Port Forwarding) entry for port 443443 to target internal address 192.168.1.50192.168.1.50.

Cevap

Implement Port Address Translation (PAT) for the internal subnet alongside static port forwarding for port 443 to host 192.168.1.50.
Port Address Translation (PAT), also known as NAT Overload, enables multiple private IP hosts to share a single public IPv4 address by mapping outbound connections to distinct Layer 4 source ports. To allow external traffic to initiate a connection inward to a specific internal server using that same shared public IP, static port forwarding must be configured for the specific service port (HTTPS port 443).

Adım Adım Çözüm

1
Analyze public IP address constraints
Only one public IPv4 address is available on the WAN interface.
Because multiple internal hosts need internet access using a single public IP address, Port Address Translation (PAT / NAT Overload) must be used to multiplex outbound sessions using unique source port numbers.
2
Determine inbound access requirements for the web server
Inbound HTTPS traffic target port is 443 assigned to internal IP 192.168.1.50.
To allow external clients to initiate connections to an internal server sharing a single public IP, a static PAT entry (port forwarding) must be configured to direct incoming traffic arriving on destination port 443 to the internal IP.
3
Combine translation rules into a unified implementation
Dynamic PAT handles outbound host traffic while Static PAT handles inbound HTTPS traffic.
This combination successfully meets both requirements without requiring additional public IPv4 addresses.

Anahtar Kavram

Port Address Translation (PAT) and Static Port Forwarding
Tahmini Süre:1m 15s
Soru 2195Soru

A senior network administrator is updating the corporate network documentation after implementing a new voice over IP (VoIP) architecture across three branch offices. The deployment involved adding dedicated voice VLANs, establishing 802.1Q trunk links between switches, and running single-mode fiber patch cables between intermediate distribution frames (IDFs) and main patch panels. Which TWO of the following documentation artifacts should the administrator update to document the IP subnet boundaries, VLAN IDs, and specific port-to-panel cable assignments?

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

Cevabı ve açıklamayı göster

Cevap: Logical network topology diagram; Wiring schematic and cable schedule

Cevap

The logical network topology diagram and the wiring schematic and cable schedule are the correct documentation types.
The logical network topology diagram captures abstract network layout details including subnets, VLAN IDs, and logical interfaces. The wiring schematic and cable schedule provides precise physical connection data, detailing how fiber links connect between specific patch panel ports and intermediate distribution frames.

Adım Adım Çözüm

1
Identify the logical requirements of the documentation update.
The requirement includes recording IP subnets, VLAN IDs, and trunk routing paths.
Logical diagrams represent software-defined boundaries, Layer 2/3 interfaces, subnets, and VLAN segmentation.
2
Identify the physical cabling requirements of the documentation update.
The requirement includes recording fiber patch runs, port connections, and IDF patch panel assignments.
Wiring schematics and cable schedules explicitly define physical pinouts, port designations, cable runs, and panel terminations.
3
Evaluate and eliminate incorrect documentation options.
Rack elevations only detail vertical slot spacing; baselines track usage performance; SOPs define procedural workflows.
None of the eliminated documents contain port-level wiring schedules or Layer 2/3 logical address maps.

Anahtar Kavram

Differentiation between logical network topology diagrams and physical cabling schematics in enterprise network documentation.
Soru 2196Soru

A network systems administrator is troubleshooting name resolution issues after enabling DNSSEC on an enterprise authoritative DNS server. Internal client stub resolvers successfully resolve standard small AA record queries, but fail with SERVFAILSERVFAIL errors when querying domain names that return large responses containing multiple RRSIGRRSIG and DNSKEYDNSKEY records. A diagnostic check with `dig +dnssec +ignore` succeeds over UDP, but standard `dig +dnssec` fails when payload size exceeds the 512-byte limit and truncation occurs.

An audit of the network firewall logs reveals the following blocked log entries:

`DROP OUTBOUND SRC=192.168.10.25 DST=198.51.100.53 PROTO=TCP SPT=49152 DPT=53`

Which of the following actions should the administrator take to permanently resolve this name resolution failure?

Cevabı ve açıklamayı göster

Cevap: Configure the network firewall to permit outbound traffic from the internal DNS server to external authoritative servers on TCP port 53.

Cevap

The administrator must update firewall rules to allow outbound TCP port 53 traffic from the internal DNS server to remote DNS servers.
DNS uses UDP port 53 for normal queries under 512 bytes. However, when responses (such as those carrying DNSSEC records like RRSIGRRSIG and DNSKEYDNSKEY) exceed the maximum buffer size, the DNS server sets the TC (Truncation) bit. The client or recursive resolver must immediately retry the query over TCP port 53. Because the firewall was dropping outbound TCP port 53 packets, truncated DNSSEC queries timed out and caused SERVFAILSERVFAIL errors.

Adım Adım Çözüm

1
Analyze the diagnostic command behavior and firewall log output.
Standard UDP DNS traffic succeeds, but truncated DNSSEC responses requiring fallback fail because TCP port 53 outbound packets are dropped by the firewall.
DNS relies primarily on UDP port 53 for standard queries under 512 bytes (or up to EDNS0 buffer limits), but automatically requires TCP port 53 when the response payload has the Truncation (TC) bit set.
2
Evaluate protocol requirements for DNSSEC payload delivery.
DNSSEC responses containing cryptographic signatures (RRSIGRRSIG) frequently exceed 512 bytes and require TCP fallback to transmit complete data streams reliably.
Without TCP port 53 permitted through stateful firewalls, any truncated DNS query fails, producing SERVFAILSERVFAIL on validating resolvers.
3
Select the appropriate resolution step.
Allowing TCP port 53 outbound on the network firewall enables resolvers to establish TCP sessions for truncated DNSSEC queries.
This maintains complete compliance with RFC 5966 and restores normal DNSSEC resolution functionality.

Anahtar Kavram

DNS Transport Layer Mechanics (UDP vs TCP Port 53)
Tahmini Süre:2m 0s
Soru 2197Soru

During a campus network audit, a network engineer needs to verify virtual interface IP addresses, VLAN segmentation IDs, dynamic routing protocol relationships, and subnet boundaries across multiple core and distribution switches. Which of the following documentation artifacts provides this information without detailing physical rack unit positions or patch panel cable routing?

Cevabı ve açıklamayı göster

Cevap: Logical network diagram

Cevap

A logical network diagram is the appropriate artifact because it illustrates logical network abstraction elements such as VLAN IDs, IP subnet boundaries, and routing protocols.
Logical network diagrams document the flow of data across an enterprise infrastructure. They explicitly define logical boundaries including VLAN numbers, IP addresses, network subnets, virtual interfaces, and routing protocol domains without detailing physical spatial positioning.

Adım Adım Çözüm

1
Analyze the requirements from the troubleshooting/auditing scenario.
The engineer requires documentation showing VLAN IDs, IP subnets, virtual interfaces, and dynamic routing relationships.
Identifying the target data types separates logical network attributes from physical infrastructure details.
2
Differentiate between logical and physical documentation artifacts.
Logical diagrams represent Layer 2 and Layer 3 data flows and addressing structures, whereas rack elevations, wiring schematics, and cable schedules represent Layer 1 layout and physical hardware locations.
Logical diagrams specifically focus on addressing and protocol boundaries.
3
Select the documentation type that fulfills the criteria.
The logical network diagram accurately provides IP addresses, VLANs, and routing protocol information without requiring physical location details.
Logical diagrams capture system relationships rather than spatial orientation.

Anahtar Kavram

Logical Network Diagrams
Soru 2198Soru

A network administrator is setting up a network management system (NMS) to poll status and performance metrics from managed routers and switches across an internal firewall. Which port and transport layer protocol combination must be permitted on the firewall to allow the NMS to issue these polling requests to the managed devices?

Cevabı ve açıklamayı göster

Cevap: UDP port 161

Cevap

UDP port 161 must be allowed through the firewall to enable SNMP polling requests from the NMS to managed devices.
Simple Network Management Protocol (SNMP) polling requests initiated by a Network Management System (NMS) target managed agents listening on UDP port 161. Opening UDP port 161 outbound from the NMS to managed devices allows polling traffic to traverse the firewall successfully.

Adım Adım Çözüm

1
Identify the protocol required for network device monitoring and polling.
Simple Network Management Protocol (SNMP) is used by an NMS to poll managed devices for status metrics.
SNMP is the standard protocol for centralized network hardware monitoring and metrics collection.
2
Determine the transport protocol and port number for SNMP polling.
SNMP polling requests are sent to managed devices listening on UDP port 161.
UDP is chosen for lower overhead, and well-known port 161 handles request/response agent communications.
3
Differentiate polling operations from asynchronous event notifications.
UDP port 161 receives polling requests, whereas UDP port 162 receives unsolicited SNMP trap/notification events.
Distinguishing between polling (port 161) and traps (port 162) ensures correct directional firewall rule configuration.

Anahtar Kavram

SNMP Port and Transport Protocol Differentiation
Tahmini Süre:1m 0s
Soru 2199Soru

A network engineer is provisioning a high-availability database cluster across a single network segment. The segment is assigned the IPv4 address block 10.250.32.0/2010.250.32.0/20. How many total usable host IPv4 addresses are available for assignable endpoints in this subnet?

Cevabı ve açıklamayı göster

Cevap: 4094

Cevap

4094 usable host IPv4 addresses
For a /20 prefix length, there are 12 host bits available (32 - 20 = 12). The total number of IP addresses is 2^12 = 4096. Subtracting 2 for the reserved network ID and broadcast address gives 4094 usable host IP addresses.

Adım Adım Çözüm

1
Calculate the number of host bits in the CIDR prefix /20
12 host bits (32 - 20 = 12)
An IPv4 address consists of 32 total bits; subtracting the prefix length yields the bits allocated for host addressing.
2
Calculate the total size of the address block
4096 total addresses (2^12 = 4096)
The number of total addresses in a subnet is calculated using 2 raised to the power of the host bits.
3
Subtract the non-assignable network and broadcast addresses
4094 usable host addresses (4096 - 2 = 4094)
The first address (network ID) and the last address (directed broadcast) are reserved and cannot be assigned to host interfaces.

Anahtar Kavram

Calculating usable IPv4 host addresses from a CIDR prefix length
Soru 2200Soru

A network engineering team is auditing emergency access procedures for remote branch office infrastructure. The goal is to maintain administrative control and restore unresponsive devices even during a complete failure of the primary ISP circuit. Which TWO of the following components or methods provide an effective out-of-band (OOB) management solution? (Select TWO)

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

Cevabı ve açıklamayı göster

Cevap: A cellular-backed serial console server connected to device console management ports; A network-connected switched Power Distribution Unit (PDU) to remotely hard power-cycle locked equipment

Cevap

Deploying a cellular-backed serial console server connected to device console ports and using a network-connected switched Power Distribution Unit (PDU) for remote power-cycling.
Out-of-band (OOB) management requires an alternate, physically isolated access path (such as a serial terminal server utilizing a cellular connection) to bypass failed primary network links. Additionally, a switched PDU provides out-of-band power control to perform hard reboots on frozen devices without physical technician intervention.

Adım Adım Çözüm

1
Analyze out-of-band (OOB) management requirements
OOB management requires a dedicated, redundant communication channel that remains operational when primary network interfaces or WAN circuits fail.
Connecting a terminal server to console ports over a cellular modem guarantees command-line access during primary link outages.
2
Identify remote hardware power recovery mechanisms
A switched PDU allows remote outlet power-cycling when an operating system or management interface becomes completely unresponsive.
Hard reboots require physical power control separate from operating system network stacks.
3
Evaluate and reject in-band and insecure management alternatives
Telnet and SNMPv2c are in-band management methods that depend on working primary network paths and lack proper security/encryption.
In-band tools become unreachable during primary ISP failure and expose network devices to cleartext credential interception.

Anahtar Kavram

Out-of-Band (OOB) Remote Access and Power Management Infrastructure
Tahmini Süre:1m 30s
ÖncekiSayfa 110 / 112Sonraki
Tüm alıştırma soruları — CompTIA Network+ | Examkin