Bind Issues After FC2

edwarner99 at yahoo.com edwarner99 at yahoo.com
Sun Jun 20 21:13:55 UTC 2004


Hi,

I decided to start a new thread as now, I'm getting
other errors. Everything worked under FC1. 
I had to change my directory to "/" from "/var/named"
It just would not work, gave me permission errors.

Now I'm getting "could not configure roots hints from
"named.ca" file not found.


Below is my named.conf file.

// generated by named-bootconf.pl

controls {
	inet 127.0.0.1 allow { localhost; } keys { rndckey;
};
};


// Define address range for the local domain.
acl lan {
	192.168.100/24;
	127.0.0.1;
};

options {
	directory "/";
	/*
	 * 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;

	// Only allow queries and listen from the local
domain.
	allow-query { lan; };
	allow-recursion { lan; };
	allow-transfer { lan; };
	listen-on {
		 127.0.0.0/24;
		 192.168.100.1;
	};

	// Use Bellsouth's DNS servers for finding external
addresses.
	forward only;
	forwarders {
		xxx.xxx.xxx.xxx;
	};
};

// Top Level domain name servers.
zone "." IN {
	type hint;
	file "named.ca";
};

// Localhost Zones
zone "localhost" IN {
	type master;
	file "localhost.zone";
	allow-update { lan; };
};

// Provide a reverse lookup for the loopback address
127.0.0.1
zone "0.0.127.in-addr.arpa" IN {
	type master;
	file "named.local";
	allow-update { lan; };
};

// Home network zone.
zone "mylan.lan" IN {
	type master;
	file "named.mylan";
	notify no;
	allow-update { lan; };
};

// Reverse lookup for the local domain.
zone "100.168.192.in-addr.arpa" {
	type master;
	file "named.mylan-rev";
	notify no;
	allow-update { lan; };
};


include "/etc/rndc.key";



		
__________________________________
Do you Yahoo!?
New and Improved Yahoo! Mail - Send 10MB messages!
http://promotions.yahoo.com/new_mail 





More information about the fedora-list mailing list