• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

DNS Recursive Lookups

T

timtrott

Guest
I ran a check at DNSreport.com on my server and it came back with this:

One or more of your nameservers reports that it is an open DNS server. This usually means that anyone in the world can query it for domains (that) it is not authoritative for (it is possible that the DNS server advertises that it does recursive lookups when it does not, but that shouldn't happen). This can cause an excessive load on your DNS server. Also, it is strongly discouraged to have a DNS server be both authoritative for your domain and be recursive (even if it is not open), due to the potential for cache poisoning (with no recursion, there is no cache, and it is impossible to poison it). Also, the bad guys could use your DNS server as part of an attack, by forging their IP address.

Is this something that can be corrected in a config file somewhere or is it something built into the Plesk configuration?
 
Hi,

Yesterday I received an email from GoDaddy.com saying that my dns server was misconfigured regarding recursive dns which should be disabled. Well I did not enable it myself, so they must have.

When I run dnsreport.com, I get the same result you do.

Anyway they provided me with this link
http://help.godaddy.com/article.php?article_id=1194&topic_id=&&

Which explains how to disable recursive dns on a linux virtual dedicated server.

su -

sed -e "s/options *{/options {\nallow-recursion {localnets; };\n/" /etc/named.conf > /tmp/named.conf

cat /tmp/named.conf > /etc/named.conf

rm /tmp/named.conf

service named restart

I will do this tonight and post the result back after.
 
That looks like a good solution. I'll be interested to see your follow up report. Thanks for the response.
 
Well, When I got home, I received an email from GoDaddy.com telling me they turned off recursive dns query.

So I did not try there solution. I guess thats what they did but cannot confirm it.

I did a dnsreport to make sure and it is now OK. My dns server is not open anymore.

Well you can try it and let us know.
 
Back
Top