CA 17 - Write a blog on "How a request originates from cllient and reaches the server ?"
FLOW OF SEARCHING FOR IP ADDRESS:
USER(request) ---> DNS query initiation ---> Subresolver(local machine), Internal[DHCP,Cache] --->
Root (.org,.com,.in) ---> TLD(Top Level Domain) ---> SLD(Secondary Level Domain) --->
Subdomain ---> IP
For example : www.Youtube.com is the website address to be searched
1.The Url request from client moves to the DNs
2.DNS request for the Ip address
3.Subreslover searches for the ip address in the cache if yes it gives the ip to DNS else it asks for the root
4. The root knows the TLD and request to it and TLD request it to the SLD
5.If the ip address situated in the TLD OR SLD it completes the request and gives to the User or else move to the subdomain
6.Where the subdomain moves to the DNS server where it contains the ip address
7.The IP address get stored in the cache and moves to the url
Comments
Post a Comment