Network Implementation

424 soru

Soru 361Soru

A network administrator notices that client workstations can successfully resolve domain names using standard DNS queries. However, full DNS zone transfers (AXFR) between the primary and secondary authoritative DNS servers consistently fail across a newly installed internal firewall. Which of the following transport layer configurations is required on the firewall to allow zone transfers to complete successfully?

Cevabı ve açıklamayı göster

Cevap: Permit traffic on TCP port 53 between the primary and secondary DNS servers.

Cevap

Permitting traffic on TCP port 53 allows the primary and secondary DNS servers to establish a reliable, connection-oriented session needed for transmitting complete DNS zone transfer databases.
DNS relies on UDP port 53 for standard hostname lookups due to low overhead, but uses TCP port 53 for zone transfers (AXFR/IXFR) and responses that exceed standard datagram limits. Allowing TCP port 53 traffic through the firewall enables the secondary DNS server to pull zone data reliably.

Adım Adım Çözüm

1
Analyze the difference between standard DNS lookup traffic and DNS zone replication.
Standard client queries use small UDP datagrams (UDP port 53), while zone transfers (AXFR) send large data structures requiring connection reliability.
UDP packets are limited in size (traditionally 512 bytes without EDNS0) and lack connection state verification for complete database transfers.
2
Identify the protocol and port requirements for DNS zone transfers (AXFR).
Zone transfers strictly require TCP port 53.
TCP ensures ordered delivery, retransmission of lost packets, and supports payloads larger than standard UDP limits.
3
Determine the necessary firewall rule change.
Allow TCP port 53 traffic between the primary and secondary DNS server IP addresses.
Opening TCP port 53 permits the secondary server to initiate and receive full zone transfers.

Anahtar Kavram

DNS Transport Protocols (UDP 53 vs TCP 53)
Tahmini Süre:1m 15s
Soru 362Soru

A network administrator is auditing a wireless network installation across a single-floor office facility operating on the 2.4 GHz2.4\text{ GHz} spectrum. The audit reveals that three adjacent access points (APs) along a main hallway are configured to use 20 MHz20\text{ MHz} channel widths on channels 11, 33, and 55, respectively. Users connected in this hallway experience frequent frame collisions, high latency, and degraded throughput due to spectral overlap. Which of the following channel assignment adjustments should the administrator make to resolve this interference?

Cevabı ve açıklamayı göster

Cevap: Assign the three access points to channels 11, 66, and 1111, respectively.

Cevap

Reconfigure the access points to use channels 1, 6, and 11, respectively, which are the standard non-overlapping channels in the 2.4 GHz band.
In 2.4 GHz Wi-Fi deployments, standard 20 MHz channels require a minimum of 5 channel increments between center frequencies to prevent spectral overlap. Selecting channels 1, 6, and 11 provides complete frequency separation and eliminates adjacent-channel interference.

Adım Adım Çözüm

1
Analyze the spectral properties of 2.4 GHz Wi-Fi channels.
Each 2.4 GHz channel is spaced 5 MHz apart, but a standard 802.11 20 MHz channel requires a spectral footprint of 20 to 22 MHz.
Adjacent channel assignments such as channels 1, 3, and 5 overlap heavily in frequency space, causing severe adjacent-channel interference (ACI).
2
Identify non-overlapping channel combinations for the 2.4 GHz band.
Channels 1, 6, and 11 have center frequencies of 2412 MHz, 2437 MHz, and 2462 MHz, providing 25 MHz separation between center frequencies.
This 25 MHz spacing ensures zero spectral overlap between adjacent AP coverage cells when using 20 MHz channel widths.

Anahtar Kavram

2.4 GHz Non-Overlapping Channel Planning
Soru 363Soru

A workstation user attempts to access a web portal at `portal.corp.contoso.com`. The local recursive DNS resolver receives the request with an empty cache. During the lookup, the resolver discovers that `portal.corp.contoso.com` is configured as a CNAME alias pointing to `hosting-node-01.external-provider.net`. What is the correct sequence of steps the recursive DNS resolver takes to resolve the final IP address for the workstation?

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

Cevabı ve açıklamayı göster

Cevap

The resolution sequence begins by querying the original domain's authoritative DNS server to receive the CNAME alias mapping, extracting the canonical hostname to start a new lookup, querying the canonical domain's authoritative server for its A record, receiving the IPv4 address response, and finally delivering the IP address to the requesting workstation while caching both records.
When resolving a domain configured with a CNAME record, a recursive DNS resolver must follow a multi-stage process. First, it queries the authoritative server for the original domain (`corp.contoso.com`), which returns a CNAME record pointing to an alias target (`hosting-node-01.external-provider.net`). Recognizing that a CNAME provides a canonical hostname rather than an IP address, the resolver starts a new lookup chain for the target hostname. It queries the authoritative server for `external-provider.net` to obtain the A record. Once the target server responds with the IPv4 address, the resolver caches both the intermediate CNAME mapping and the final A record, and finally delivers the IP address back to the workstation stub resolver.

