An engineer captures traffic from an enterprise workstation streaming live voice communication. The capture shows small datagrams arriving without connection establishment frames, sequence numbers, or acknowledgment requests, allowing out-of-order delivery without triggering retransmissions. Which transport protocol is transmitting this traffic, and what is its baseline header size?
- UDP, which uses a fixed 8-byte header containing only source port, destination port, length, and checksum fields.Answer
- BTCP, which uses a reduced 8-byte header when sequencing and acknowledgment options are disabled for real-time media streams.
- CUDP, which uses a baseline 20-byte header to maintain port addressing while relying on IP for sequencing.
- DTCP, which uses a fixed 20-byte header but automatically suppresses retransmissions when payload buffers detect UDP-like data.
Answer
UDP, which uses a fixed 8-byte header containing only source port, destination port, length, and checksum fields.
The captured traffic demonstrates connectionless, unreliable delivery suited for real-time voice streaming. User Datagram Protocol (UDP) provides this lightweight transport mechanism using a fixed header of 8 bytes (comprising 2 bytes each for Source Port, Destination Port, Length, and Checksum).
Step-by-Step Solution
Key Concept
TCP vs UDP Header Overhead and Protocol Mechanics