Problema com o canal de registro em log do DNS

0

Por favor me ajude ..!

Eu configurei meu servidor DNS com o canal de registro, mas ainda está gravando no arquivo / var / log / message.

options {

// Default zone file directory for this dns server
directory "/var/named";

// Who can perform queries against this dns server and get answers  (default: any)
allow-query { any; };

// Do we permit recursion for our internal hosts, and retrieve data from the cache for them? (default: no)
recursion yes;

listen-on { any; };

// Who can get entire zone files from this dns server (default : none)
allow-transfer {
127.0.0.1;
10.10.100.3;
};

// How many recursive clients does this dns support per second? (the default is 1000)
recursive-clients 100;

// Do we notify zone changes? Prevent DoD attacks (default: no)
notify yes;

// specifies which hosts are allowed to get answers from the cache (default: any)
allow-query-cache { any; };

// Does this server using two or more master servers? (default: yes)
multi-master yes;

// sets the maximum time (in seconds) for which the server will cache negative (NXDOMAIN) answers
max-ncache-ttl 300; //5min

// Hide version number (default: "")
version "";

// bombing sources add here (default: none)
blackhole { none; };
};

logging {
channel bindlog {
file "/var/log/querylog" versions 3 size 5m;
print-time yes;
print-category yes;
print-severity yes;
};
category xfer-out { bindlog;};
category xfer-in { bindlog;};
category security { bindlog;};
};

// we are the master server for gani.com
zone "gani.com" IN {
type master;
file "master/gani.com.frwd.db";

};

zone "100.10.10.in-addr.arpa" IN {
type master;
file "master/gani.com.rev.db";

};
    
por Ganesh-vrc 15.08.2016 / 18:04

1 resposta

0

/var/log/messages é normalmente gerenciado pelo daemon syslog, então é provável que sua ligação esteja configurada com o canal syslog padrão para o registro (consulte o "Manual de Referência do Administrador do BIND 9", seção 6.2.10.1). Em testes, mesmo com:

logging {
  category default { default_debug; };
  ...
};

Algumas das mensagens de inicialização do BIND ainda foram enviadas para o syslog (para BIND 9.10 via MacPorts no Mac OS X), embora eu não tenha certeza do que registra no syslog que você está vendo ou por que eles são um problema.

    
por 15.08.2016 / 21:46

Tags