BIND 9 间歇性缓慢

BIND 9 间歇性缓慢

我正在运行多个 Bind 服务器 (v9.10.4) 来为我的用户提供 DNS 服务。间歇性地(大约每 15 分钟 30 秒)所有递归请求都会失败并超时。所有服务器上的 CPU 和内存都在正常范围内,并且服务器上没有记录任何错误。有人有追踪 Bind 性能问题的好技巧吗?

我的问题与以下描述的问题类似BIND/DNSMASQ 查询挂在 ubuntu 服务器 14.04.1 上但那里的解决方案对我没有帮助。

编辑 2017-08-29:

这是我编辑的named.conf文件,如果有帮助的话。最后一行包含的文件slave.conf只是一个包含一堆区域定义的文件。

acl "trusted" {
    ** redacted **
};

options {
        directory "/var/bind";
        pid-file "/run/named/named.pid";

        allow-query { trusted; };
        allow-query-cache { trusted; };
        allow-recursion { trusted; };
        allow-transfer { none; };
        allow-update { none; };

        dnssec-enable yes;
        dnssec-validation auto;
};

include "/etc/bind/rndc.key";
controls {
        inet 127.0.0.1 port 953 allow { 127.0.0.1/32; ::1/128; } keys { "rndc-key"; };
};

zone "." in {
        type hint;
        file "/var/bind/named.cache";
};

zone "localhost" IN {
        type master;
        file "pri/localhost.zone";
        notify no;
};

include "/etc/bind/slave.conf";

相关内容