不知不觉

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

After you configure Amazon Route 53 to route your internet traffic to your resources, such as web servers or Amazon S3 buckets, here's what happens in just a few milliseconds when someone requests content for www.example.com:

[Conceptual graphic that shows how the Domain Name System and Route 53 route internet traffic to the resources for www.example.com.]

    1. A user opens a web browser, enters www.example.com in the address bar, and presses Enter.

    2. The request for www.example.com is routed to a DNS resolver, which is typically managed by the user's internet service provider (ISP), such as a cable internet provider, a DSL broadband provider, or a corporate network.

    3. The DNS resolver for the ISP forwards the request for www.example.com to a DNS root name server.

    4. The DNS resolver forwards the request for www.example.com again, this time to one of the TLD name servers for .com domains. The name server for .com domains responds to the request with the names of the four Route 53 name servers that are associated with the example.com domain.

      The DNS resolver caches (stores) the four Route 53 name servers. The next time someone browses to example.com, the resolver skips steps 3 and 4 because it already has the name servers for example.com. The name servers are typically cached for two days.

    5. The DNS resolver chooses a Route 53 name server and forwards the request for www.example.com to that name server.

    6. The Route 53 name server looks in the example.com hosted zone for the www.example.com record, gets the associated value, such as the IP address for a web server, 192.0.2.44, and returns the IP address to the DNS resolver.

    7. The DNS resolver finally has the IP address that the user needs. The resolver returns that value to the web browser. Note
      The DNS resolver also caches the IP address for example.com for an amount of time that you specify so that it can respond more quickly the next time someone browses to example.com. For more information, see time to live (TTL).

    8. The web browser sends a request for www.example.com to the IP address that it got from the DNS resolver. This is where your content is, for example, a web server running on an Amazon EC2 instance or an Amazon S3 bucket that's configured as a website endpoint.

    9. The web server or other resource at 192.0.2.44 returns the web page for www.example.com to the web browser, and the web browser displays the page.

 

Quote from:https://github.com/awsdocs/amazon-route53-docs/blob/master/doc_source/welcome-dns-service.md

posted on 2022-09-04 22:22  不觉不知  阅读(17)  评论(0编辑  收藏  举报