- Newest
- Most votes
- Most comments
This can happen due to issues with the local DNS configuration, ISP-level DNS restrictions, or cache problems.
To resolve this issue without manually setting your DNS, ensure that your domain's DNS settings are correctly propagated in Route 53, and confirm that all required DNS records (like A or CNAME records) are properly configured and pointing to the load balancer.
You should also check for proper DNS propagation using online tools to ensure your DNS changes have fully propagated globally, and clearing the DNS cache on your local machine might help resolve any cached DNS issues.
If the issue persists, consider switching to a more reliable DNS provider (e.g., Cloudflare) for better resolution, but this would require configuring it at the network level, not just on the individual PC.
Hello.
Could there be a problem with the DNS server you were using before changing to 8.8.8.8?
Is it possible to perform name resolution using the "dig" command etc. using the originally used DNS server?
It seems like some program is trying to access the ALB, but can it be accessed normally from a browser or the "curl" command?
So it just stopped working again. The DNS server that I was setting before was on "Obtain DNS server address automatically" (I'm on a Windows machine). When I use "nslookup <my HTTPS endpoint>" in my command line, the IP address is not shown. As soon as I set the server DNS on my PC to 8.8.8.8, the nslookup command shows the IP address, and everything works fine.
What is going on here?
Relevant content
- asked 7 months ago
- asked 14 days ago
- asked a year ago
Thanks Giovanni. I had solved it. The issue was that I had set NS records for both my web site and Route 53 in my host site. So when I made HTTPS requests, the host didn't know which DNS to use, and so that's why sometimes it worked, and sometimes it didn't. So I moved all external NS records to Route 53, and only kept the Route 53 NS records in my host site. This seemed to solve the problem. Was a tricky problem to solve...