Networking Concepts

538 soru

Soru 441Soru

A network technician is documenting the bottom four layers of the Open Systems Interconnection (OSI) model for a technical training guide. Which sequence correctly orders these OSI layers starting from Layer 1 up to Layer 4?

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

Cevabı ve açıklamayı göster

Cevap

The correct order from bottom to top (Layer 1 to Layer 4) is: Physical Layer, Data Link Layer, Network Layer, and Transport Layer.
Moving bottom-up through the OSI stack begins at Layer 1 (Physical), proceeds to Layer 2 (Data Link), continues to Layer 3 (Network), and reaches Layer 4 (Transport).

Adım Adım Çözüm

1
Identify Layer 1
Physical Layer
Layer 1 is the lowest layer of the OSI model, dealing with physical hardware, connectors, and raw bitstream transmission.
2
Identify Layer 2
Data Link Layer
Layer 2 sits directly above Physical and packages raw bits into data frames while using MAC addresses.
3
Identify Layer 3
Network Layer
Layer 3 handles logical network addressing (IPv4/IPv6) and packet routing between different subnets.
4
Identify Layer 4
Transport Layer
Layer 4 provides end-to-end transport services (TCP/UDP), segmenting data and ensuring reliable or connectionless delivery.

Anahtar Kavram

OSI Model Layer Ordering (Layers 1 to 4)
Soru 442Soru

A network administrator is configuring a low-latency network telemetry application that uses UDP to transmit continuous system performance metrics. Which of the following operational characteristics distinguish connectionless transport protocols from connection-oriented protocols in this implementation? (SELECT TWO)

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

Cevabı ve açıklamayı göster

Cevap: Transmission of data packets without requiring an initial session establishment handshake; Omission of header fields for sequence numbers, acknowledgment tracking, and window size

Cevap

Connectionless protocols such as UDP transmit data without establishing a prior connection handshake and utilize minimalistic headers that omit sequence numbers, acknowledgments, and flow control fields.
Connectionless protocols transmit data statelessly without performing a handshake to set up a connection before transmission. Furthermore, their headers are lightweight because they lack mechanisms for sequence tracking, arrival acknowledgments, and windowing-based flow control.

Adım Adım Çözüm

1
Analyze transport layer connection setup mechanisms
Connectionless protocols eliminate session setup delays by sending data immediately without negotiating a three-way handshake.
This reduces initial transmission latency.
2
Examine protocol header structures for overhead and control functions
Connectionless protocol headers omit sequence numbers, acknowledgment fields, and windowing values.
Because reliability and sequencing are not provided at the transport layer, header size is kept minimal to reduce bandwidth consumption.

Anahtar Kavram

Operational differences between connection-oriented (TCP) and connectionless (UDP) protocols
Soru 443Soru

A network administrator is evaluating IPv6 header structures and address formatting rules prior to deploying Quality of Service (QoS) and traffic filtering policies on an enterprise router. Which of the following statements correctly describe IPv6 header field operations or standard address notation rules? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: The Next Header field specifies the protocol type of the header immediately following the main IPv6 header, functioning similarly to the IPv4 Protocol field while also enabling extension header chaining.; Standard IPv6 address canonical representation under RFC 5952 requires using lowercase hexadecimal characters and compressing the single longest sequence of consecutive 16-bit zero fields with a double colon (::).

Cevap

The Next Header field indicates the payload protocol or subsequent extension header, and RFC 5952 standardizes address notation by requiring lowercase hexadecimal representation and allowing only a single double-colon compression for the longest consecutive zero fields.
The IPv6 Next Header field serves a dual purpose by either specifying an extension header in a chained sequence or identifying the transport layer protocol payload (such as TCP or UDP). Additionally, RFC 5952 standardizes IPv6 address formatting by mandating lowercase hexadecimal characters and permitting only one double-colon (::) compression for the single longest contiguous run of zero hextets.

Adım Adım Çözüm

