Reputation: 77
I am attempting to point one of my company's subdomains directly to my server's IP address. I have created an A
record in my DNS, and told it to point to the IP address as follows:
Name: access.grupomudde.com.br
TTL: 14400
Class: IN
Type: A
Registry: 0.0.0.0 (my ip)
However, when I try to ping access.grupomudde.com.br
, it doesn't resolve to my IP address. It instead hits the hosting company's IP address.
What am I missing?
Update: As mentioned in the below answer - what I did was correct, it simply took time to propagate. I gave it a bit of time, and everything now resolves correctly.
Upvotes: 2
Views: 3752
Reputation: 6768
Assuming you set it up correctly - which it looks like you did, just make sure it's actually saved and takes effect. Sometimes certain providers take 24 hours to implement changes made in a control panel into the actual zone file. Beyond that there could be two things that would still prevent it from coming through.
On the DNS Cache your own computer caches DNS resolutions that it gets in addition to any intermediary nameservers. On Windows use ipconfig /flushdns
to clear it out. If you're on a Linux or Mac machine, you could check directly if it went through by using dig
to check at the nameserver directly. Use dig @200.98.246.51 access.grupomudde.com.br
Upvotes: 1