Hi all,
Mình có cài đặt 1 con DNS Server và config theo cấu hình (file named.conf) như bên dưới.
Mình có thắc mắc là với config này thì DNS Server của mình có thực hiện chức năng Caching DNS hay không ?
Làm sao thế nào (lệnh nào) để mình có thể biết được tình trạng đang caching nếu có ?
Code:
options {
directory "/var/named";
// version statement - inhibited for security
// (avoids hacking any known weaknesses)
version "not currently available";
// dung DNS cua Google va FPT
forwarders {8.8.8.8; 210.245.0.131;};
forward only;
// disables all zone transfer requests
allow-transfer{"none";};
// Closed DNS - permits only local IPs to issue queries
// remove if an Open DNS required to support all users
// or add additional IP ranges
// in this case either allow-query or allow-recursion can be used
allow-query {10.68.68.0/24;};
};
// log to /var/log/example.log all events from
// info UP in severity (no debug)
// defaults to use 3 files in rotation
// BIND 8.x logging MUST COME FIRST in this file
// BIND 9.x parses the whole file before using the log
// failure messages up to this point are in (syslog)
// typically /var/log/messages
//logging{
// channel example_log{
// file "/var/log/named/example.log" versions 3;
// severity info;
// print-severity yes;
// print-time yes;
// print-category yes;
// };
// category default{
// example_log;
// };
};
// required local host domain
zone "localhost" in{
type master;
file "pri.localhost";
allow-update{none;};
};
// localhost reverse map
zone "0.0.127.in-addr.arpa" in{
type master;
file "localhost.rev";
allow-update{none;};
};