Error Webmin DNS Master to Slave

1 post / 0 new
#1 Thu, 11/10/2016 - 10:36
rocaflqu

Error Webmin DNS Master to Slave

Hi guys;

I have the next problem, i have two server Webmin Master/Slave (v 1.810) in cluster, when i create zone in Master example.. test also this appears in Slave, nice, but when select zone test in Slave show me the next message : Last transferred : Never -- and can't see register, server alias, nothing..

Master (10.0.0.68) -- zone test

https://s14.postimg.org/crncyr4b5/master.png

Slave (10.0.0.72) -- zone test

https://s17.postimg.org/hhve2kp4f/slave.png

Config--

Master -- named.conf

// // 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-v6 port 53 { ::1; }; directory "/var/named"; dump-file "/var/named/data/cache_dump.db"; statistics-file "/var/named/data/named_stats.txt"; memstatistics-file "/var/named/data/named_mem_stats.txt";

/* - If you are building an AUTHORITATIVE DNS server, do NOT enable recursion. - If you are building a RECURSIVE (caching) DNS server, you need to enable recursion. - If your recursive DNS server has a public IP address, you MUST enable access control to limit queries to your legitimate users. Failing to do so will cause your server to become part of large scale DNS amplification attacks. Implementing BCP38 within your network would greatly reduce such attack surface */

dnssec-enable yes; dnssec-validation yes;

/* Path to ISC DLV key */ bindkeys-file "/etc/named.iscdlv.key";

managed-keys-directory "/var/named/dynamic";

pid-file "/run/named/named.pid"; session-keyfile "/run/named/session.key"; also-notify { }; recursion no; allow-transfer { 10.0.0.72; 10.0.0.68; }; notify yes; listen-on { 10.0.0.68; }; forwarders { 10.0.0.72; };

};

logging { channel default_debug { file "data/named.run"; severity dynamic; }; };

include "/etc/named.rfc1912.zones"; include "/etc/named.root.key";

key rndc-key { algorithm hmac-md5; secret "ZHVLTgGGKdvuPDzU6vjlhQ=="; }; controls { inet 127.0.0.1 port 953 allow { 127.0.0.1; } keys { rndc-key; }; }; server 10.0.0.72 { }; trusted-keys { }; view "Red_Interna" { match-clients { 10.0.0.0/24; 10.0.0.72; }; allow-transfer { 10.0.0.72; }; zone "cybercenter.cl" { type master; file "/var/named/cybercenter.cl.Red_Interna.hosts"; notify yes; allow-transfer { 10.0.0.72; }; allow-query { any; }; }; allow-query { any; }; transfer-source 10.0.0.72; }; view "Red_Externa" { match-clients { 190.4.110.0/24; }; allow-transfer { 10.0.0.72; }; };

Slave --- named.conf

//

// 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 { 10.0.0.72; }; listen-on-v6 port 53 { ::1; }; directory "/var/named"; dump-file "/var/named/data/cache_dump.db"; statistics-file "/var/named/data/named_stats.txt"; memstatistics-file "/var/named/data/named_mem_stats.txt";

/* - If you are building an AUTHORITATIVE DNS server, do NOT enable recursion. - If you are building a RECURSIVE (caching) DNS server, you need to enable recursion. - If your recursive DNS server has a public IP address, you MUST enable access control to limit queries to your legitimate users. Failing to do so will cause your server to become part of large scale DNS amplification attacks. Implementing BCP38 within your network would greatly reduce such attack surface */

dnssec-enable yes; dnssec-validation yes;

/* Path to ISC DLV key */ bindkeys-file "/etc/named.iscdlv.key";

managed-keys-directory "/var/named/dynamic";

pid-file "/run/named/named.pid"; session-keyfile "/run/named/session.key"; also-notify { }; transfer-source 10.0.0.68; allow-query { any; }; forwarders { 10.0.0.68; }; listen-on { 10.0.0.68; 10.0.0.72; }; allow-transfer { 10.0.0.68; 10.0.0.72; };

};

logging { channel default_debug { file "data/named.run"; severity dynamic; }; };

include "/etc/named.rfc1912.zones"; include "/etc/named.root.key";

key rndc-key { algorithm hmac-md5; secret "1RFNnxrawzzlz8Atp6LP1Q=="; }; controls { inet 127.0.0.1 port 953 allow { 127.0.0.1; } keys { rndc-key; }; }; server 10.0.0.68 { };

zone "cybercenter.cl" { type slave; masters { 10.0.0.68; }; file "/var/named/slaves/cybercenter.cl.hosts"; allow-query { any; }; };

Please guys helpme is really urgent... Thanks guys :)