Solved DNS MX record setup

I have register test.com.tw with 200.200.200.1, and below is NS and MX record:
Code:
Name Server: ns2.test.com.tw
Name Server: gate2.test.com.tw
MX     Server: mail2.test.com.tw
MX's A record is 200.200.200.2

If I register a domain abc.com and also set NS record just like above.
may I also set mail2.test.com.tw as abc.com MX server?
If it does ,how to do ?
If not ,why?
 
To expand on that, all records for a domain must be served by the authoritative server for the domain and you can't mix records between different zones. This means that you have to have one zone for test.com.tw and another separate one for abc.com. Both zones can be served by the same instance of BIND (or NSD or PowerDNS etc if desired) though.
 
Thanks all suggestion , I using two separate zone :
Code:
@  MX  0  mail2.test.com.tw.
@  MX  0  mail2.abc.com.
Both MX indicate to same ip address , that means both zone are in same server
 
Back
Top