Question:
User Datagram Protocol---?
anonymous
2010-01-01 13:48:07 UTC
User Datagram Protocol---?
Three answers:
bruce lee
2010-01-01 14:13:38 UTC
User Datagram Protocol



User Datagram Protocol (UDP) supports the network at the transport layer. User Datagram Protocol (UDP) is an unreliable connection-less protocol and is defined by RFC 768 and 1122. It is a datagram service. There is no guarantee that the data will reach its destination. UDP is meant to provide serivce with very little transmission overhead. It adds very little to IP datapackets except for some error checking and port direction (Remember, UDP encapsulates IP packets). The following protocols or services use UDP:



* DNS

* SNMP

* BOOTP

* TFTP

* NFS

* RPC

* RIP



UDP Message Format



The UDP header includes:



1. Source port number (16 bits) - An optional field

2. Destination port number (16 bits)

3. UDP length (16 bits)

4. UDP checksum (16 bits)







This is followed by data. The UDP checksum includes UDP data, not just the header as with IP message formats. For UDP and TCP checksum calculation a 12 byte pseudo header is included which contains some fields form the IP message header. This header is not transmitted as part of UDP or TCP, but is only used to help compute the checksum as a means of being sure that the data has arrived at the correct IP address. This is the TCP/UDP pseudo header:



1. Source IP address (32 bits)

2. Destination IP address (32 bits)

3. blank filler(0) (8 bits)

4. Protocol (8 bits)

5. UDP length (16 bits)
husoski
2010-01-01 14:22:42 UTC
UDP - a connectionless, low-overhead way to send single datagram packets across a TCP/IP network (like the Internet). There is no guarantee if or when the message will arrive, but there is also the least amount of protocol overhead for sending information. It's used for streaming media sometimes, or for periodic status messages, where an occasional message isn't important, or for increasing effective data transfer rates on reliable networks.
lithgow
2016-11-08 05:09:59 UTC
connectionless n low overhead UDP would not have connection organisation, connection termination, errors administration, bypass administration, congestion administration. UDP would not get any feedback from server. as a result no sequence and acknowledgments. UDP is an unreliable uncomplicated protocol. actual i'm uncertain approximately low overhead, if that's mcq type question you are able to go with low overhead


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...