I have domain domain_name.it (domain_name = my actual domain) bought from/registered with Route 53, and using Ruote 53 to configure DNS records for that domain. I want to get my email setup for the domain with Google Suit's gmail. I add MX DNS record to Hosted Zone on AWS Route 53. and my AWS Route 53's Hosted Zone for that domain has 3 records: 1 NS, 1 SOA and 1 MX like below (noting that I have not had a host for that domain so I don't have A or AAAA records):
domain_name.it MX Simple - 1 ASPMX.L.GOOGLE.COM
5 ALT1.ASPMX.L.GOOGLE.COM
5 ALT2.ASPMX.L.GOOGLE.COM
10 ALT3.ASPMX.L.GOOGLE.COM
10 ALT4.ASPMX.L.GOOGLE.COM
15 mfmziuvfyybzvdf2kw4mfiuz6jbgpgdtu2nhmzrl73lgqpj7jvjq.mx-verification.google.com
domain_name.it NS Simple - ns-1634.awsdns-12.co.uk.
ns-43.awsdns-05.com.
ns-973.awsdns-57.net.
ns-1173.awsdns-18.org.
domain_name.it SOA Simple - ns-1634.awsdns-12.co.uk. awsdns-hostmaster.amazon.com. 1 7200 900 1209600 86400
I have performed Test record on that hosted zone and the dns queries work just fine. However, when I request to resolve that domain from my local laptop:
nslookup -query=MX domain_name.it nslookup -type=NS domain_name.it
or try to lookup the domain name from any domain resolution website, they always response that domain_name.it not found.
My guess is that the DNS records were not propagated to DNS resolvers on the internet. But I have been waiting for more than 48 hours, but the queries are still unsuccessful.
My question are:
- Did I configured the DNS record correctly on AWS's Route 53?
- Do I need something else for the DNS records to be propagated and the DNS queries to that domain to work?
Thank you, Nhan.