ldrl

How the web works


DNS
HTTP How do browsers work? What is DNS and how does it work?

What happens when you type an URL in the browser address bar

  1. Request url in browser
  2. Check local cache for IP address
  3. Check your recursive DNS server for IP address
  4. Query root server to find authoritative DNS server
  5. Authoritative DNS server advises the IP address for the website
  6. Request passes through a web application firewall
  7. Request passes through a load balancer
  8. Connect to webserver on port 80 or 443
  9. Web server receives the GET request
  10. Web application talks to database
  11. Browser renders the HTML into a viewable website

How browsers work