Alfredo Ferrari wrote:
> How do I set up a secondairy dns server under BIND 8 if I already have a
> working primairy ???
zone "example.com" {
type slave;
file "{pick a filename}";
masters {
x.x.x.x; // address of master
y.y.y.y; // address of another slave, if you want
redundancy
z.z.z.z; // more slaves, if you want
};
};
- Kevin