A network administrator is deploying a high-frequency sensor telemetry service that transmits small status updates every 10 milliseconds. The system prioritizes minimal transmission overhead and low latency over guaranteed packet delivery, as occasional lost datagrams do not impact real-time monitoring. Which transport layer protocol best aligns with these application requirements?
- User Datagram Protocol (UDP), because its lightweight 8-byte header minimizes overhead and it operates without connection setup or retransmission delays.Cevap
- BTransmission Control Protocol (TCP) with window size 0, because it disables retransmissions while retaining connection-oriented session tracking.
- CInternet Protocol (IP) direct encapsulation, because connectionless communication is strictly a Layer 3 function and cannot be implemented at Layer 4.
- DUser Datagram Protocol (UDP) assigned to port 22, because port 22 inherently establishes a connection-oriented handshake for real-time telemetry.
Cevap
User Datagram Protocol (UDP), because its lightweight 8-byte header minimizes overhead and it operates without connection setup or retransmission delays.
The User Datagram Protocol (UDP) operates as a connectionless transport layer protocol. It does not establish a formal session via handshakes, nor does it guarantee delivery or retransmit lost packets. Its small 8-byte header drastically reduces overhead compared to TCP's 20-byte minimum header, making UDP the ideal choice for low-latency, real-time telemetry where transmission speed is critical and minor packet loss is acceptable.
Adım Adım Çözüm
Anahtar Kavram
Connection-Oriented (TCP) vs Connectionless (UDP) Transport Protocols
Tahmini Süre:1m 30s