1
Analyze the role and mechanics of the IPv6 Next Header field.
The 8-bit Next Header field in the IPv6 header identifies the protocol type of the header immediately following it. This can be an IPv6 Extension Header (e.g., Hop-by-Hop Options, Routing, IPSec ESP) or an upper-layer protocol (e.g., TCP value 6, UDP value 17), providing flexible protocol chaining.
Understanding header structure ensures proper filter placement and protocol inspection.
2
Evaluate IPv6 address compression rules per RFC 5952.
RFC 5952 establishes canonical formatting rules for IPv6 addresses: leading zeros within a 16-bit block must be suppressed, hexadecimal digits must be lowercase, and the double colon (::) can only be used once across the entire address to compress the longest run of consecutive 16-bit zero blocks.
Adhering to canonical address compression rules avoids syntax errors and ambiguity.
3
Identify misconceptions in wrong statements.
Using double colons twice (::) in a single address creates ambiguity because it is mathematically impossible to resolve how many zero blocks each '::' represents. Furthermore, the Hop Limit field is responsible for loop prevention by decrementing at each hop, while the Flow Label field identifies specific non-default traffic flows for real-time processing.
Differentiating header fields and compression constraints eliminates incorrect choices.

Anahtar Kavram

IPv6 Header Structure and Address Representation
Soru 444Soru

A network technician is installing an unmanaged network switch to connect multiple client computers within a single office subnet. At which layer of the Open Systems Interconnection (OSI) model does this device primarily operate to forward Ethernet frames using MAC addresses?

Cevabı ve açıklamayı göster

Cevap: Data Link layer

Cevap

Data Link layer
The Data Link layer (Layer 2) of the OSI model is responsible for node-to-node data transfer across a shared physical network segment. Standard switches inspect destination MAC addresses within incoming Ethernet frames to determine which port should receive the data.

Adım Adım Çözüm

1
Identify the primary addressing mechanism and PDU mentioned in the scenario
The device forwards Ethernet frames based on Media Access Control (MAC) addresses.
MAC addresses are hardware-level identifiers burned into network interface cards.
2
Map MAC address frame switching to the corresponding OSI model layer
Layer 2 is designated as the Data Link layer.
Standard network switches operate at Layer 2 to inspect frame header MAC addresses and deliver frames to the correct physical port.

Anahtar Kavram

OSI Layer 2 (Data Link Layer) device and address mapping
Tahmini Süre:45s
Soru 445Soru

During a routine network audit, a system administrator needs to record the correctly compressed shorthand format of the IPv6 address `fe80:0000:0000:0000:020c:29ff:fe0c:4171`. Which of the following is the correct compressed representation of this address?

Cevabı ve açıklamayı göster

Cevap: fe80::20c:29ff:fe0c:4171

Cevap

The correct compressed IPv6 address is `fe80::20c:29ff:fe0c:4171`.
The correct representation `fe80::20c:29ff:fe0c:4171` follows RFC 5952 standard compression rules: it collapses the four consecutive all-zero 16-bit fields (`0000:0000:0000:0000`) into a single double colon `::`, and suppresses the leading zero in `020c` to `20c`.

Adım Adım Çözüm

1
Identify leading zeros in each 16-bit field (hextet) and drop them.
The field `020c` becomes `20c`. Fields with single `0000` become `0`.
IPv6 syntax rules require dropping leading zeros within any individual 16-bit hexadecimal block.
2
Locate the longest contiguous run of all-zero fields.
The sequence `:0000:0000:0000:` consists of four consecutive zero hextets.
Standard IPv6 zero-compression replaces the longest consecutive run of zero fields with a double colon `::`.
3
Apply the double colon (`::`) exactly once to replace the consecutive zero fields.
The full compressed string becomes `fe80::20c:29ff:fe0c:4171`.
Using `::` more than once makes it impossible to determine how many zero fields belong to each `::` section.

Anahtar Kavram

IPv6 Address Compression Syntax (RFC 5952)
Soru 446Soru

While analyzing a network trace captured from an enterprise server, a network technician inspects a protocol header containing source and destination port numbers, sequence tracking numbers, and window sizing information. At which layer of the OSI model does this header operate, and what is its primary responsibility?

Cevabı ve açıklamayı göster

Cevap: Transport layer (Layer 4), which manages end-to-end communication control, process multiplexing, and data flow regulation.

Cevap

Transport layer (Layer 4), which manages end-to-end communication control, process multiplexing, and data flow regulation.
The correct answer identifies the Transport layer (Layer 4). Port numbers, sequence numbers, and window size controls are defined at Layer 4 to manage end-to-end delivery, application multiplexing, and communication flow control.

