ubuntuusers.de

bind fehlermeldung: unexpected end of input

Status: Ungelöst | Ubuntu-Version: Server 12.04 (Precise Pangolin)
Antworten |

riedochs

Anmeldungsdatum:
3. Juli 2008

Beiträge: 102

Hallo,

gezwungenermaßen musste ich einen neuen Server installieren und habe die Konfiguration des alten Servers (Debian 4) angepasst. Jetzt spammt mir bind das syslog mit folgender Nachricht voll:

Dec 18 15:33:26 server named[20310]: error (unexpected end of input) resolving './NS/IN': 192.168.0.254#53

192.168.0.254 ist meine FritzBox. Hat jemand eine Idee woran das liegen könnte?

/etc/bind/named.conf:

//==================================================
key "DHCP_UPDATER" {
        algorithm hmac-md5;
        secret "uELLwWMcBGLDZZf+qnbbEw==";
};
//==================================================
ACL internal { 127/8; };
ACL localnet { 192.168.0/24; };
//==================================================
options {
        directory "/etc/bind";
        dump-file "named_dump.db";
        pid-file "/var/run/named/named.pid";
        recursion yes;
        dialup yes;
        notify no;
        auth-nxdomain yes;
        forward first;
        forwarders {
                192.168.0.254;
        };
        allow-recursion { localnet; internal; };
        transfers-in 2;
        transfers-per-ns 2;
        transfers-out 2;
        max-transfer-time-in 20;
        transfer-format one-answer;
};
//==================================================
zone "." {
        type hint;
        file "root.hints";
};
//==================================================
zone "localhost." {
        type master;
        file "localhost.zone";
        allow-update { none; };
        allow-query { localnet; internal; };
        notify no;
};
zone "0.0.127.in-addr.arpa." {
        type master;
        file "127.zone";
        allow-update { none; };
        allow-query { localnet; internal; };
        notify no;
};
//==================================================
zone "faber.private." {
        type master;
        file "faber.private.zone";
        allow-update { key DHCP_UPDATER; };
        allow-query { localnet; internal; };
        notify no;
};
zone "0.168.192.in-addr.arpa." {
        type master;
        file "192.168.0.zone";
        allow-update { key DHCP_UPDATER; };
        allow-query { localnet; internal; };
        notify no;
};
//==================================================

Damals hat mir ein Freund geholfen, von daher kann ich leider vielleicht nicht alle Fragen beantworten.

Antworten |