
		removido
		
		(usa Nenhuma)
		
		Enviado em 07/03/2008 - 15:36h 
		Olá Pessoal
Estou tentando configurar um servidor DNS secundário, fiz a configuração conforme entendi que deveria ser feita.
Mas quando vou iniciar o named ocorre o seguinte erro:
""""""""""""""""
[root@caps conf]# /etc/init.d/named start
Iniciando named:
Erro na configuração do named:
zone localhost/IN: loading master file /var/named/chroot/conf/db.localhost: file not found
_default/localhost/IN: file not found
zone 0.0.127.in-addr.arpa/IN: loading master file /var/named/chroot/conf/db.127.0.0: file not found
_default/0.0.127.in-addr.arpa/IN: file not found
                                                           [FALHOU]
"""""""""""""""
O que pode ser?
Meu named.conf está da seguinte maneira.
options {
        directory       "/var/named";
        pid-file        "/var/run/named/named.pid";
        statistics-file "/var/run/named/named.stats";
        dump-file       "/var/run/named/named.db";
        transfer-format many-answers;
        # hide our "real" version number
        version         "[secured]";
};
# Use with the following in named.conf, adjusting the allow list as needed:
key "rndc-key" {
       algorithm hmac-md5;
       secret "iwXanRarQX/WaFA3s9kwGw==";
};
controls {
       inet 127.0.0.1 port 953
               allow { 127.0.0.1; } keys { "rndc-key"; };
};
# End of named.conf
# The root nameservers
zone "." {
        type   hint;
        file   "/var/named/chroot/conf/db.rootcache";
};
# localhost - forward zone
zone    "localhost" {
        type    master;
        file   "/var/named/chroot/conf/db.localhost";
        notify  no;
};
# localhost - inverse zone
zone    "0.0.127.in-addr.arpa" {
        type   master;
        file   "/var/named/chroot/conf/db.127.0.0";
        notify no;
};
POR FAVOR, ALGUÉM PODERIA ME AJUDAR?