kevinmamaqi
New Pleskian
I have two VPS running obsidian on ubuntu 20.04. I am using them as master DNS servers and running the slave dns manager extensions to point to a third server that has BIND9, being used as a slave. My setup is the following (named.conf) and server 1.1.1.1 works, but 2.2.2.2 doesn't. Am I missing something? Is this even possible?
Code:
key "rndc-key-1.1.1.1" {
algorithm hmac-md5;
secret "mysecret1";
};
key "rndc-key-2.2.2.2" {
algorithm hmac-md5;
secret "mysecret2";
};
controls {
inet * port 953 allow { 1.1.1.1; 2.2.2.2; 127.0.0.1; } keys { "rndc-key-1.1.1.1"; "rndc-key-2.2.2.2"; };
};
Last edited: