Bind9 failed to start

Alle weiteren Dienste, die nicht in die drei oberen Foren gehören.
Antworten
slothnkoala
Beiträge: 1
Registriert: 30.07.2014 11:44:01

Bind9 failed to start

Beitrag von slothnkoala » 30.07.2014 11:59:36

Hallo ich habe gerade versucht einen DNS-Server für meinen Raspi zu erstellen doch nach der Konfiguration konnte dieser leider nicht mehr gestartet werden.

meine Raspi ip: 192.168.178.9
meine router ip: 192.168.178.1

db.home.lan

Code: Alles auswählen

; Use semicolons to add comments.
    ; Host-to-IP Address DNS Pointers for home.lan
    ; Note: The extra "." at the end of the domain names are important.
    ; The following parameters set when DNS records will expire, etc.
    ; Importantly, the serial number must always be iterated upward to prevent
    ; undesirable consequences. A good format to use is YYYYMMDDII where
    ; the II index is in case you make more that one change in the same day.
    home.lan. IN SOA raspberry.home.lan. hostmaster.home.lan. (
        2013120101 ; serial
        8H ; refresh
        4H ; retry
        4W ; expire
        1D ; minimum
    )
    ; NS indicates that raspberry is the name server on home.lan
    ; MX indicates that raspberry is (also) the mail server on home.lan
    home.lan. IN NS raspberry.home.lan.
    home.lan. IN MX 10 raspberry.home.lan.
    ; Set the address for localhost.home.lan
    localhost    IN A 127.0.0.1
    ; Set the hostnames in alphabetical order
    raspberry    IN A 192.168.178.9
    router       IN A 192.168.178.1
db.rev.178.168.192.in-addr.arpa

Code: Alles auswählen

; IP Address-to-Host DNS Pointers for the 192.168.178 subnet
    @ IN SOA raspberry.home.lan. hostmaster.home.lan. (
        2013120101 ; serial
        8H ; refresh
        4H ; retry
        4W ; expire
        1D ; minimum
    )
    ; define the authoritative name server
               IN NS raspberry.home.lan.
    ; our hosts, in numeric order
    1         IN PTR router.home.lan.
    9        IN PTR raspberry.home.lan.
named.conf.options

Code: Alles auswählen

forwarders {
    208.67.222.222;
    208.67.220.220;
     }
  dnssec-validation auto;
  auth-nxdomain no;  # conform to RFC1035
  listen-on-v6 { any; };
;
named.conf.local

Code: Alles auswählen

  zone "home.lan" IN {
        type master;
        file "/etc/bind/db.home.lan";
    };
    zone "178.168.192.in-addr.arpa" {
        type master;
        file "/etc/bind/db.rev.178.168.192.in-addr.arpa";
    };

a.jakob
Beiträge: 247
Registriert: 09.08.2004 21:41:16
Wohnort: Bendorf

Re: Bind9 failed to start

Beitrag von a.jakob » 01.08.2014 23:04:32

Moin....

wäre schön die fehlermeldung und die dazugehörigen log einträge zu sehen...

mfg

andre

Antworten