Guest User

Untitled

a guest
Jan 16th, 2019
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. 1. Each VPC has it's own DNS server. Each subnet also has it's DNS server
  2. 2. When you use VPC's DNS, it will first try to resolve the names, using the private hosted zones defined in Route53.
  3. If not found, it will using the public DNS for name resolution
  4. 3. Buying Name and Hosting Name are two different things.
  5. 4. How DNS works:
  6. There are dns servers for every domain.
  7. It will start from last entry to the first entry. So if I want to resolve www.coverfox.com. It will first ask .com servers for
  8. the entry corresponding to coverfox.com. In this case, it will find the godaddy server. Now godaddy has it's own nameservers
  9. which routes ip address based on the records defined.
  10. 4. Every time, I define a public hosted zone in Route53, aws will assign specific set of name servers for name resolution for that zone.
  11. 5. If I want to use the config define in route53 to be used by godaddy which is used for name-resolution, in godaddy's config
  12. page, I will replace godaddy's name server with the name servers that I got in the previous step. THIS IS HOW I AM ABLE TO CONNECT
  13. AWS TO ROUTE53.
  14.  
  15. MY WORK:
  16. 1. Create a Application Load Balancer which will route the the public requests to the relevant server. This server can be private
  17. 2. Manage certicates for the load balancer
  18. 3. Create a public hosted zone that will route the requests to the load balacer's ip
  19. 4. Create a private hosted zone that will route the requessts to the private ip
Add Comment
Please, Sign In to add comment