Adım Adım Çözüm

1
Query initial domain authoritative server
Received CNAME record mapping portal.corp.contoso.com to hosting-node-01.external-provider.net
The resolver must query the domain specified in the original request to identify its record type and mapping.
2
Process alias and initiate canonical lookup
New name lookup target established for hosting-node-01.external-provider.net
CNAME records do not contain IP addresses; they require an additional resolution path for the target canonical name.
3
Query canonical domain authoritative server
A record request sent to authoritative DNS server for external-provider.net
Authoritative servers for external-provider.net store the actual host IP mapping for hosting-node-01.
4
Receive IPv4 address response
Received A record containing the host IP address
Provides the actionable network layer address required to establish network connections.
5
Cache records and respond to client
Workstation receives the IP address, and resolver stores CNAME and A records in cache
Fulfills the recursive client request and optimizes future name resolution requests via caching.

Anahtar Kavram

DNS Recursive Resolution and CNAME Alias Chaining
Tahmini Süre:1m 30s
Soru 364Soru

A network administrator is troubleshooting an issue where external mail gateways reject outbound emails sent from `example.com` due to failed Sender Policy Framework (SPF) validation checks. The administrator executes the following `dig` commands to inspect the DNS domain records:

text
$ dig MX example.com +short
10 mail01.example.com.

$ dig A mail01.example.com +short
192.0.2.25

Which of the following DNS resource records must be created in the `example.com` DNS zone to resolve the SPF validation failures?

Cevabı ve açıklamayı göster

Cevap: A TXT record containing a policy string that explicitly designates authorized sending mail servers and IP addresses for the domain

Cevap

The network administrator must create a TXT record that specifies the SPF policy string containing authorized IP addresses and mail servers for the domain.
The option specifying a TXT record containing a policy string is correct because SPF relies on machine-readable text records in DNS to list authorized sending hosts and IP addresses for a domain.

Adım Adım Çözüm

1
Identify the purpose of Sender Policy Framework (SPF).
SPF is an email authentication protocol designed to detect email spoofing by verifying sender IP addresses.
Receiving email systems validate incoming messages against sender rules published in the domain's public DNS.
2
Evaluate which DNS record type stores SPF policy statements.
SPF mechanisms and policies are defined using standard DNS TXT resource records.
TXT records store arbitrary human-readable and machine-readable text strings, including SPF, DKIM, and DMARC authentication records.

Anahtar Kavram

DNS Record Types and Mail Security (TXT for SPF/DKIM/DMARC)
Soru 365Soru

A field engineer is reviewing wireless site survey findings for a newly commissioned office space. The survey report reveals high frame corruption rates caused by adjacent channel interference in the 2.4 GHz2.4\text{ GHz} spectrum. Upon inspecting the wireless LAN controller, the engineer notices that three neighboring access points are currently configured to operate on channels 11, 33, and 55 with a 20 MHz20\text{ MHz} channel width. Which channel reassignment scheme should the engineer implement to eliminate adjacent channel overlap?

Cevabı ve açıklamayı göster

Cevap: Reassign the access points to channels 11, 66, and 1111.

Cevap

Reassign the access points to channels 11, 66, and 1111.
In the 2.4 GHz2.4\text{ GHz} wireless spectrum, each channel operates with a 20 MHz20\text{ MHz} width (with a 22 MHz22\text{ MHz} signal mask) and center frequencies are spaced only 5 MHz5\text{ MHz} apart. Therefore, channels must be separated by at least 5 channel increments to avoid spectral overlap. Channels 1, 6, and 11 are the three standard non-overlapping 20 MHz20\text{ MHz} channels in North America.

Adım Adım Çözüm

1
Identify the operating frequency band and channel width.
The deployment uses the 2.4 GHz2.4\text{ GHz} band with 20 MHz20\text{ MHz} wide channels.
Understanding the band characteristics dictates how channels overlap.
2
Calculate required channel separation to prevent overlap.
Each 20 MHz20\text{ MHz} channel occupies 22 MHz22\text{ MHz} of spectral width (11 MHz11\text{ MHz} above and below the center frequency), requiring at least 55 channel numbers of separation.
Channels closer than 5 channel numbers apart share overlapping frequency bounds.
3
Select the standard non-overlapping channels for the region.
Channels 11, 66, and 1111 provide 25 MHz25\text{ MHz} spacing between center frequencies, fully isolating each cell.
Using channels 1, 6, and 11 avoids adjacent channel interference entirely.

Anahtar Kavram

2.4 GHz Non-Overlapping Channels
Tahmini Süre:1m 0s
Soru 366Soru

