bind

资料

版本信息

http://www.isc.org/software/bind/versions

Response Rate Limiting (RRL)

BIND 添加了 ddos 防护模块:

主要是Response Rate Limiting (RRL),每秒种响应同一个源IP的相同查询的最大次数

Debian : 安装bind9,配置允许本地递归查询

apt-get install bind9 dnsutils

编辑/etc/bind/named.conf.options,在

options{

};

内添加

allow-recursion {

127.0.0.1;

};

如果提示 rndc: connect failed: 127.0.0.1#953: connection refused

rndc-confgen > /etc/bind/rndc.conf

测试bind

named -g

重启bind

/etc/init.d/bind9 restart