[AWS SOA] Route 53
Route 53 Hosted Zones
When you register a domain name using Route 53, a hosted zone will be created fro your domain name.
SOA (Start of Authority) Record
It contains
- Domian Information: provides information about a domain
- Creator: The route 53 name server that created the SOA record.
- Contact Details: The email address of the administrator responsible for the domain
- Settgins: Refresh, retry, and TTL
Name Server (NS) Record
Used to identify the DNS server names that will be authoritative for your domain and resolve your domain name
For example you try to reach http://ilovecloud.com
It first ask from TOP LEVEL DOMAIN about .com, which response it is from aws (ns.awsdns.com)
Then get A record from awsdns which is an ip address.
A (Address) Record
The "A" in A record stands for "Address".
It is used to translate the website name to an IPv4 address
For example:
http://www.acloud.guru might resolve to
http://123.10.80.0
CNAME Record
Used to resolve one domain name to another.
For example you might have a mobile webiste with the domain name http://m.acloud.guru. You also want to the name http://mobile.acloud.guru to resolve the same address.
Limitation: You cannot create a CNAME record for the zone apex, acloud.guru - it must always be a sub-domain, like mobile.acloud.guru.
Alias Record
- AWS Soecific: can map to ELB, CLoudFront, S3 or another record in the same Route 53 hosted zone
- Similar to a CNAME reocrd: map one domain name to another
- AWS Preferred: If possible, use an alias record over a CNAME
Route 53 Resolver
Location based is Geolocation;
Distances between users and server is Geoproximity;
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
2019-12-22 [Algorithm] 617. Merge Two Binary Trees
2019-12-22 [Algorithm] 905. Sort Array By Parity
2018-12-22 [Algorithms] Divide and Recurse Over an Array with Merge Sort in JavaScript
2017-12-22 [Recompose] Create Stream Behaviors to Push Props in React Components with mapPropsStream
2017-12-22 [Recompose] Stream Props to React Children with RxJS
2017-12-22 [Recompose] Merge RxJS Button Event Streams to Build a React Counter Component
2017-12-22 [Recompose] Handle React Events as Streams with RxJS and Recompose