Adım Adım Çözüm

1
Examine the fields identified in the header capture.
The fields identified include port numbers, sequence numbers, and window sizing parameters.
These specific fields belong to Layer 4 transport layer protocol headers such as TCP.
2
Map these header parameters to their respective OSI layer functions.
Port numbers provide process-to-process multiplexing while sequence numbers and window sizes regulate reliable data transfer at Layer 4.
Layer 4 (Transport layer) is specifically designed to handle end-to-end data integrity, multiplexing via ports, and flow control.

Anahtar Kavram

OSI Transport Layer (Layer 4) Protocol Header Functions
Soru 447Soru

A network administrator is assigning an IPv6 address to a router interface in a dual-stack enterprise network. The uncompressed 128-bit address is 2001:0db8:0000:0000:00ab:0000:0000:00012001:0db8:0000:0000:00ab:0000:0000:0001. According to standard IPv6 address compression rules (RFC 5952), which of the following is the correct shorthand representation of this address?

Cevabı ve açıklamayı göster

Cevap: 2001:db8::ab:0:0:1

Cevap

The correct shorthand representation is 2001:db8::ab:0:0:1.
The notation '2001:db8::ab:0:0:1' correctly applies RFC 5952 rules: leading zeros are suppressed (0db8 to db8, 00ab to ab, 0001 to 1), and because there are two zero-sequences of equal length (two hextets each), the double-colon symbol (::) is applied to the first zero-sequence while leaving the second zero-sequence written as explicit single zeros.

Adım Adım Çözüm

1
Suppress leading zeros in each 16-bit hextet.
2001:0db8 becomes 2001:db8; 0000 becomes 0; 00ab becomes ab; 0001 becomes 1.
Leading zeros in any 4-digit hexadecimal group must be omitted under RFC 5952.
2
Identify consecutive groups of zero hextets for double-colon (::) substitution.
Group 1 (hextets 3 and 4) contains two zeros. Group 2 (hextets 6 and 7) also contains two zeros.
The double-colon symbol replaces contiguous fields of zeros.
3
Apply the tie-breaking rule for equal-length zero runs.
Replace hextets 3 and 4 with :: and write hextets 6 and 7 as :0:0:.
When multiple zero runs of equal length exist, RFC 5952 specifies that the first run must be compressed with ::, and :: can only be used once per address.

Anahtar Kavram

IPv6 Address Compression Rules (RFC 5952)
Soru 448Soru

A senior network architect is documenting transport layer protocol selection guidelines for an enterprise infrastructure upgrade. Match each application communication requirement on the left with the corresponding Transport Layer protocol operational mechanism on the right.

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

Öğeler

Real-time telemetry streaming over low-bandwidth links where dropped frames are discarded rather than retransmitted to avoid latency spikes.
Remote database synchronization across a lossy WAN requiring verified packet sequencing and dynamic rate adaptation based on receiver buffer capacity.
Stateful network firewall filtering tracking active session states via sequence numbers and explicit segment acknowledgment markers.
Low-overhead transactional client-server query/response where transmission failure detection is delegated to application-layer timers.

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Each scenario maps to its underlying transport mechanism: low-latency streaming maps to 8-byte connectionless headers; database sync maps to dynamic sliding window connection-oriented transport; stateful firewall tracking maps to three-way handshake session creation; and transactional query/response maps to connectionless transport with application-managed reliability.
Transport layer protocol selection depends on application tolerance for latency versus data integrity. Connection-oriented protocols (TCP) establish state via a three-way handshake, maintain sequence numbers, guarantee delivery, and perform sliding-window flow control. Connectionless protocols (UDP) operate statelessly with fixed 8-byte headers, delivering datagrams with minimal overhead while delegating error recovery to application layers.

Adım Adım Çözüm

