• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

Resolved Use Slave DNS Manager extension for more than a server

SalvadorS

Regular Pleskian
Hello,

I use Slave DNS Manager extension without any problem in one server. But if I want to use a slave dns server extension for 2 different plesk servers to work with a slave DNS server I have a problem.

If I edit the file /etc/bind/named.conf.options in the DNS slave server, if I add only one server:

//pleskserver1

key "rndc-key-IP" {
algorithm hmac-md5;
secret "xxx";
};

controls {
inet * port 953 allow { IP; 127.0.0.1; } keys { "rndc-key-IP"; };
};

All worked well. But if I add a second server:

//pleskserver1

key "rndc-key-IP" {
algorithm hmac-md5;
secret "xxx";
};

controls {
inet * port 953 allow { IP; 127.0.0.1; } keys { "rndc-key-IP"; };
};

//pleskserver2

key "rndc-key-IP" {
algorithm hmac-md5;
secret "xxx";
};

controls {
inet * port 953 allow { IP; 127.0.0.1; } keys { "rndc-key-IP"; };
};

For the first one plesk server all worked well but for the second I have this error:

rndc: recv failed: connection reset

So, How i can modify /etc/bind/named.conf.options file to combine multiple plesk servers in the DNS slave server?
 
Last edited:
If anyone use the Slave DNS manager extension in more than one plesk server to have one slave DNS server for all the servers please let me know how can I configure this.

Thank you in advance
 
Hi Salvador,

This is where you may have the issue

controls {
inet * port 953 allow { IP; 127.0.0.1; } keys { "rndc-key-IP"; };
};

You should have only one entry in the conf file that covers both plesk servers like so.

controls

{inet * port 953 allow { server1IP; server2IP; 127.0.0.1; } keys { "rndc-key-server1IP"; "rndc-key-server2IP"; };

};
 
Back
Top