No subject


Tue Apr 2 00:56:56 UTC 2013


timed out.
i have set this as a primary dns server with only forward resolution
and not reverse resolution.
  
Initially in the named.conf , i had not specified the forwarders, but
since nothing else was working i have given the forwarders inside
option..I tried using www.dnsreport.com to check if the dns is
working.This is what i get..=>

                              <=====>
NS FAIL NS A timeout occurred getting the NS records from your
nameservers! None of your nameservers responded fast enough. They are
probably down or unreachable. I can't continue since your nameservers
aren't responding. .
                              <=====>

My named.conf is as follows =>

// generated by named-bootconf.pl

options {
	   directory "/var/named";
	/*
	 * If there is a firewall between you and nameservers you want
	 * to talk to, you might need to uncomment the query-source
	 * directive below.  Previous versions of BIND always asked
	 * questions using port 53, but BIND 8.1 uses an unprivileged
	 * port by default.
	 */
	// query-source address * port 53;
	forwarders{
		209.116.241.10;
		216.99.255.31;
		216.99.225.30;
	};
};


zone "." IN {
	type hint;
	file "named.ca";
};

zone "polychip.net"  {
	type master;
	file "polychip.net.zone";
//	allow-update { none; };
};

//zone "1.168.192.in-addr.arpa"  {
//	type master;
//	file "192.168.1.zone";
//	allow-update { none; };
//};

//zone "localhost"  {
//	type master;
//	file "localhost.zone";
//	allow-update { none; };
//};

//zone "0.0.127.in-addr.arpa"  {
//	type master;
//	file "named.local";
//	allow-update { none; };
//};

include "/etc/rndc.key";

And my zone files are 
polychip.net.zone=>


$TTL	86400
@ 	IN	 SOA	polychip.net.	administrator.polychip.net. (
				2003112013	; serial 
				28800		; refresh
				14400		; retry
				3600000		; expire
				86400 )		; minimum

 			IN NS		ns1.polychip.net.
			IN NS		ns2.polychip.net.
www			IN A		192.168.1.249
ns1			IN A		192.168.1.249
ns2			IN A		192.168.1.249

;EOF


--Can some one please help me? Thanks..Nisha


More information about the bind-users mailing list