Доброго времени суток всем!
Возникла проблема с dns с пакетом bind, на операционной системе linux ubuntu server 8.0.4
Сам днс работает, зоны отдает, но при попытке добавить запись в зону выдаёт такую ошибку
sudo /etc/init.d/bind restart
* Stopping domain name service... bind rndc: connect failed: 127.0.0.1#953: timed out
[fail]
* Starting domain name service... bind [ OK ]и соответственно не добавляет запись в зону.
если сделать kill -9 id_процесса bind то он убивает процесс и при запуске bind тарует без проблем, но зону по прежнему не видет
конфиг named.conf
// This is the primary configuration file for the BIND DNS server named.
//
// Please read /usr/share/doc/bind9/README.Debian.gz for information on the
// structure of BIND configuration files in Debian, *BEFORE* you customize
// this configuration file.
//
// If you are just adding zones, please do that in /etc/bind/named.conf.local
include "/etc/bind/named.conf.options";
// prime the server with knowledge of the root servers
zone "." {
type hint;
file "/etc/bind/db.root";
};
// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912
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";
};
zone "moscow.1.com" {
type slave;
masters {
10.7.177.11;
};
file "/var/cache/bind/moscow.1.com.hosts";
};
zone "lan" {
type slave;
masters {
10.7.177.36;
};
file "/var/cache/bind/lan.db";
};
zone "177.7.10.in-addr.arpa" {
type slave;
masters {
10.7.177.11;
};
file "/var/cache/bind/10.7.177.rev";
};
key rndc-key {
algorithm hmac-md5;
secret "MtZiHJ4WkXjK4uQmFh3sA==";
};
controls {
inet 127.0.0.1 port 953 allow { 127.0.0.1; } keys { rndc-key; };
};
// domains start here
Include "/etc/bind/real.zones";
Телнет на localhost порт 953 не идёт, фаервола точно нет на этом компьтере, такое ощущение как будто rnds не запущенна, не знаю что делать уже, может кто встречался с такой проблемой.
Заранее спасибо всем!