I newly configured bind9 on my ubuntu server and set allow-query
to { any; }
as I want my DNS server to be accessible for anywhere. However, I am now facing DOS attack using peacecorps.gov
domain with different IP address. Getting DNS request every seconds. How to mitigate this issue? Is there a way to block DNS lookup for particular website?
My bind9 option configuration
options {
directory "/var/cache/bind";
forwarders {
8.8.8.8;
8.8.4.4;
};
dnssec-validation auto;
listen-on { any; };
listen-on-v6 { any; };
allow-query { any; };
allow-recursion { any; };
version "Forbidden";
};