1
Analyze latency and overhead requirements for real-time telemetry streaming.
Identified requirement for UDP due to its unacknowledged connectionless datagram architecture and lightweight 8-byte header.
Retransmission and handshake delays introduced by connection-oriented protocols degrade real-time metrics.
2
Analyze database synchronization requirements over lossy WAN links.
Identified TCP as mandatory due to mandatory packet ordering, reliable delivery, and window-based flow control.
Data integrity and receiver buffer protection require cumulative acknowledgments and sliding window flow control.
3
Determine how stateful firewalls track connection-oriented sessions.
Matched firewall session state tracking to TCP's three-way handshake mechanism.
Firewalls validate connection status by inspecting control flags (SYN, SYN-ACK, ACK) during session creation.
4
Evaluate lightweight query/response transactions with application-layer retry mechanisms.
Matched to connectionless best-effort transport delegating recovery to higher OSI layers.
When higher-layer protocols handle retransmissions, transport-layer connection management adds unnecessary overhead.

Anahtar Kavram

Connection-Oriented (TCP) vs. Connectionless (UDP) Protocol Operational Characteristics
Soru 449Soru

A network administrator is reviewing the packet processing logic of an enterprise Ethernet switch. Which of the following functions and data structures operate strictly within Layer 2 (Data Link Layer) of the OSI model? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Appending a Cyclic Redundancy Check (CRC) frame check sequence trailer for error detection; Evaluating destination Media Access Control (MAC) addresses to make frame forwarding decisions

Cevap

The operations residing strictly at Layer 2 (Data Link Layer) are appending a Cyclic Redundancy Check (CRC) frame check sequence trailer for error detection and evaluating destination Media Access Control (MAC) addresses to make frame forwarding decisions.
Layer 2 (Data Link Layer) is responsible for node-to-node data transfer across a physical medium. It encapsulates Layer 3 packets into frames, utilizes physical Media Access Control (MAC) addresses for local delivery, and appends a Frame Check Sequence (FCS) containing a Cyclic Redundancy Check (CRC) to detect transmission errors.

Adım Adım Çözüm

1
Analyze each network function to determine its respective OSI layer.
CRC error detection and MAC address processing belong to Layer 2 (Data Link). Logical IP addressing belongs to Layer 3 (Network). Port multiplexing belongs to Layer 4 (Transport).
Layer 2 handles node-to-node framing, hardware addressing (MAC), and error detection across a single physical link.
2
Select the choices corresponding to Layer 2 operations.
CRC frame check sequence generation and MAC-based switching are identified as the correct Layer 2 functions.
These two processes govern physical address navigation and frame integrity before data is passed up to Layer 3.

Anahtar Kavram

OSI Layer 2 (Data Link Layer) functions and protocol data unit (PDU) characteristics
Soru 450Soru

An administrator is auditing network traffic and needs to categorize functions performed at Layer 3 (Network Layer) of the OSI model. Which of the following functions operate at Layer 3? (Select TWO.)

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

Cevabı ve açıklamayı göster

Cevap: Evaluating logical IP addresses to determine routing paths across networks; Encapsulating transport layer segments into network packets

Cevap

Evaluating logical IP addresses to determine routing paths across networks, and encapsulating transport layer segments into network packets.
Evaluating logical IP addresses for routing across subnets and encapsulating Transport segments into Network packets are fundamental Layer 3 (Network Layer) duties.

Adım Adım Çözüm

1
Identify the primary functions performed at Layer 3 (Network Layer) of the OSI model.
Layer 3 is responsible for logical addressing (IPv4/IPv6 addresses), packet creation, and path determination (routing) across interconnected subnets.
Understanding layer responsibilities enables accurate classification of network operations.
2
Evaluate each choice against Layer 3 characteristics.
Logical IP addressing and segment-to-packet encapsulation are Layer 3 processes. Hardware MAC addressing belongs to Layer 2, while port multiplexing with TCP/UDP belongs to Layer 4.
Differentiating PDUs and operational mechanisms isolates Network layer processes from Data Link and Transport layer processes.

Anahtar Kavram

OSI Layer 3 (Network Layer) Functions and Protocols
Tahmini Süre:45s
Soru 451Soru

When troubleshooting a network connection, a technician notices that signal attenuation is causing bit corruption across a newly run fiber-optic connection. At which layer of the OSI model do physical media specifications, signaling formats, and bit-level data transmissions operate?

Cevabı ve açıklamayı göster

Cevap: Physical Layer (Layer 1)

Cevap

