DNS problem with single domain

invops

Verified User
Joined
May 31, 2006
Messages
9
I'm having a very strange problem. As of about 12:30 pm today, DNS for one of the domains on my server stopped working.

Thankfully, it's only affecting one of my domains instead of my clients, but it's a domain I do a fair amount of testing on, so it's incredibly annoying. And it's one I'm planning to put into production in the next month or so. And, to top it off, the .net version of the domain works, which is just a domain pointer to the failing .com...

I've tried restarting named (and apache, DA, and anything else I could think of), and I've manually checked both the named.conf and /var/named/domain.db files, and they both look clear. And, of course, I've checked the registrar to make sure it's still got the right nameservers. Nevertheless, a ping returns 'Unknown host' and dnsreport.com says:

Your NS records at your nameservers are:

None of your nameservers returned your NS records; they could be down
or unreachable, or could all be lame nameservers

What should I do from here to troubleshoot this? Thanks in advance for your help.
 
What is the domain that is having problems? Have you checked to make sure that the domain has not expired?
 
[root@lws1 ~]# locate fast-xs.com.db
/var/named/chroot/var/named/fast-xs.com.db
/var/named/fast-xs.com.db.rpmsave
/var/named/fast-xs.com.db
[root@lws1 ~]#


you might check for the *.db files to be in the right place.
 
I haven't upgraded bind, no. But there is a domain.tdl.db file in /var/named.

It's not anywhere else, but neither is any of the other domains on the server, which are all working.
 
I have the same problem. DA doesn't write the files in named.conf is that normal.

I have a domain name, and it's working, but a subdomain account doesn't work. any idea???

thx
 
eConcept-Web said:
I have the same problem. DA doesn't write the files in named.conf is that normal.

I have a domain name, and it's working, but a subdomain account doesn't work. any idea???

thx

All /etc/named.conf should have is something like this for each domain:
zone "foobar.com" { type master; file "/var/named/foobar.com.db"; };

Well, it should have a lot of other things, but on a per-domain basis, it should only have a reference to the zone file. Any subdomains would be in the zone file itself.

Is your domain in your named.conf? And if so, is the subdomain in the /var/named/foobar.com.db file?
 
Subdomains don't get their own .db files. They are entries within the actual zone files.

So, if you're looking to add a subdomain, you don't add a subdomain.domain.com.db file. You add a new entry into the domain.com.db file.

Or, better yet, rather than doing it manually, use DA's interface to manage your zone files.
 
Back
Top