DNS help please.....

Scott Overfield 7239 soverfield@fnac-usa.com
Mon, 4 Dec 2000 18:22:13 -0500


i am able to resolve internet host names but none from my LAN.........

  named related error messages from the syslog......
> 
> /etc/named.conf:36: cannot redefine options
> /etc/named.conf:51: cannot redefine zone '.' class IN
> /etc/named.conf:56: cannot redefine zone '0.0.127.in-addr.arpa' class IN
> /etc/named.conf:65: syntax error near <end of file>
> zone "geeks.fnac-usa.com" (file geeks.fnac-usa.com.db) :no NS RRs 
found 
> at zone top
> master zone "geeks.fnac-usa.com' (IN) rejected due to errors (serial 
> 20001128)


..........geeks.fnac-usa.com.db.............


$TTL 43200
@	IN	SOA ns.geeks.fnac-usa.com. soverfield.fnac-usa.com (
					20001128	;serial
					300	; refresh - 5 Minutes
					60	; Retry - 1 minute
					1209600	; Expire - 2 weeks
					43200)	; Minimum - 12 Hours
	








...........and my named.conf............






// 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;
};

// 
// a caching only nameserver config
// 
zone "." IN {
	type hint;
	file "named.ca";
};

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

zone "0.0.127.in-addr.arpa" IN {
	type master;
	file "named.local";
	allow-update { none; };
};
// 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;
};

// 
// a caching only nameserver config
// 
zone "." {
	type hint;
	file "named.ca";
};

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

zone "geeks.fnac-usa.com" {
	type master;
	file "geeks.fnac-usa.com.db";
 
};