• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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