Physical Layer (Layer 1)
The Physical Layer (Layer 1) defines the hardware specifications for network media, connector types, pinouts, electrical signal levels, optical light pulses, and raw bit-stream transmission. Issues involving cable attenuation, fiber optics, or signal interference occur at Layer 1.

Adım Adım Çözüm

1
Analyze the core network functions described in the scenario
Identified functions: fiber-optic cabling standards, signal attenuation, and bit-level transmission.
Determining which OSI layer governs raw physical transmission and hardware specs is necessary to map the problem.
2
Map the identified functions to the correct OSI layer
Layer 1 (Physical Layer) specifies electrical, optical, and mechanical properties of network media and raw bit streams.
Physical cable characteristics and signal propagation are defined exclusively at Layer 1.

Anahtar Kavram

OSI Model Layer 1 (Physical Layer) Functions
Soru 452Soru

A network administrator attempts to configure a static route using the IPv6 address representation `2001:db8::100::1`. The configuration tool rejects the input as syntactically invalid. Which of the following explains why this IPv6 address representation is invalid?

Cevabı ve açıklamayı göster

Cevap: The double colon symbol is used more than once in a single address, introducing ambiguity regarding the number of missing zero blocks.

Cevap

The double colon symbol is used more than once in a single address, introducing ambiguity regarding the number of missing zero blocks.
In IPv6 text representation, the double colon (`::`) replaces one or more contiguous 16-bit blocks of zeros. Because a complete IPv6 address must contain exactly 128 bits (eight 16-bit hextets), placing `::` twice in a single address creates ambiguity as to how many zero blocks each double colon is intended to expand into.

Adım Adım Çözüm

1
Analyze the given IPv6 address structure
The address string `2001:db8::100::1` contains two instances of the double colon (`::`) shorthand operator.
An uncompressed IPv6 address consists of 128 bits divided into eight 16-bit hexadecimal blocks separated by colons.
2
Apply standard IPv6 address shorthand rules
The double colon (`::`) represents contiguous blocks of 16-bit zero fields, but may only appear ONCE in an address string.
If used multiple times (e.g., `2001:db8::100::1`), it is mathematically impossible to resolve whether the first `::` replaces 3 zero blocks and the second replaces 2, or vice versa, making the full 128-bit address ambiguous.

Anahtar Kavram

IPv6 Address Compression Rules (RFC 5952)
Soru 453Soru

A system administrator is managing a local network that hosts a real-time voice intercom system. Users report occasional minor audio dropouts (packet loss) during high network utilization, but notice that the communication has virtually zero lag. To eliminate packet loss, an IT intern suggests reconfiguring the voice application to transmit data using TCP instead of UDP. Which of the following describes the most likely consequence of implementing this proposed protocol change?

Cevabı ve açıklamayı göster

Cevap: Lost packets will be retransmitted to guarantee delivery, but voice traffic will suffer from increased latency and jitter during drop events.

Cevap

Retransmitting lost packets via TCP guarantees data delivery, but the resulting retransmission delays increase latency and jitter, degrading real-time voice communications.
TCP is a connection-oriented protocol that guarantees delivery through sequence numbers, acknowledgments, and retransmissions of lost segments. When applied to real-time voice traffic, any lost packet forces TCP to hold subsequent data in a buffer until the missing segment is successfully retransmitted. This retransmission mechanism eliminates packet loss, but causes noticeable audio delay (latency) and inconsistent arrival times (jitter), which severely harms real-time voice performance.

Adım Adım Çözüm

1
Analyze the operational requirements of real-time voice traffic.
Real-time communication prioritizes low latency and minimal jitter over 100% packet delivery.
Late audio packets are useless in live conversations because human speech requires continuous, real-time arrival.
2
Evaluate protocol mechanisms of UDP versus TCP.
UDP is connectionless and overhead-light with no retransmissions. TCP is connection-oriented, performing sequencing, error recovery, and retransmissions.
UDP drops missing packets without stopping stream flow, preserving timing. TCP pauses the stream to request and receive lost packets.
3
Determine the impact of replacing UDP with TCP in live audio streaming.
Elimination of packet loss comes at the cost of retransmission delays, leading to jitter and noticeable audio lag.
TCP's reliable delivery guarantees come at the expense of delay, making it unsuited for latency-sensitive streaming.

Anahtar Kavram

