On Wed, 27 Apr 2005 00:18:02 GMT, Baho Utot <baho-(E-Mail Removed)> wrote:
| I have bind setup to cache lookups from the internet and also as a master
| for my internal lan.
|
| When I do a dig from the machine bind is running on it fails while a dig
| from a machine on my lan works?
| I think its from the config file but I just don't see the problem.
|
| And do I have any thing else messed up?
|
| Here is the /etc/named.conf
|
| acl "lan" { 192.168.0.0/24; };
Try adding 127.0.0.0/8 to this acl.
| options {
| directory "/etc/namedb";
| pid-file "/etc/namedb/named.pid";
| statistics-file "/etc/namedb/named.stats";
| allow-query { lan; };
| allow-recursion { lan; };
|};
| key "rndc-key" {
| algorithm hmac-md5;
| secret "root-me";
|};
| controls {
| inet 127.0.0.1 port 953
| allow { 127.0.0.1; } keys { "rndc-key"; };
|};
| view "internal" {
| match-clients { localhost; lan; };
| zone "." {
| type hint;
| file "db.cache";
| };
| zone "0.0.127.in-addr.arpa" {
| type master;
| file "db.127.0.0";
| allow-update { none; };
| };
| zone "kumusta.org" {
| type master;
| notify no;
| file "db.kumusta.org";
| allow-query { any; };
|
| };
| zone "0.168.192.in-addr.arpa" {
| type master;
| file "db.192.168.0";
| allow-update { none; };
| };
|};
|
| Thanks
|
--
Reverend Paul Colquhoun, ULC.
http://andor.dropbear.id.au/~paulcol
Asking for technical help in newsgroups? Read this first:
http://catb.org/~esr/faqs/smart-questions.html#intro