• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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