hello,
i have one directadmin server and powerdns server
but the directadmin server dont tranfers to the powerdns server
the named conf of the directadmin server:
	
	
	
		
and the powerdns acts as slave without firewall...
				
			i have one directadmin server and powerdns server
but the directadmin server dont tranfers to the powerdns server
the named conf of the directadmin server:
		Code:
	
	//
// named.conf
//
// Provided by Red Hat bind package to configure the ISC BIND named(8) DNS
// server as a caching only nameserver (as a localhost DNS resolver only).
//
// See /usr/share/doc/bind*/sample/ for example named configuration files.
//
options {
	//listen-on port 53 { 127.0.0.1; };
        //listen-on-v6 port 53 { ::1; };
        directory	"/var/named";
        allow-query     { localhost; };
        //recursion yes;
        allow-transfer {powerdns ip; };
        notify yes;
        also-notify { powerdns ip; };
//	dnssec-enable yes;
//	dnssec-validation yes;//
        /* Path to ISC DLV key */
        bindkeys-file "/etc/named.iscdlv.key";
        managed-keys-directory "/var/named/dynamic";
};
logging {
	channel default_debug {
                file "data/named.run";
                severity dynamic;
        };
};
	and the powerdns acts as slave without firewall...