Match each DNS resource record type on the left with its corresponding technical function or usage scenario on the right.

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

Öğeler

SRV Record
PTR Record
SOA Record
CNAME Record

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

SRV record matches service location parameters (hostname, port, priority, weight); PTR record matches reverse IP-to-hostname mapping; SOA record matches zone administration metadata and timers; CNAME record matches domain alias-to-canonical name mapping.
Each DNS record type has a dedicated function within network infrastructure: SRV specifies service locators and ports; PTR provides reverse name lookup; SOA provides zone administrative metadata and serial numbers; CNAME aliases hostnames to target canonical domain names.

Adım Adım Çözüm

1
Identify the record type designed to locate specific network services and ports.
Match the SRV record to the description detailing hostname, port, priority, and weight parameters.
SRV records are unique in providing both service port and target hostname along with load-balancing parameters.
2
Identify the record type used for reverse name resolution.
Match the PTR record to the description mapping IP addresses back to canonical hostnames.
PTR records reside in reverse lookup zones (in-addr.arpa or ip6.arpa) to fulfill reverse queries.
3
Identify the record that establishes authority and zone transfer properties for a DNS zone.
Match the SOA record to the description containing primary master server metadata, contact email, and zone timers.
The SOA record mandatory header marks the beginning of authority for every DNS zone file.
4
Identify the record type that creates an alias to an existing domain name.
Match the CNAME record to the description aliasing one domain name to a canonical domain name.
CNAME records redirect DNS queries for an alias directly to another hostname.

Anahtar Kavram

DNS Resource Record Types and Technical Functions
Soru 367Soru

A network administrator is configuring advanced radio resource management settings across an enterprise wireless deployment. Match each wireless deployment feature on the left with its primary operational mechanism or deployment purpose on the right.

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

Öğeler

Band Steering
Dynamic Frequency Selection (DFS)
Fast BSS Transition (802.11r)
Transmit Power Control (TPC)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Band Steering matches with encouraging dual-band client association on 5 GHz; Dynamic Frequency Selection matches with monitoring 5 GHz channels for radar signals; Fast BSS Transition matches with streamlining key management during roaming; Transmit Power Control matches with scaling AP radio output power.
Each feature corresponds to a specific wireless radio resource management capability: Band Steering optimizes frequency selection for client devices; DFS prevents radar interference on 5 GHz frequencies; 802.11r optimizes client handoffs between APs; TPC regulates RF signal strength to tune cell overlapping.

Adım Adım Çözüm

1
Identify the purpose of Band Steering.
Band Steering encourages dual-band clients away from 2.4 GHz and onto the less congested 5 GHz band.
Improves overall network capacity by shifting traffic to higher bandwidth channels.
2
Identify the role of Dynamic Frequency Selection (DFS).
DFS detects radar usage on 5 GHz channels and changes AP channels automatically.
Required by regulatory bodies to prevent Wi-Fi signals from interfering with radar systems.
3
Identify the operation of Fast BSS Transition (802.11r).
802.11r accelerates re-authentication during wireless client roaming.
Prevents dropped calls and packet loss in latency-sensitive applications during AP-to-AP transitions.
4
Identify the function of Transmit Power Control (TPC).
TPC adjusts the transmit wattage of AP antennas dynamically.
Maintains uniform coverage cells without causing excessive signal overlap with neighboring access points.

Anahtar Kavram

Enterprise Wireless Radio Resource Management (RRM) and 802.11 Deployment Features
Soru 368Soru

A network administrator is deploying a web application server that operates exclusively on an IPv6 address (`2001:db8:85a3::8a2e:370:7334`). While workstations can access the application using the raw IPv6 address, attempting to connect using the hostname `app.corp.contoso.com` fails. The administrator inspects the internal authoritative DNS zone file and finds the following resource record entry:

text
app.corp.contoso.com. 3600 IN A 2001:db8:85a3::8a2e:370:7334

Which of the following configuration changes is required to resolve the hostname resolution issue?

Cevabı ve açıklamayı göster

Cevap: Replace the existing A record with an AAAA record mapping the hostname to the IPv6 address.

Cevap

Replace the existing A record with an AAAA record mapping the hostname to the IPv6 address.
Replacing the incorrect A record with an AAAA record allows the DNS server to return a valid 128-bit IPv6 address response to client queries requesting hostname resolution for `app.corp.contoso.com`. Standard A records are designed solely for 32-bit IPv4 addresses.

Adım Adım Çözüm

1
Identify the host address family required for name resolution.
The server uses a 128-bit IPv6 address (`2001:db8:85a3::8a2e:370:7334`).
Different DNS resource record types are designed for specific network protocols and address formats.
2
Analyze the existing zone file configuration.
The zone contains an A record attempting to store an IPv6 address string.
Standard A records only accept 32-bit IPv4 dotted-decimal addresses and fail to parse or serve IPv6 addresses.
3
Select the correct DNS record type for IPv6 resolution.
Configure an AAAA record for `app.corp.contoso.com` pointing to the IPv6 address.
AAAA records are specifically designated in RFC 3596 for mapping hostnames to IPv6 addresses.

Anahtar Kavram

DNS Record Types for Host Address Resolution (A vs AAAA)
Tahmini Süre:1m 0s
Soru 369Soru

A network technician is installing three adjacent wireless access points along a corridor in an office building using the 2.4 GHz band with 20 MHz channel widths. To prevent co-channel interference and signal degradation, which combination of non-overlapping channels should be assigned to these access points?

Cevabı ve açıklamayı göster

Cevap: Channels 1, 6, and 11

Cevap

Channels 1, 6, and 11
In the 2.4 GHz Wi-Fi spectrum, individual channel center frequencies are separated by 5 MHz, whereas standard transmissions require 20 MHz of bandwidth. Channels 1, 6, and 11 are spaced 25 MHz apart, making them the only three standard non-overlapping channels in 11-channel regulatory domains.

Adım Adım Çözüm

1
Identify the frequency spectrum and channel width requirements.
The network operates on the 2.4 GHz band using standard 20 MHz channels.
In the 2.4 GHz spectrum, center frequencies are spaced 5 MHz apart, but each channel requires a 20 MHz spectrum mask.
2
Calculate required channel spacing to avoid overlap.
Channels must be separated by at least 25 MHz (5 channel numbers) to avoid frequency overlap.
Sufficient frequency separation ensures neighboring access points operate without adjacent-channel or co-channel interference.
3
Select the standard non-overlapping channel set.
Channels 1, 6, and 11 provide three distinct non-overlapping paths.
Assigning channels 1, 6, and 11 across adjacent wireless cells maximizes throughput and minimizes co-channel interference.

Anahtar Kavram

2.4 GHz Non-Overlapping Channel Assignment
Tahmini Süre:1m 0s
Soru 370Soru

A client workstation attempts to resolve the domain name `www.example.com`, which is not stored in any local cache. Arrange the steps of the un-cached recursive DNS resolution 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 chronological sequence begins with the client stub resolver querying the local recursive resolver, followed by iterative queries from the recursive resolver to the Root Name Server, the TLD Name Server, and the Authoritative Name Server, ending with the recursive resolver caching the record and sending the IP address back to the client.
The standard DNS resolution flow follows a strict top-down traversal when host cache is empty: Stub Resolver → Recursive Resolver → Root Name Server → TLD Name Server → Authoritative Name Server → Recursive Resolver (cache & reply) → Client.

Adım Adım Çözüm

1
Client initiates lookup
The client stub resolver sends a recursive request for `www.example.com` to the local recursive DNS server.
Client operating systems offload full resolution tasks to designated recursive DNS servers.
2
Query Root Name Server
The recursive resolver sends an iterative query to a root server and receives a referral to the `.com` TLD server.
Root servers direct resolvers to the appropriate Top-Level Domain servers based on the domain suffix.
3
Query TLD Name Server
The recursive resolver sends an iterative query to the `.com` TLD server and receives a referral to `example.com` authoritative name servers.
TLD servers maintain delegation records pointing to domain-level authoritative servers.
4
Query Authoritative Name Server
The recursive resolver queries the authoritative name server for `example.com` and retrieves the requested `A` host record.
Authoritative servers store the master zone data and yield definitive record responses.
5
Respond to client and cache
The recursive resolver stores the host mapping in local cache according to TTL and returns the IP address to the client.
Caching minimizes network latency for subsequent queries while delivering the final answer to the requesting application.

Anahtar Kavram

Recursive DNS Resolution Hierarchy
Soru 371Soru

A network administrator executes the following `dig` commands from a diagnostic workstation to verify DNS records for a newly deployed VoIP gateway operating at IP address `192.168.10.50`:

text
$ dig +short SRV _sip._udp.corp.example.com
10 60 5060 voice01.corp.example.com.

$ dig +short -x 192.168.10.50
voice01.corp.example.com.

Based on the output provided above, which TWO of the following DNS record types are returning active, authoritative information for this gateway?

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

Cevabı ve açıklamayı göster

Cevap: SRV record; PTR record

Cevap

The correct responses are the SRV record and the PTR record.
The output demonstrates two distinct DNS query types. The first command explicitly queries the SRV record to locate the SIP service port and server hostname. The second command uses the reverse lookup option (-x) to query the PTR record corresponding to IP 192.168.10.50, returning the canonical hostname.

Adım Adım Çözüm

1
Analyze the first command input and returned data.
The command `dig +short SRV _sip._udp.corp.example.com` explicitly queries for an SRV (Service Location) record. The output returns port `5060` and hostname `voice01.corp.example.com`.
SRV records define symbolic names, transport protocols (UDP), port numbers, and hostnames for protocol-specific services like SIP or LDAP.
2
Analyze the second command input and returned data.
The command `dig +short -x 192.168.10.50` performs a reverse DNS lookup for IPv4 address `192.168.10.50`, returning `voice01.corp.example.com.`.
Reverse DNS resolution queries the `in-addr.arpa` domain using PTR (Pointer) records to resolve IP addresses back to domain names.

Anahtar Kavram

DNS SRV and PTR Resource Records
Soru 372Soru

A network administrator is designing a multi-AP enterprise wireless deployment across an open office floor plan to support both legacy endpoints and high-density Wi-Fi 6 (802.11ax) clients. The objective is to maximize throughput and channel efficiency while preventing co-channel and adjacent-channel interference across the facility. Which of the following deployment configurations should the administrator implement? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Restrict the 2.4 GHz2.4\text{ GHz} radio interfaces to non-overlapping channels 1, 6, and 11 using a 20 MHz20\text{ MHz} channel width.; Enable Orthogonal Frequency Division Multiple Access (OFDMA) and Target Wake Time (TWT) on 5 GHz5\text{ GHz} radios for Wi-Fi 6 clients.

Cevap

The administrator should restrict 2.4 GHz2.4\text{ GHz} radios to non-overlapping channels 1, 6, and 11 at 20 MHz20\text{ MHz} width, and enable 802.11ax efficiency features such as OFDMA and Target Wake Time (TWT) on supported bands.
Selecting non-overlapping channels 1, 6, and 11 for 2.4 GHz2.4\text{ GHz} radios prevents frequency overlap, while enabling 802.11ax capabilities like OFDMA and Target Wake Time (TWT) leverages modern spectral efficiency enhancements designed for high-density client networks.

Adım Adım Çözüm

1
Analyze 2.4 GHz2.4\text{ GHz} spectrum channel allocation constraints.
Identified that only channels 1, 6, and 11 offer non-overlapping 20 MHz20\text{ MHz} frequency spacing in standard 2.4 GHz2.4\text{ GHz} deployments.
Using non-overlapping channels eliminates adjacent-channel interference between neighboring access points.
2
Evaluate Wi-Fi 6 (802.11ax) density optimization technologies.
Determined that OFDMA enables multi-user simultaneous transmissions via Resource Units (RUs), while TWT schedules client wake times.
These standards-based features decrease channel contention and improve overall medium access control in high-density environments.

Anahtar Kavram

Wireless Channel Planning and Wi-Fi 6 (802.11ax) Deployment Standards
Tahmini Süre:1m 30s
Soru 373Soru

A systems administrator is investigating DNS resolution issues where internal clients receive truncated response errors when requesting resource-heavy records from a local name server. Running `dig` on a diagnostic host returns the following command output:

;; Truncated, retrying in TCP mode.
;; Connection to 10.20.4.15#53(10.20.4.15) failed: connection refused.

Based on this diagnostic output, what is the primary cause of the DNS resolution failure, and how should it be resolved?

Cevabı ve açıklamayı göster

Cevap: TCP port 53 is blocked by a network firewall or service policy, which prevents DNS from falling back to TCP when response payloads exceed the 512-byte UDP limit.

Cevap

TCP port 53 is blocked by a network firewall or service policy, which prevents DNS from falling back to TCP when response payloads exceed the 512-byte UDP limit.
While DNS queries default to UDP port 53 for efficiency, any response that exceeds the standard UDP payload size of 512 bytes triggers the Truncation (TC) flag. Upon receiving a truncated response, compliant DNS stub resolvers automatically fail over to TCP port 53 to retrieve the complete data set. A 'connection refused' error during the TCP fallback indicates that TCP port 53 is blocked by a network security device or disabled on the DNS daemon.

Adım Adım Çözüm

1
Analyze the command output
The client attempted a standard UDP DNS query but received a truncated payload flag, prompting an automatic retry using TCP mode on port 53.
When a DNS response exceeds 512 bytes (without EDNS0 buffer extensions or when EDNS0 buffer is exceeded), the server sets the TC (truncation) flag.
2
Identify the connection failure
The attempt to establish a TCP connection to `10.20.4.15:53` resulted in `connection refused`.
This indicates that TCP port 53 is either blocked by a firewall ACL or the DNS daemon is not listening on TCP port 53.
3
Determine the corrective action
Ensure TCP port 53 is allowed through firewalls and listening on the server.
Allowing TCP port 53 enables DNS clients to successfully retrieve truncated responses larger than 512 bytes.

Anahtar Kavram

DNS Transport Protocols (UDP vs. TCP Port 53) and Truncation
Soru 374Soru

