Długo się nie odzywałem, ale te DNS-y robię w wolnych chwilach, a ostatnio mało ich było.
Zacząłem przeglądać sobie pliki konfiguracyjne na podstawowym. Nie ja to konfigurowałem, poprzedni administrator też nie, tak naprawdę nie wiadomo kto, co i dlaczego.
Kilka spraw, które mnie zaciekawiły i może tam właśnie coś jest namieszane.
named.conf
Kod: Zaznacz cały
include "/etc/bind/named.conf.options";
logging{
channel simple_log {
file "/var/log/named/bind.log" versions 3 size 50m;
severity debug;
print-time yes;
print-severity yes;
print-category yes;
};
category queries{
simple_log;
};
};
include "/etc/bind/rndc.key";
controls {
inet 127.0.0.1 allow { localhost; 10.88.56.12; } keys { rndc-key; };
};
// prime the server with knowledge of the root servers
zone "." {
type hint;
file "/etc/bind/db.root";
};
zone "s4a.aero" {
type slave;
masters { 10.88.44.34; };
file "/var/named/slaves/s4a.aero.corp";
allow-transfer { 10.88.56.17; };
notify yes;
};
zone "56.88.10.in-addr.arpa" {
type slave;
masters { 10.88.44.34; };
file "/var/named/slaves/56.88.10.in-addr.arpa";
allow-transfer { 10.88.56.17; };
notify yes;
};
zone "casses" {
type slave;
file "/var/named/slaves/casses.lan";
masters { 10.88.44.34; };
allow-transfer { 10.88.56.17; };
notify yes;
};
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";
};
named.conf.local
Kod: Zaznacz cały
zone "gdn" {
type master;
file "/etc/bind/db.gdn";
notify yes;
};
zone "1.168.192.in-addr.arpa" {
type master;
file "/etc/bind/192.rev";
};
#zone "56.88.10.in-addr.arpa" {
# type master;
# file "/etc/bind/10.rev";
#};
#zone "casses" {
# type master;
# file "/etc/bind/db.casses";
# notify yes;
#};
zone "239.31.172.in-addr.arpa" {
type master;
file "/etc/bind/172.rev";
};
zone "klm2.*****.aero" {
type master;
file "/etc/bind/klmsmart.soa";
};
W tym drugim pliku kilka rzeczy mnie zastanawia. Adresy wew
nętrzne mamy w tej chwili z puli 10.88.56.x, a ta strefa, z tego co widzę jest wyłączona. Nie wyłączone, z kolei są wpisy dotyczące 192.168.1.x (z tego co wiem, kiedyś z tego tu korzystano), tak samo 172.31.239.x. Może od wyjaśnienia tego zaczniemy i małymi krokami dojdziemy do tego co jest nie tak.
Przepraszam za takie pytania, ale nigdy wcześniej nie konfigurowałem DNS-ów i nie bardzo w tym się orientuję (ale to pewnie już zauważyliście).