Skip to content

Incorrect DNS record on R53 pointing to my server

0

I noticed from my web server log that its IP address is coming up in an unrelated DNS record under an R53 nameserver, for a subdomain of an unrelated website. This has also been the case for nearly a day so I don’t think this is a TTL issue. (My original website is resolved to the same IP address with a different DNS provider, which is still functioning as intended afaik.)

That website itself is a Cloudflare 1001 so I’m running into a bit of a dead end there. Do I need to contact with R53 directly to resolve this? I’m not revealing the exact site name and addresses for now but can do so if necessary.

asked 10 months ago94 views
2 Answers
0

This can happen, as from time to time, customers may set a resource record in a Route53 hosted zone (or any other DNS service for that matter) that points to an IP that belongs to AWS (or another provider). Later on that IP may become used by resources that are assigned to you, and customers may neglect to remove that resource record from their hosted zone, or other DNS service.

Since you have verified that this is coming from a Route53 hosted zone, you don't however provide enough detail to verify this from my side, you would need to reach out to AWS Support and give them the domains, your IP and so on, and they can take it further.

If you are not getting excessive unwanted traffic from this DNS resource record, you can do a layer-7 block on your web-server as well - and just have it send a 403 or a 503 response to requests that contain the host-header of the unwanted DNS resource record name.

AWS
EXPERT
answered 10 months ago
  • Hi, I am unable to open a support case under my current plan. Is there any chance you can verify this for me? The subdomain in question is http://vicom-data.loomsystems.com/, which resolves to 132.145.145.12, an Oracle Cloud IP address on which my own website is deployed. I’ve currently set up my server so that the incorrect subdomain will 301 to a webpage under my site, and I have full access to that server so that I can make further changes to prove my ownership if necessary.

0

What you're describing is unusual, as AWS Route 53 static IPs are dedicated to your account and should not be assigned to websites you don't own. There are a few possible explanations for what you're observing:

  1. DNS Misconfiguration: The owner of the other domain may have incorrectly entered your IP address in their DNS records. This could be a simple typo or mistake in their Route 53 configuration.

  2. Shared IP Address: If you're using a service that shares IP addresses across multiple customers (like some shared hosting providers), it's possible that the other domain is legitimately configured to use the same IP address.

  3. Server Configuration: Your web server might be configured to respond to requests for multiple domain names. Check your web server configuration to see if it's set up to handle requests for domains you don't recognize.

  4. DNS Propagation: While you mentioned it's been nearly a day, some DNS changes can take up to 48 hours to fully propagate globally.

If you're concerned about this situation, you have a few options:

  • Configure your web server to only respond to domains you own
  • Contact the owner of the other domain if possible
  • If you believe there's an actual issue with Route 53's configuration, you can contact AWS Support

Since you mentioned the other site shows a Cloudflare error, it's possible they're in the process of changing their configuration, which might resolve itself soon.
Sources
My Lightsail static IP is also assigned to another website which I don't own | AWS re:Post
I changed DNS settings, but they haven't taken effect - Amazon Route 53
DNS resolution error | AWS re:Post

answered 10 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.