Nameservers A Records Missing for .ORG .INFO and .US

TTT_Travis

Verified User
Joined
Mar 10, 2010
Messages
10
Hi recently (about a month ago) we have noticed a few domains not resolving right. The only ones that have problem are .info .us and .org -- Probably more extensions too but those are the only non .com/.net extensions I host.

Today I noticed that all of my .com and .net domains resolve fine and have no errors on intodns.com

Here is the error I get when I try a .org .us or .info domain


http://www.intodns.com/FEEDINGCHILDRENSTEWART.ORG


I only have 1 .us, 1 .org and 1 .us domain but I assume it would do it on any TLD extensions besides .com and .net All 25+ .com work and my 2 .net domains work fine.

The domains are setup identical to a normal .com domain on my server and in directadmin - I'm not entirely sure if this is even related to Directadmin at all.

Some visitors are unable to resolve the problem domains sometimes (I think it depends on their ISPs DNS or something?)

If anybody is good at DNS and can figure this out it would be much appreciated!! :D
 
ERROR: Some of your DNS servers do not have A records at all. I could not find any A records for the following DNS servers:
ns1.ts-technology.net
ns2.ts-technology.net

this is much clear, in domain ts-technology.net add ns1 A IP and ns2 A IP for solve the issue
 
Thanks for the reply.
My other sites .com and .net work fine on intodns for example:

http://www.intodns.com/joomaroo.com

I did add the NS1. and NS2 A records but it didn't seem to fix my other sites.

Here is a picture of my DNS configuration for ts-technology.net



and my bind config file ts-technology.net.db

Code:
$TTL 14400
@       IN      SOA     ns1.ts-technology.net.      hostmaster.ts-technology.net. (
                                                2010032901
                                                14400
                                                3600
                                                1209600
                                                86400 )

ns1.ts-technology.net.	14400	IN	NS	216.245.197.34
ns2.ts-technology.net.	14400	IN	NS	216.245.197.36
ns3.ts-technology.net.	14400	IN	NS	67.209.93.86
ts-technology.net.	14400	IN	NS	ns1.ts-technology.net.
ts-technology.net.	14400	IN	NS	ns2.ts-technology.net.

ftp	14400	IN	A	216.245.197.34
localhost	14400	IN	A	127.0.0.1
mail	14400	IN	A	216.245.197.34
ns1	14400	IN	A	216.245.197.34
ns2	14400	IN	A	216.245.197.36
pop	14400	IN	A	216.245.197.34
smtp	14400	IN	A	216.245.197.34
ts-technology.net.	14400	IN	A	216.245.197.34
www	14400	IN	A	216.245.197.34

ts-technology.net.	14400	IN	MX	10 mail



ts-technology.net.	14400	IN	TXT	"v=spf1 a mx ip4:216.245.197.34 ~all"

not sure what hostmaster.ts-technology.net is but this seems right?
 
ns1.ts-technology.net. 14400 IN NS 216.245.197.34
ns2.ts-technology.net. 14400 IN NS 216.245.197.36
ns3.ts-technology.net. 14400 IN NS 67.209.93.86

not sure those are necessary.. btw, can you show me the domain.db for the domain having errors?

ive tryed several time

ping ns1.ts-technology.net
ping ns2.ts-technology.net

but seems they dont resolve correctly...

thanks
 
Not only those three records are not necessary, they are causing the problem.

That config is literally replying this: "Hi I'm 216.245.197.34, wanna know about ns1.ts-technology.net? it's 216.245.197.34, but wait... ask 216.245.197.34, he will tell you". And that's an infinite loop.

Remove them.
 
Back
Top