slave bind configuration problem
i have just configure a slave bind name server but something is not working correct.This is my slave named.conf file
----------------------------------------
options {
directory "/var/named";
query-source address * port 53;
};
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "." IN {
type hint;
file "/var/named/named.ca";
};
zone "localdomain" {
type master;
file "/var/named/localhost.zone";
};
zone "domain.com" IN {
type slave;
masters {
172.27.25.54;
};
};
zone "0.0.127.in-addr.arpa" IN {
type master;
file "zone/127.0.0";
allow-update { none; };
};
zone "25.27.172.in-addr.arpa" IN {
type slave;
masters {
172.27.25.54;
};
};
this is suppose to download the domain.com and the prt files from the primary domain right? dunno if i need to put the parameter for the filename?