• 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 Recursion: allow specific IP range

Status
Not open for further replies.

tedocweb

New Pleskian
For obvious reasons I have set DNS Recursion to Localnets only.

However, I need to allow my network (different from the network of the Plesk server) to have recursion available.
Plesk Panel does not allow me to add my IP or IP-range.
How can I fix this permanently?
 
You can manually edit named.conf
Making modifications to the non domain-specific part of the configuration is mostly safe from unexpected modification by Plesk.

Extract:
Code:
acl "trusted" {     111.222.333.444/24;     444.333.222.0/24;     localhost;     localnets; };  
options { allow-recursion { trusted; }; };

But obviously you cannot 100% rely on this never being modified. It is still very unlikely to be modified unless you change the recursion setting within Plesk itself.
 
I have just manually added my network IP-range to the allow-recursion section and restarted named: success.

Indeed, after altering the DNS Recursion settings in Plesk Panel, my setting is gone.
So no touching that button anymore.

Thanks.
Fixed my issue.
 
Status
Not open for further replies.
Back
Top