webdig
New Pleskian
- Server operating system version
- AlmaLinux 8.9 (Midnight Oncilla)
- Plesk version and microupdate number
- Version 18.0.58 Update #2
I have a question about the configuration of the Slave DNS Manager, I've searched a lot of information and I'm "lost" so to speak.
I have 3 plesk servers and 4 slaves, to which I want to connect these servers:
Server 001 - ns1, ns2, ns3, ns4
Server 002 - ns1, ns2, ns3, ns4
Server 003 - ns1, ns2, ns3, ns4
On the slaves I installed Bind as indicated in the various tutorials and they work fine with just one server, and the indicators in the Slave DNS Manager are always green.
If I try to add another server to the same bind, in /etc/bind/named.conf.options , I get errors in the Slave DNS Manager and if I try to synchronise the server with the slaves, it takes forever.
This is an example of the named.conf.options of ns1 with two servers, taking into account the IPs of the two servers - server 001: 11.22.3.44 and server 002: 11.22.3.45:
What could be wrong here?
Or is this not how the system works?
I have 3 plesk servers and 4 slaves, to which I want to connect these servers:
Server 001 - ns1, ns2, ns3, ns4
Server 002 - ns1, ns2, ns3, ns4
Server 003 - ns1, ns2, ns3, ns4
On the slaves I installed Bind as indicated in the various tutorials and they work fine with just one server, and the indicators in the Slave DNS Manager are always green.
If I try to add another server to the same bind, in /etc/bind/named.conf.options , I get errors in the Slave DNS Manager and if I try to synchronise the server with the slaves, it takes forever.
This is an example of the named.conf.options of ns1 with two servers, taking into account the IPs of the two servers - server 001: 11.22.3.44 and server 002: 11.22.3.45:
Code:
version "anonymous";
dnssec-validation auto;
listen-on-v6 { any; };
allow-new-zones yes;
};
// server 001
key "rndc-key-11.22.3.44" {
algorithm hmac-md5;
secret "ZmViMzdjMmE2MTkyMzM3Njc4Y2EyYQ==";
};
controls {
inet * port 953 allow { 11.22.3.44; 127.0.0.1; } keys { "rndc-key-11.22.3.44"; };
};
// server 002
key "rndc-key-11.22.3.45" {
algorithm hmac-md5;
secret "ZmViMzdjMmE2MTkyMzM3Njc4Y2EyYQ==";
};
controls {
inet * port 953 allow { 11.22.3.45; 127.0.0.1; } keys { "rndc-key-11.22.3.45"; };
};
What could be wrong here?
Or is this not how the system works?