Thank You Ahead of Time
Can someone point me in the right direction. I have one IP address and would
like to host multiple domain names. I am not quite clear on how to handle
named.conf or reverse. A guess:
named.conf:
zone "domain1.com" {
type master;
file "domain1.db";
zone "domain2.com" {Quote:};
type master;
file "domain2.db";
zone "10.168.192.in-addr.arpa {Quote:};
type master;
file "192.168.10.db";
domain1.db AND domain2.db replacing all domain1's w/ a domain2Quote:};
domain1.com IN SOA etc...
IN NS ns.domain1.com.
IN MX 100 border.domain1.com.
IN A 192.168.10.1
ns IN A 192.168.10.1
border IN A 192.168.10.1
mail IN CNAME border.domain1.com.
www IN CNAME border.domain1.com.
I am not sure what the reverse would be since the address is the same but
the host name is different. Dou you just pick one hostname and go? would
this not let a remote machine think it got a succesful lookup?