DNS bind9:看不到缓存

DNS bind9:看不到缓存

我正在使用带有两个不同虚拟机的种子 Ubuntu 12.04:第一个用于运行 BIND9 的 DNS 服务器,第二个模拟用户/客户端。

在用户机器中,我将主 DNS 地址配置为 DNS 服务器机器的地址。

嗯,这是文件的上下文named.conf.options(位置是/etc/bind/):

options {
    directory "/var/cache/bind";
    // If there is a firewall between you and nameservers you want
    // to talk to, you may need to fix the firewall to allow multiple
    // ports to talk.  See http://www.kb.cert.org/vuls/id/800113

    // If your ISP provided one or more IP addresses for stable 
    // nameservers, you probably want to use them as forwarders.  
    // Uncomment the following block, and insert the addresses replacing 
    // the all-0's placeholder.

    // forwarders {
    //  0.0.0.0;
    // };

    //========================================================================
    // If BIND logs error messages about the root key being expired,
    // you will need to update your keys.  See https://www.isc.org/bind-keys
    //========================================================================
    //dnssec-validation auto;
    dnssec-enable no;

    auth-nxdomain no;    # conform to RFC1035
    listen-on-v6 { any; };
    dump-file   "/var/cache/bind/dump.db";
    query-source port 33333;
};

在用户中我尝试输入一些具有不同主机名(、等等)的不同地址google.comcnn.com查看缓存文件中的影响。

问题:无论我做什么,缓存文件都是空的。当然我使用 dump 命令:

sudo rndc dumpdb -cache

但文件仍然/var/cache/bind/dump.db是空的。谢谢!

答案1

创建的文件名为/var/cache/bind/named_dump.db

相关内容