A network administrator is conducting a post-deployment audit of a retail store's wireless network following complaints of poor performance. The site survey reveals high packet retransmission rates and severe degradation on the 2.4 GHz2.4\text{ GHz} spectrum. Upon examining the access point (AP) configurations, the administrator discovers that three neighboring APs operating with 20 MHz20\text{ MHz} channel widths are configured on channels 1, 4, and 9, respectively. Which modification to the channel configuration plan will best eliminate adjacent channel interference (ACI)?

Cevabı ve açıklamayı göster

Cevap: Reconfigure the three access points to use channels 1, 6, and 11.

Cevap

Reconfigure the three access points to use channels 1, 6, and 11.
In the 2.4 GHz2.4\text{ GHz} ISM band, standard 20 MHz20\text{ MHz} Wi-Fi channels require 25 MHz25\text{ MHz} of center-frequency separation to avoid spectral overlap. Channels 1, 6, and 11 are the only three non-overlapping channels available in standard deployment domains. Configuring neighboring access points on channels 1, 6, and 11 ensures clean signal separation and eliminates adjacent channel interference.

Adım Adım Çözüm

1
Analyze the current wireless spectrum configuration.
The APs are assigned to 2.4 GHz2.4\text{ GHz} channels 1, 4, and 9 with 20 MHz20\text{ MHz} channel widths.
In the 2.4 GHz2.4\text{ GHz} Wi-Fi band, channel numbers are spaced 5 MHz5\text{ MHz} apart, while each standard channel spans 22 MHz22\text{ MHz} (or 20 MHz20\text{ MHz} active width).
2
Identify the cause of interference.
Channels 1, 4, and 9 overlap with each other (specifically 1 and 4 overlap), causing adjacent channel interference (ACI), which corrupts packets and increases retransmissions.
Adjacent channel interference occurs when overlapping frequencies from neighboring transmitters distort signals.
3
Select the standard non-overlapping channel scheme for 2.4 GHz2.4\text{ GHz}.
Reassigning the access points to channels 1, 6, and 11 provides maximum spectral separation with zero channel overlap.
Channels 1, 6, and 11 are the industry standard non-overlapping channels in the 2.4 GHz2.4\text{ GHz} ISM band.

Anahtar Kavram

2.4 GHz Non-Overlapping Channel Planning
Soru 375Soru

Match each IEEE 802.11 wireless standard with its corresponding operating frequency bands, maximum channel bonding capabilities, and key technological features.

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

Öğeler

IEEE 802.11g
IEEE 802.11n (Wi-Fi 4)
IEEE 802.11ac (Wi-Fi 5)
IEEE 802.11ax (Wi-Fi 6)

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

IEEE 802.11g pairs with 2.4 GHz2.4\text{ GHz} OFDM at 54 Mbps54\text{ Mbps}; IEEE 802.11n pairs with dual-band MIMO and 40 MHz40\text{ MHz} channels; IEEE 802.11ac pairs with 5 GHz5\text{ GHz}-only operation, 256-QAM, and 160 MHz160\text{ MHz} channels; IEEE 802.11ax pairs with multi-band operation, OFDMA, and BSS coloring.
Each Wireless standard maps directly to its core specifications: 802.11g provides 54 Mbps54\text{ Mbps} via OFDM in 2.4 GHz2.4\text{ GHz}; 802.11n introduces dual-band MIMO and 40 MHz40\text{ MHz} channel bonding; 802.11ac operates strictly in 5 GHz5\text{ GHz} with 256-QAM up to 160 MHz160\text{ MHz} channel width; and 802.11ax introduces OFDMA, BSS coloring, and TWT for high-density environments across 2.42.4, 55, and 6 GHz6\text{ GHz} frequencies.

Adım Adım Çözüm

1
Identify legacy single-band 2.4 GHz2.4\text{ GHz} standards using basic OFDM.
IEEE 802.11g provides up to 54 Mbps54\text{ Mbps} in the 2.4 GHz2.4\text{ GHz} band.
802.11g was designed as an upgrade to 802.11b on the 2.4 GHz2.4\text{ GHz} spectrum.
2
Identify the standard that introduced MIMO spatial streams and dual-band flexibility.
IEEE 802.11n (Wi-Fi 4) supports both 2.4 GHz2.4\text{ GHz} and 5 GHz5\text{ GHz} with 40 MHz40\text{ MHz} channels.
802.11n was the first standard to leverage multiple antennas (MIMO) and 40 MHz40\text{ MHz} bonded channels across both bands.
3
Differentiate 802.11ac from 802.11ax by operating frequencies and modulation techniques.
802.11ac operates exclusively in 5 GHz5\text{ GHz} with 256-QAM and 160 MHz160\text{ MHz} bonding, whereas 802.11ax works on 2.4/5/6 GHz2.4/5/6\text{ GHz} with OFDMA.
802.11ac focuses on high throughput in 5 GHz5\text{ GHz}, while 802.11ax focuses on multi-band spectral efficiency with OFDMA.

