• 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 zone transfers allowed networks

T

trix@

Guest
When migrating BIND zone files into Plesk it does not pick up the IP address/mask value we have set in Plesk to allow networks "to get a copy of DNS zone."

Is there a command line option to add an allowed network to the Zone Transfer tab under DNS Settings? We need to automate this using a script as we have several thousand DNS BIND files to import.

Thanks.
 
We worked around this by using an SQL query:

insert into misc (param, val) VALUES ('DNS_Allow_Transfer1', '1.2.3.4/24');

The "1" after Transfer1 can be changed to add other zones, e.g. DNS_Allow_Transfer2
 
Back
Top