one of our server bugged down and i have to transfer the domain to another server, the domain acts as a ns to my other domains
here's my setup (running bind) (sample.net is only an example)
named.conf entry
Code:
zone "sample.net" in {
type master;
file "master/db.sample.net";
allow-transfer {
207.182.240.18;
};
allow-query {
any;
};
};
db.sample.net
Code:
$TTL 3600
sample.net. IN SOA ns1.sample.net. hostmaster.sample.net. (
2007081600 ; serial
10800 ; refresh
3600 ; retry
432000 ; expire
3600 ; default_ttl
)
sample.net. IN NS ns1.sample.net.
sample.net. IN NS ns2.sample.net.
sample.net. IN A 72.3.145.193
ns1.sample.net. IN A 72.3.145.193
ns2.sample.net. IN A 207.182.240.19
www.sample.net. IN CNAME sample.net.
mail.sample.net. IN A 72.3.145.193
sample.net. IN MX 10 mail.sample.net.
i just copied that config from another domain that is hosted on the same server, the other domain is working fine but this one isnt