• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

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