ich habe in meiner kleinen Farm 3 Nameserver im Einsatz. (1 Master, 2 Slaves)
Ich arbeite nun seit gut 4 Jahren mit Bind und DNS allgemein und immer wieder kommt mir eine Frage wodrauf ich noch keine Antwort gefunden habe:
Brauche ich die Zones Files 0, 127 und 255 ?
ich meine folgende Configs:
Code: Alles auswählen
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";
};
Code: Alles auswählen
db.255:
;
; BIND reverse data file for broadcast zone
;
$TTL 604800
@ IN SOA localhost. root.localhost. (
1 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS localhost.
db.127
;
; BIND reverse data file for local loopback interface
;
$TTL 604800
@ IN SOA localhost. root.localhost. (
1 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS localhost.
1.0.0 IN PTR localhost.
Es sind reine Internet Nameserver die nur die ganzen Domains verwalten ohne ein lokales Netz dahinter. Selbst die Webserver greifen auf andere Nameserver zu.
Danke für Eure Antwort.
Viele Grüße,
Andre