• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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