Thursday, July 12, 2018

Why does DNS use UDP and not TCP?

        DNS is an application layer protocol. All application layer protocols use one of the two transport layer protocols, UDP and TCP. TCP is reliable and UDP is not reliable. DNS is supposed to be reliable, but it uses UDP, why?

            There are following interesting facts about TCP and UDP on transport layer that justify the above.
1) UDP is much faster. TCP is slow as it requires 3 way handshake. The load on DNS servers is       also an important factor. DNS servers (since they use UDP) don’t have keep connections.
2) DNS requests are generally very small and fit well within UDP segments.
2) UDP is not reliable, but reliability can added on application layer. An application can use UDP      and can be reliable by using timeout and resend at application layer.

No comments:

Post a Comment

TCP Connection Termination

             In  TCP 3-way Handshake Process  we studied that how connection establish between client and server in Transmission Control P...