Post pisany w oparciu o Debiana 11.
Następnie otwieramy "/etc/bind/named.conf.options":
acl "trusted" {
ADRES_IP; # Serwer podstawowy
ADRES_IP; # Serwer zapasowy
};
options {
directory "/var/cache/bind";
recursion yes; # Pozwol na rekursywne zapytania.
allow-recursion { trusted; }; # Pozwol na rekursywne zapytania z listy zaufanych klientow.
allow-transfer { none; }; # Wylacz domyslny transfer strefy.
dnssec-validation auto;
auth-nxdomain no;
listen-on-v6 { any; };
forwarders {
8.8.8.8;
8.8.4.4;
};
};
Teraz "/etc/bind/named.conf.local":
zone "yolandi.pl" {
type master;
file "/etc/bind/db.yolandi.pl"; # Sciezka do pliku strefy
allow-transfer { ADRES_IP; }; # IP serwera zapasowego
};
Tworzymy "/etc/bind/zones/db.yolandi.pl":
$TTL 604800
@ IN SOA yolandi.pl. admin.yolandi.pl. (
2021051601 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
IN NS TWOJA_GLOWNA_DOMENA.
IN NS DOMENA_SERWERA_ZAPASOWEGO.
yolandi.pl. IN A ADRES_IP