Allow transfer

rpr

Verified User
Joined
Oct 20, 2010
Messages
65
Hi,

I am hosting my first directadmin server and I want to sync all my zones to my providers his dns cluster.
The cluster is accepting transfers.

Where do I put my commands so that directadmin updates don't override it?
Code:
allow-transfer {1.2.3.4; 7.8.9.0;};
notify yes;
also-notify {1.2.3.4; 7.8.9.0;};
 
Hello,

We do not know anything about your provider, so you'd better consult with them.
I guess you understand it wrong.
I am just asking where to put the commands to transfer all domains because I have a named.conf which includes mutiple ohter named-options.conf, ...
I am just scared to pick the wrong config which gets overwritten by a directadmin update.
 
You may add options in named.conf, directadmin won't rewrite them. You did not specify your OS name so to find a correct path to the file run this as root:

Code:
/usr/local/directadmin/directadmin c | grep namedconfig | cut -d= -f2
 
If your running an CentOS server

Edit /etc/named.conf

At in the options{

notify yes;
also-notify {1.2.3.4; 7.8.9.0; };


and at this ACL under the closer };

acl common-allow-transfer {
1.2.3.4;
7.8.9.0;
};



This works to notify a PDNS server. (And maybe it works for you)
 
Back
Top