A network administrator is analyzing transport layer requirements for two network services: an interactive database management session and a local network host discovery service. When evaluating the connectionless transport protocol (UDP) used by the discovery service compared to the connection-oriented transport protocol (TCP) used by the database session, which of the following operational traits specifically characterize the connectionless protocol? (SELECT TWO).
- Payload delivery begins immediately without performing a preliminary three-way handshake to establish session state.Answer
- The protocol header maintains a minimalist 8-byte header structure that lacks sequence numbers and acknowledgment fields.Answer
- CGuaranteed in-order delivery of payload data is dynamically managed using sliding window flow control.
- DTransport data units bypass Layer 3 routing protocols and encapsulate directly into Layer 2 Ethernet frames.
- ECommunication requires reserved service port 22 to ensure encrypted state verification between hosts.
Answer
The correct options state that payload delivery begins immediately without a preliminary three-way handshake and that the protocol header maintains a minimalist 8-byte header structure lacking sequence and acknowledgment fields.
Connectionless transport protocols like UDP do not establish a formal session prior to data transmission, eliminating the latency of a three-way handshake. Additionally, UDP overhead is minimized by using a fixed 8-byte header that omits sequence numbering, acknowledgment tracking, and window size fields required by connection-oriented protocols like TCP.
Step-by-Step Solution
Key Concept
Connection-Oriented (TCP) vs. Connectionless (UDP) Protocol Characteristics