Anahtar Kavram

Wireless Standards and Specifications
Soru 376Soru

A network administrator is deploying multiple access points (APs) in a high-density conference hall to support hundreds of concurrent wireless clients. During post-installation testing, users experience intermittent connectivity and severe performance degradation due to high co-channel interference (CCI). Which configuration change should the administrator make to reduce co-channel interference while maintaining continuous coverage?

Cevabı ve açıklamayı göster

Cevap: Reduce access point transmit power levels and assign distinct non-overlapping channels to adjacent access points.

Cevap

Reduce access point transmit power levels and assign distinct non-overlapping channels to adjacent access points.
Reducing access point transmit power shrinks individual RF cell sizes (micro-cell deployment), allowing dense placement of access points without excessive coverage overlap. Combining reduced power with a channel plan that assigns non-overlapping channels to neighboring APs eliminates co-channel contention while supporting high client density.

Adım Adım Çözüm

1
Identify the cause of performance degradation in a high-density deployment.
High co-channel interference (CCI) occurs when multiple access points operating on the same frequency channel can hear each other's transmissions.
When access points share a channel and overlap in coverage, clients and APs must wait for the shared medium to become free before transmitting.
2
Determine the optimal radio frequency tuning method for high AP density.
Decreasing AP transmit power shrinks cell boundaries, while assigning distinct non-overlapping channels eliminates frequency contention between adjacent cells.
Creating smaller micro-cells allows more APs to be placed in a physical area without their coverage areas bleeding into adjacent APs running on the same channel.

Anahtar Kavram

Wireless Cell Sizing and Co-Channel Interference Mitigation
Tahmini Süre:1m 15s
Soru 377Soru

A network administrator is configuring three neighboring access points installed along a corridor in an enterprise building. The access points operate on standard 20 MHz channel widths within the 2.4 GHz spectrum. Which of the following channel assignment combinations will ensure contiguous wireless coverage while completely preventing adjacent-channel interference?

Cevabı ve açıklamayı göster

Cevap: Channels 1, 6, and 11

Cevap

Channels 1, 6, and 11 represent the three primary non-overlapping 20 MHz channels available in the 2.4 GHz spectrum.
In the 2.4 GHz band, channels are spaced 5 MHz apart. Standard 20 MHz transmissions require a minimum separation of 5 channel numbers (25 MHz between center frequencies) to prevent frequency skirts from overlapping. Channels 1, 6, and 11 represent the standard set of non-overlapping channels in North America and international deployments.

Adım Adım Çözüm

1
Analyze the channel spacing and bandwidth structure of the 2.4 GHz ISM band.
Each channel number represents a 5 MHz shift in center frequency, while a standard channel mask spans 20 to 22 MHz.
Because center frequencies are separated by only 5 MHz, adjacent channel numbers overlap heavily.
2
Calculate the minimum separation needed between channel center frequencies to avoid overlap.
A minimum separation of 25 MHz (5 channel numbers) is necessary to keep signal skirts isolated.
Sufficient frequency separation prevents adjacent-channel interference, which impairs frame preamble detection and causes packet corruption.
3
Identify the standard non-overlapping channel plan for three adjacent coverage cells.
Assigning channels 1 (2412 MHz), 6 (2437 MHz), and 11 (2462 MHz) provides 25 MHz separation between all adjacent access points.
This allocation maintains maximum cell density without generating inter-cell interference.

Anahtar Kavram

2.4 GHz Non-Overlapping Channel Planning
Soru 378Soru

A network engineer is evaluating wireless site survey methodologies for an upcoming enterprise WLAN deployment across a multi-story facility. Match each wireless site survey type on the left with its primary operational requirement or objective on the right.

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

Öğeler

Predictive Site Survey
Passive Site Survey
Active Site Survey
Spectrum Analysis Survey

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Predictive Site Survey matches with modeling RF propagation using CAD blueprints prior to hardware installation. Passive Site Survey matches with capturing beacons and RSSI from all APs without network association. Active Site Survey matches with associating a client device to APs to measure throughput, latency, and packet loss. Spectrum Analysis Survey matches with using dedicated RF sensors to detect non-802.11 sources of interference.
Each survey methodology addresses a distinct phase and requirement of wireless network deployment: Predictive surveys estimate placement using software algorithms on building plans; passive surveys measure coverage across all operating Wi-Fi channels without network association; active surveys test actual network throughput and transmission parameters by connecting to access points; and spectrum analysis surveys detect physical layer RF interference from both Wi-Fi and non-Wi-Fi emitters.

Adım Adım Çözüm

