[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

bind Fehlermeldung



Hallo,

in meiner /var/log/syslog erscheint regelmäßig die Fehlermeldung:

Apr 9 17:30:02 gustav named[353]: sysquery: findns error (NXDOMAIN) on gustav.duck.duck?

Woran könnte das liegen?

Danke!

Gerhard

Hier die Configs:

--- named.conf -----------------------------------------------------

options {
        directory "/var/cache/bind";

        // 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 and later use an unprivileged
        // port by default.

        query-source address * port 53;

        // If your ISP provided one or more IP addresses for stable
        // nameservers, you probably want to use them as forwarders.
// Uncomment the following block, and insert the addresses replacing
        // the all-0's placeholder.

        forwarders {
        //192.168.1.254;
192.168.1.254; 194.25.2.130; 195.50.149.33; 195.50.140.6; 62.208.45.1; 62.208.45.2; 194.77.97.10; 145.253.2.11; 145.253.2.75;
        };
};

// reduce log verbosity on issues outside our control
logging {
        category lame-servers { null; };
        category cname { null; };
};

// prime the server with knowledge of the root servers
zone "." {
        type hint;
        file "/etc/bind/db.root";
};

// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912

zone "localhost" {
        type master;
        file "/etc/bind/db.local";
};

zone "127.in-addr.arpa" {
        type master;
        file "/etc/bind/db.127";
};

zone "0.in-addr.arpa" {
        type master;
        file "/etc/bind/db.0";
};

zone "255.in-addr.arpa" {
        type master;
        file "/etc/bind/db.255";
};

// add entries for other zones below here

zone "duck" {
        type master;
        notify no;
        file "/etc/bind/db.duck";
};

zone "1.168.192.in-addr.arpa" {
        type master;
        file "/etc/bind/db.192.168.1";
};

zone "2.168.192.in-addr.arpa" {
        type master;
        file "/etc/bind/db.192.168.2";
};

zone "3.168.192.in-addr.arpa" {
        type master;
        file "/etc/bind/db.192.168.3";
};

--- db.duck -----------------------------------------------------------------
$TTL 86400
@       IN      SOA     duck. root.duck. (
                        7
                        8H
                        2H
                        1W
                        1D )

                                IN      NS      gustav.duck

localhost               IN      A       127.0.0.1
dagobert.duck.          IN      A       192.168.1.1
donald.duck.            IN      A       192.168.1.2
daisy.duck.             IN      A       192.168.1.3
oma.duck.               IN      A       192.168.1.4
gustavalt.duck.         IN      A       192.168.1.5
pcfelix.duck.           IN      A       192.168.2.2
maximilian.duck.        IN      A       192.168.3.3
panzerknacker.duck.     IN      A       192.168.3.2
goofy.duck.             IN      A       192.168.1.12
fli4l.duck.             IN      A       192.168.1.20
daniel.duck.            IN      A       192.168.1.100
gustav.duck.            IN      A       192.168.1.200
vdr.duck.               IN      A       192.168.1.201
print1.duck.            IN      A       192.168.1.202
backup1.duck.           IN      A       192.168.1.203
micky.duck.             IN      A       192.168.1.254

--- db.192.168.1 (exemplarisch) ------------------------------------------

$ttl 38400
1.168.192.in-addr.arpa. IN      SOA     gustav. gustav.duck. (
                        2001122900
                        10800
                        3600
                        604800
                        38400 )

                        IN      NS      gustav.duck.

1                       IN      PTR     dagobert.duck.
2                       IN      PTR     donald.duck.
3                       IN      PTR     daisy.duck.
4                       IN      PTR     oma.duck.
5                       IN      PTR     gustavalt.duck.
6                       IN      PTR     pcfelix.duck.
12                      IN      PTR     goofy.duck.
20                      IN      PTR     fli4l.duck.
100                     IN      PTR     daniel.duck.
200                     IN      PTR     gustav.duck.
201                     IN      PTR     vdr.duck.
202                     IN      PTR     print1.duck.
203                     IN      PTR     backup1.duck.
254                     IN      PTR     micky.duck.




Reply to: