Code: Select all
Jun 23 15:33:37 srv07 /usr/sbin/named[832]: starting BIND 9.1.3 -u named
Jun 23 15:33:37 srv07 /usr/sbin/named[832]: using 1 CPU
Jun 23 15:33:37 srv07 /usr/sbin/named[834]: loading configuration from '/etc/named.conf'
Jun 23 15:33:37 srv07 /usr/sbin/named[834]: no IPv6 interfaces found
Jun 23 15:33:37 srv07 /usr/sbin/named[834]: listening on IPv4 interface lo, 127.0.0.1#53
Jun 23 15:33:37 srv07 /usr/sbin/named[834]: listening on IPv4 interface eth0, 217.160.xxx.xx#53
Jun 23 15:33:37 srv07 /usr/sbin/named[834]: dns_zone_load: zone meine-domain.de/IN: loading master file var/named/meine-domain.de.zone: file not found
Jun 23 15:33:37 srv07 /usr/sbin/named[834]: runningDaher verstehe ich nicht, was mein Problem sein könnte.
Ich poste auch mal meine named.conf:
Code: Select all
# BIND 9 Konfigurationsdatei
# 30.12.2002
options {
        directory "/var/named";
       #forwarders { 195.20.224.234; 195.20.224.99; };
        forward first;
        listen-on port 53 { 127.0.0.1; 217.160.xxx.xx; };
       #listen-on-v6 { none; };
        allow-transfer { 195.20.224.97; 195.20.225.34; };
        allow-query { 127.0.0.1; 217.160.xxx.xx; };
        notify no;
        auth-nxdomain no;
        allow-recursion { 127.0.0.1; 217.160.xxx.xx; };
};
zone "localhost" in {
   type master;
   file "/var/named/localhost.zone";
};
zone "0.0.127.in-addr.arpa" in {
   type master;
   file "/var/named/127.0.0.zone";
};
zone "." in {
   type hint;
   file "/var/named/root.hint";
};
zone "meine-domain1.de" in {
   type master;
   file "/var/named/meine-domain1.de.zone";
   allow-query { any; };
};
zone "meine-domain2.de" in {
   type master;
   file "var/named/meine-domain2.de.zone";
   allow-query { any; };
};Code: Select all
$TTL 1W
@           IN      SOA     ns.meine-domain1.de.    root.meine-domain1.de. (
                                2003062302      ; serial
                                8H              ; refresh
                                2H              ; retry
                                1W              ; expiry
                                11h )           ; minimum
;
; Zone name server records
;
                IN      NS      ns
                IN      NS      ns.schlund.de.
;
; Zone mail exchange records
;
                IN      MX      10      mx
;
;  Zone records
;
                IN      A       217.160.xxx.xx
*              IN      A       217.160.xxx.xxCode: Select all
$TTL 1W
@           IN      SOA     ns.meine-domain1.de.    root.meine-domain2.de. (
                                2003062302      ; serial
                                8H              ; refresh
                                2H              ; retry
                                1W              ; expiry
                                11h )           ; minimum
;
; Zone name server records
;
                IN      NS      ns
                IN      NS      ns.schlund.de.
;
; Zone mail exchange records
;
                IN      MX      10      mx
;
;  Zone records
;
                IN      A       217.160.xxx.xx
*              IN      A       217.160.xxx.xxCode: Select all
$TTL 1W
@ IN SOA ns.meine-domain1.de.   root.meine-domain1.de. (
2003062302 ; serial
8H ; refresh
2H ; retry
1W ; expiry
11h) ; minimum
IN NS ns
IN NS ns.schlund.de.
xx IN PTR meine-domain1.de.Ich bin mir nicht sicher ob das alles jetzt richtig ist. :?