Connection-Oriented vs Connectionless Transport Protocols (TCP vs UDP)
Soru 454Soru

A network engineer is optimizing transport layer communications for an industrial control system. The environment requires two distinct traffic flows: real-time telemetry sensor updates sent every 20 milliseconds where low latency is critical and occasional dropped data points are acceptable, and system firmware configuration updates where every packet must be acknowledged, strictly ordered, and delivered without loss. During peak utilization, network captures show excessive latency on telemetry feeds due to windowing mechanisms and retransmissions. Which of the following transport layer protocol recommendations best resolves the performance issues while meeting all delivery requirements?

Cevabı ve açıklamayı göster

Cevap: Migrate real-time telemetry traffic to UDP to eliminate connection-establishment delay and retransmission overhead, while maintaining TCP for firmware configuration updates to ensure guaranteed, connection-oriented delivery.

Cevap

Migrate real-time telemetry traffic to UDP to eliminate connection-establishment delay and retransmission overhead, while maintaining TCP for firmware configuration updates to ensure guaranteed, connection-oriented delivery.
The correct answer properly distinguishes between connection-oriented and connectionless transport protocol features. UDP is connectionless and unacknowledged, eliminating delay-inducing retransmissions for real-time telemetry. TCP is connection-oriented, utilizing sequence numbers and acknowledgments to ensure complete, ordered delivery for critical firmware updates.

Adım Adım Çözüm

1
Analyze the operational requirements of the telemetry stream.
Telemetry requires low latency, frequent transmission (every 20 ms), and tolerates minor loss. Retransmissions and flow control (TCP overhead) cause unwanted lag.
Connectionless protocols like UDP operate without handshakes, acknowledgments, or windowing, making them ideal for real-time applications.
2
Analyze the operational requirements of the firmware configuration stream.
Firmware updates require 100% accurate data delivery, strict packet ordering, and error recovery.
Connection-oriented protocols like TCP provide formal handshakes, sequencing, error checking, and retransmission of lost segments.
3
Evaluate protocol assignment choices.
Assigning UDP to telemetry and TCP to firmware updates fulfills both traffic requirements optimally.
Matching protocol characteristics (TCP vs. UDP) to application requirements ensures performance without sacrificing system integrity.

Anahtar Kavram

Connection-Oriented (TCP) vs Connectionless (UDP) Protocol Selection
Soru 455Soru

An enterprise infrastructure team is revising its architecture standards across multi-site and data center environments. Match each network topology or geographic network type on the left to its corresponding architectural specification or operational behavior on the right.

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

Öğeler

Full Mesh Topology
Storage Area Network (SAN)
Metropolitan Area Network (MAN)
Spine-and-Leaf Architecture

Eşleşmeler

Cevabı ve açıklamayı göster

Cevap

Full Mesh Topology matches with the specification requiring n(n1)/2n(n-1)/2 connections for full redundancy; Storage Area Network (SAN) matches with specialized block-level storage protocols like Fibre Channel and iSCSI; Metropolitan Area Network (MAN) matches with municipal geographic scope using dark fiber/Metro Ethernet; Spine-and-Leaf Architecture matches with low-latency two-tier data center east-west routing.
Full Mesh Topology uses n(n1)/2n(n-1)/2 connections to deliver complete fault tolerance. Storage Area Networks (SANs) deliver high-speed block storage access via iSCSI or Fibre Channel. Metropolitan Area Networks (MANs) serve city-wide geographic areas. Spine-and-Leaf architectures provide predictable, low-latency interconnectivity for east-west data center communications.

Adım Adım Çözüm

1
Analyze the physical redundancy formula for network nodes.
The link calculation n(n1)/2n(n-1)/2 is unique to a physical Full Mesh topology.
Every device maintains a dedicated connection to every other device.
2
Evaluate specialized network types focused on block-level storage.
Storage Area Network (SAN) isolates high-speed storage traffic using iSCSI or Fibre Channel.
SANs differ from general LAN networks by providing direct block storage access.
3
Categorize networks by geographic scope.
Metropolitan Area Network (MAN) defines municipal site interconnection spanning a city.
MAN scale sits between local/campus networks (LAN/CAN) and broad geographical regions (WAN).
4
Examine modern data center fabric designs.
Spine-and-Leaf topology guarantees fixed two-hop latency for east-west traffic.
Leaf switches connect directly to all spine switches without inter-leaf connections.

