The domain I'm having issues with is rossmasters.com. Here's what happens when I attempt to resolve the root domain and a subdomain:

C:\Users\Ross>nslookup rossmasters.com
Server:  UnKnown
Address:  192.168.0.1

Name:    rossmasters.com

C:\Users\Ross>nslookup www.rossmasters.com
Server:  UnKnown
Address:  192.168.0.1

Non-authoritative answer:
Name:    www.rossmasters.com
Address:  178.79.185.207

My DNS rules are:

* A 178.79.185.207
www A 178.79.185.207

I'm not especially experienced with this but I use identical rules on another domain and they work fine. I can also nslookup another domain (not set as a DNS rule) and get the same result as www.

Is there anything I need to add in order to get rossmasters.com to resolve to the same IP or is this an issue with my registrar (who handle DNS records for both domains)?

link|improve this question

25% accept rate
feedback

1 Answer

up vote 5 down vote accepted

Try:

@ A 178.79.185.207

Your * covers every subdomain of the root, but not the root itself.

What's your DNS server, by the way? If it was bind, you'd need an IN in there..

link|improve this answer
So @ handles requests to the root part? I don't actually host my own DNS, it's hosted by my domain registrar (although I'm now considering it so I can learn more about this). – Ross Sep 14 '11 at 18:40
1  
@ is an alias for the zone. Your zone is the top level of your domain so when you put @ it reference the rossmasters.com zone. – Sai Sep 14 '11 at 22:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.