Search waiting | Matsusada Precision

Searching...

Technical Terms

The User Datagram Protocol (UDP) is a core communication protocol in the Internet Protocol (IP) suite used for time-sensitive transmissions. Operating at the transport layer (Layer 4), UDP serves as a lightweight alternative to TCP (Transmission Control Protocol).

Key Characteristics

Unlike TCP, UDP is a "connectionless" protocol. It sends data without establishing a formal connection between the sender and receiver. This approach offers distinct characteristics:

  • Low Latency: By eliminating handshakes and acknowledgment signals, UDP significantly reduces transmission overhead.
  • "Fire and Forget": Data packets (datagrams) are sent continuously without verifying receipt.
  • No Error Correction: There is no guarantee of delivery, ordering, or error checking. Lost packets are not retransmitted.

Applications in Industrial Systems

While TCP is generally preferred for sending critical commands to power supplies to ensure safety and reliability, UDP is advantageous for specific tasks:

  • High-Speed Monitoring: Broadcasting real-time status updates or measurement data to multiple monitoring stations.
  • Data Logging: Transmitting continuous streams of measurement data where occasional packet loss is preferable to the latency caused by TCP retransmission.

In general networking, UDP is standard for real-time applications such as video streaming, VoIP, and DNS queries.

Related Terms