1827594 Members
2793 Online
109965 Solutions
New Discussion

Re: DNS sync problem

 
SOLVED
Go to solution
ANDREA_6
Frequent Advisor

DNS sync problem

Hello,
i configured two dns, a master and a slave on an hpux 11.23 ia 64.

Thay works correctly but syncronization take effect only if i restart named on each servers.

/////////////////////
NAMED.CONF OF SLAVE:
////////////////////
#
# type domain source file
#

options {
directory "/etc/named.data";
allow-query {any;};
allow-notify {10.178.6.68;};
allow-transfer {any;};
};

zone "0.0.127.IN-ADDR.ARPA" {
type master;
file "db.127.0.0";
};

zone "ipnet.omnitel.it" {
type slave;
file "db.ipnet";
masters {10.178.6.68;};
};

zone "mi.vas.omnitel.it" {
type slave;
file "db.mi";
masters {10.178.6.68;};
};

zone "10.IN-ADDR.ARPA" {
type slave;
file "db.10";
masters {10.178.6.68;};
};

zone "172.IN-ADDR.ARPA" {
type slave;
file "db.172";
masters {10.178.6.68;};
};

zone "83.IN-ADDR.ARPA" {
type slave;
file "db.83";
masters {10.178.6.68;};
};

zone "." {
type hint;
file "db.cache";
};

///////////////////////
NAMED.CONF of MASTER:
//////////////////////
#
# type domain source file
#

options {
directory "/etc/named.data";
};

zone "0.0.127.IN-ADDR.ARPA" {
type master;
file "db.127.0.0";
};

zone "ipnet.omnitel.it" {
type master;
file "db.ipnet";
};

zone "10.IN-ADDR.ARPA" {
type master;
file "db.10";
};

zone "172.IN-ADDR.ARPA" {
type master;
file "db.172";
};

zone "83.IN-ADDR.ARPA" {
type master;
file "db.83";
};

zone "." {
type hint;
file "db.cache";
};
zone "mi.vas.omnitel.it" {
type master;
file "db.mi";
};

Is there some parameter to add to solve?
Pleas help me.
Best regards,Andrea.
2 REPLIES 2
Safarali
Valued Contributor
Solution

Re: DNS sync problem

Hi Andera
Your problem looks like IP issue
to resolve this issue you have to configure one additional IP for your slave server and put that ip address on allow transfer option instead of any
Please update me the status of the result

Regards
Safar
ANDREA_6
Frequent Advisor

Re: DNS sync problem

Thank's a lot!!!
Changing this parameter it works fine!
Best regards,Andrea.