Anahtar Kavram

Network Topologies and Types
Soru 456Soru

During a protocol analysis of IPv6 traffic traversing a core layer-3 switch, an engineer observes that the IPv6 base header does not contain an Internet Header Length (IHL) field or an embedded protocol field like IPv4. Which of the following statements correctly explains how IPv6 processes optional controls and determines where the upper-layer payload (such as TCP or UDP) begins?

Cevabı ve açıklamayı göster

Cevap: The fixed 40-byte base header utilizes an 8-bit Next Header field that specifies the type of the immediately following extension header or upper-layer protocol, creating a linked chain of headers.

Cevap

The IPv6 architecture utilizes a fixed 40-byte base header containing an 8-bit Next Header field. This field points either directly to an upper-layer protocol (like TCP or UDP) or to the first extension header, which in turn contains its own Next Header field to form a daisy chain of optional headers.
The correct answer highlights the design of the IPv6 base header. The IPv6 base header is strictly fixed at 40 bytes. Instead of embedding optional fields directly into the main header (which increases processing overhead on intermediate routers), IPv6 uses the Next Header field. This 8-bit field specifies the protocol or extension header immediately following. Multiple extension headers are concatenated into a daisy-chain structure, ending with the transport-layer protocol (e.g., TCP value 6, UDP value 17).

Adım Adım Çözüm

1
Examine the IPv6 base header structure
Identify that the IPv6 base header has a fixed length of exactly 40 bytes (320 bits), eliminating the need for a variable header length field (such as IPv4 IHL).
Fixed header size allows routers to process packets faster without calculating variable header boundaries.
2
Analyze how optional features and protocols are chained
Determine that the 8-bit Next Header field indicates the type of header immediately following the base header.
If extension headers (e.g., Hop-by-Hop Options, Routing, Fragment) exist, each extension header includes its own Next Header field, pointing sequentially to the next item until reaching the Layer 4 protocol PDU.
3
Evaluate distractor options against IPv6 field functions
Confirm that Payload Length specifies payload size (not header length), Flow Label assists in flow identification for QoS, and Traffic Class provides packet prioritization.
Distractors confuse field responsibilities with OSI Layer 3 header processing mechanisms.

Anahtar Kavram

IPv6 Base Header Fixed Size and Next Header Extension Chaining
Tahmini Süre:2m 0s
Soru 457Soru

An IT technician notices that excessive broadcast packets are reaching every workstation connected to a 48-port switch, leading to unwanted network overhead. The technician needs to divide the switch into smaller, isolated broadcast domains without adding physical hardware. Which switching feature should be implemented to achieve this goal?

Cevabı ve açıklamayı göster

Cevap: Virtual Local Area Networks (VLANs)

Cevap

Virtual Local Area Networks (VLANs)
Virtual Local Area Networks (VLANs) allow network administrators to partition a single physical switch into multiple logical Layer 2 broadcast domains. Broadcast traffic sent by a device in one VLAN will only be forwarded to ports assigned to that same VLAN, effectively reducing broadcast overhead without requiring additional physical switch hardware.

Adım Adım Çözüm

1
Identify the primary network issue described in the scenario.
The physical switch forms a single large broadcast domain, causing broadcast traffic to reach all connected hosts.
By default, all switch ports reside in the same Layer 2 broadcast domain.
2
Determine the required switching mechanism to divide broadcast domains logically.
Configuring Virtual Local Area Networks (VLANs) isolates traffic between port groups on a single physical switch.
VLANs break a single physical switch into logical Layer 2 boundaries, containing broadcast traffic within each specific VLAN.

Anahtar Kavram

VLAN Broadcast Domain Isolation
Tahmini Süre:45s
Soru 458Soru

An organization is deploying a multi-site network architecture connecting a main data center to six regional offices using a hybrid WAN model. To maximize resiliency and maintain continuous traffic routing, the core data center devices utilize a physical full-mesh topology, while the branch sites connect via a hub-and-spoke model. A network engineer is tasked with verifying the operational characteristics of this design. If two core switches in the data center full mesh fail simultaneously while a logical ring protocol operates over the physical topology, which outcome correctly describes the resulting fault tolerance and traffic behavior across the infrastructure?

