I have bind running to serve requests to my private network, and I'm getting
the following lines in my logs every 30 minutes:

Dec 13 15:04:22 erwin named[78]: fopen() of 192.168.100.rev.dumptmp failed:
+Permission denied
Dec 13 15:04:22 erwin named[78]: zone dump for '100.168.192.in-addr.arpa'
+failed, rescheduling

What do they mean, and how do I either stop it, or let named do what it
wants?

Here's what named.conf looks like - I was trying to have dhcpd update the
zones at one point, but I dropped that idea since I can't get it to work.

erwin:~$ cat /etc/namedb/named.conf
options {
        directory "/etc/namedb";
zone "." {
        type hint;
        file "named.root";
};
zone "0.0.127.IN-ADDR.ARPA" {
        type master;
        file "localhost.rev";

zone "number6.loop.bpa.nu" {
        type master;
        file "number6.loop.bpa.nu.hosts";
        allow-query {
                127.0.0.1/32; 192.168.100.0/24;
                };
        allow-transfer {
                127.0.0.1/32; 192.168.100.0/24;
                };
        allow-update {
                127.0.0.1/32; 192.168.100/24;
                 };
        };

zone "100.168.192.in-addr.arpa" {
        type master;
        file "192.168.100.rev";
        allow-query {
                127.0.0.1/32; 192.168.100.0/24;
                };
        allow-transfer {
                127.0.0.1/32; 192.168.100.0/24;
                };
        allow-update {
                127.0.0.1/32; 192.168.100/24;
                 };
        };

erwin:~$ uname -a
FreeBSD erwin.number6.loop.bpa.nu 4.7-STABLE FreeBSD 4.7-STABLE #2: Sat Dec
7 09:55:15 EST 2002
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/ERWIN  alpha

cheers,
Rob

--   "Teaching should be such that what is offered is perceived
as a valuable gift and not as a hard duty." - Albert Einstein
This is quote 76 of 1254.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message

Reply via email to