1
Identify pre-deployment software modeling techniques.
Connect Predictive Site Survey to software simulation using building blueprints and material attenuation values.
Predictive modeling occurs prior to physical installation to estimate AP count and placement.
2
Differentiate between connected and un-connected physical site walkthroughs.
Map Passive Site Survey to non-associating beacon and RSSI collection, and Active Site Survey to active connection testing of throughput and packet loss.
Passive surveys listen broadly to all broadcast signals; active surveys validate actual client data transport capabilities.
3
Isolate Layer 1 physical radio frequency measurement from 802.11 frame collection.
Associate Spectrum Analysis Survey with dedicated RF sensors for detecting non-Wi-Fi interference sources.
Spectrum analyzers detect raw electromagnetic radiation across frequency bands regardless of Wi-Fi protocol structures.

Anahtar Kavram

Wireless Site Survey Methodologies
Soru 379Soru

A network administrator notices severe throughput degradation and high frame retransmission rates across a newly deployed 2.4 GHz2.4\text{ GHz} wireless network serving four adjacent open-office zones. Reviewing the wireless controller configuration reveals that neighboring access points are currently statically assigned to channels 1, 4, 7, and 10. Which configuration change must the administrator implement to eliminate adjacent channel interference (ACI) between the neighboring access points?

Cevabı ve açıklamayı göster

Cevap: Reassign the access points to operate using only channels 1, 6, and 11, reusing channel 1 on the access point farthest from the initial channel 1 deployment.

Cevap

Reassign the access points to operate using only channels 1, 6, and 11, reusing channel 1 on the access point farthest from the initial channel 1 deployment.
In the 2.4 GHz Wi-Fi band, each channel occupies 20 MHz of channel bandwidth while center frequencies are spaced only 5 MHz apart. Therefore, only channels 1, 6, and 11 provide complete frequency separation without spectral overlap. In a four-AP deployment, assigning adjacent APs to 1, 6, and 11 and placing the second channel 1 AP at the maximum physical distance ensures clean cell boundary separation and eliminates adjacent channel interference.

Adım Adım Çözüm

1
Identify the cause of performance degradation
Channels 1, 4, 7, and 10 each have a 20 MHz channel width (spaced only 5 MHz apart per channel step), causing their signal sidebands to overlap and create adjacent channel interference (ACI).
Adjacent channel interference occurs when overlapping Wi-Fi frequencies cause uncoordinated energy spills, leading to frame corruption and retransmissions.
2
Determine the non-overlapping channel scheme for the 2.4 GHz band
The standard non-overlapping 20 MHz channels in the 2.4 GHz ISM band (802.11b/g/n/ax) are channels 1, 6, and 11.
Each standard channel is 20 MHz wide with 5 MHz separation between center frequencies, requiring a minimum of 25 MHz (5 channels) separation between non-overlapping center frequencies.
3
Apply cellular channel reuse design
Assign channels 1, 6, and 11 to adjacent access points and repeat channel 1 on the fourth access point, ensuring maximum physical distance between the two channel 1 cells.
Proper channel reuse minimizes co-channel interference (CCI) while completely preventing adjacent channel interference (ACI).

Anahtar Kavram

2.4 GHz Non-Overlapping Channel Planning
Soru 380Soru

Match each Network Address Translation (NAT) term or implementation type on the left to its corresponding functional description on the right.

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

Öğeler

Inside Local Address
Inside Global Address
Port Address Translation (PAT)
Static NAT

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Inside Local Address matches the private IP configured on an internal host. Inside Global Address matches the public IP representing the host externally. Port Address Translation (PAT) matches mapping multiple internal IPs to one public IP using source ports. Static NAT matches a permanent one-to-one mapping between an internal private IP and a public IP.
Inside Local Address refers to the private IP assigned to a local network node. Inside Global Address refers to the public IP representing an internal host on public networks. Port Address Translation (PAT) multiplexes multiple private IP addresses onto a single public IP address using distinct Layer 4 source port numbers. Static NAT establishes a fixed one-to-one translation between a specific private IP address and a public IP address.

Adım Adım Çözüm

1
Define the internal and external address perspectives defined in Network Address Translation terminology.
Inside Local is the actual private address on the endpoint, whereas Inside Global is the translated public address visible on external networks.
Understanding address naming conventions is essential for configuring and analyzing translation tables.
2
Differentiate between one-to-one translation (Static NAT) and many-to-one translation (PAT).
Static NAT maps one private IP to one public IP permanently, while PAT overloads a single public IP by tracking TCP/UDP port numbers for multiple internal hosts simultaneously.
Different operational requirements dictate whether port multiplexing or static address assignment is appropriate.

Anahtar Kavram

NAT and PAT Implementation and Address Classification
Tahmini Süre:1m 30s
ÖncekiSayfa 19 / 22Sonraki
Network Implementation Alıştırma Soruları — CompTIA Network+ — Sayfa 19 | Examkin