Cevabı ve açıklamayı göster

Cevap: Traffic between remaining functional nodes in the data center full mesh will continue to route directly using remaining point-to-point links, but logical ring convergence failure will segment communications if the ring protocol lacks dual-ring redundancy.

Cevap

Traffic between remaining functional nodes in the data center full mesh will continue to route directly using remaining point-to-point links, but logical ring convergence failure will segment communications if the ring protocol lacks dual-ring redundancy.
In enterprise architecture, physical topology defines the actual cable layout and interconnection of nodes, while logical topology defines how data frames travel across the network. A physical full mesh ensures that surviving nodes retain direct point-to-point physical links. However, if a logical ring protocol runs over this infrastructure, the ring must successfully re-converge (or utilize counter-rotating ring mechanisms) to maintain logical communication flow when physical nodes fail.

Adım Adım Çözüm

1
Analyze physical topology properties of a full mesh
A full mesh provides maximum physical redundancy with n(n1)2\frac{n(n-1)}{2} direct connections. Failure of two nodes reduces total available paths but leaves redundant point-to-point connections between all surviving nodes.
Understanding physical mesh redundancy requires evaluating how link count and direct paths survive partial node failures.
2
Differentiate physical topology from logical topology behavior
The physical topology specifies physical cable links, while the logical topology dictates how signals and data frames travel across those physical paths (e.g., token passing or ring protocols).
Even with abundant physical links, logical protocols (like ring topologies) rely on specific path continuity and convergence mechanisms to handle node drops.
3
Evaluate combined fault tolerance
Physical links remain intact for active nodes, but logical ring token transmission requires protocol-level re-convergence or dual-ring counter-rotation to handle node removal.
Synthesizing physical mesh resiliency with logical overlay behavior yields the correct network survival outcome.

Anahtar Kavram

Physical vs. Logical Topologies and Redundancy Characteristics
Soru 459Soru

During a network security configuration task, a technician implements packet-filtering rules on a gateway router to inspect incoming traffic based on source and destination IP addresses and forward traffic between separate subnets. At which OSI model layer does this IP addressing and routing function take place, and what is the associated Protocol Data Unit (PDU)?

Cevabı ve açıklamayı göster

Cevap: Network Layer (Layer 3) processing packets

Cevap

Network Layer (Layer 3) processing packets
The Network Layer (Layer 3) is responsible for logical addressing (IPv4/IPv6), packet forwarding, and path selection (routing) between different networks. The Protocol Data Unit (PDU) created and processed at Layer 3 is the packet.

Adım Adım Çözüm

1
Identify the primary function described in the scenario.
The scenario describes examining source/destination IP addresses and routing traffic between different subnets.
Logical addressing (IP addresses) and path determination (routing) across subnets are core responsibilities of the Network Layer.
2
Determine the Protocol Data Unit (PDU) at this layer.
The PDU at the Network Layer is the packet.
Data encapsulated with Layer 3 headers containing source and destination IP addresses is defined as a packet.

Anahtar Kavram

OSI Network Layer Functions and PDUs
Soru 460Soru

A network technician is setting up network connectivity for workstations located entirely within a single office suite by connecting them to a local central switch. Which of the following network types best describes this deployment?

Cevabı ve açıklamayı göster

Cevap: Local Area Network (LAN)

Cevap

Local Area Network (LAN)
A Local Area Network (LAN) is designed to connect computer systems and peripheral devices within a localized area such as an office room or building.

Adım Adım Çözüm

1
Analyze the geographic scope of the scenario.
The network encompasses devices confined within a single office suite.
Geographic scope is the primary criteria for distinguishing between network classification types (LAN, MAN, WAN).
2
Map the geographic scope to the appropriate network classification.
A network operating within a single room, home, or office building is defined as a Local Area Network (LAN).
LANs handle short-range local network communication using standard Ethernet switching infrastructure.

Anahtar Kavram

Geographic network types (LAN vs MAN vs WAN vs SAN)
ÖncekiSayfa 23 / 27Sonraki
Networking Concepts Alıştırma Soruları — CompTIA Network+ — Sayfa 23 | Examkin