A network engineer analyzes a Wireshark capture of a custom network monitoring stream. The Layer 4 protocol header contains only four fields: Source Port (16 bits), Destination Port (16 bits), Length (16 bits), and Checksum (16 bits). Which statement accurately describes the operational behavior of this transport-layer protocol?
- It provides connectionless, best-effort delivery with a fixed 8-byte header overhead and no inherent flow control or retransmission mechanisms.Answer
- BIt uses acknowledgment numbers and sequence numbers within its header to guarantee sequential delivery of payload segments.
- CIt establishes a session prior to data transmission using a three-way handshake process to synchronize initial sequence numbers.
- DIt dynamically manages transmission rates using window size fields to prevent receiver buffer overflow.
Answer
The protocol in the packet capture is UDP, which provides connectionless, best-effort delivery with a minimal 8-byte header structure and no native retransmission or flow control mechanisms.
The described header consists of four 16-bit fields totaling 64 bits (8 bytes): Source Port, Destination Port, Length, and Checksum. This structure uniquely identifies UDP. Because UDP has no flags, sequence numbers, acknowledgment fields, or windowing fields, it operates connectionlessly without guaranteeing delivery or providing flow control.
Step-by-Step Solution
Key Concept
UDP Header Structure and Protocol Characteristics
Estimated Time:1m 0s