当前位置:  技术问答>linux和unix

mail MX 怎么写DNS记录

    来源: 互联网  发布时间:2014-11-19

    本文导语:  服务器是XXXX.com 现在邮件系统装到另外一台机上了如  Bj.XXXX.com 但信箱还是要 evicn@XXXX.com 怎么写DNS? 还有,如果我的DNS全部写在一台机上(包括几个域名) 那么我每个域名都有不同的ip 那么怎么写DNS使到这几个域...

服务器是XXXX.com

现在邮件系统装到另外一台机上了如  Bj.XXXX.com

但信箱还是要 evicn@XXXX.com

怎么写DNS?


还有,如果我的DNS全部写在一台机上(包括几个域名) 那么我每个域名都有不同的ip

那么怎么写DNS使到这几个域名都有自己的@XXXX.COM??


|
看看 Linux HowTo文件, (http://www.linuxdoc.org)
下面為一例子作參考. 

http://www.tldp.org/LDP/LG/issue45/pollman/dns_mail.html

In last month's article we set up dns as a name server for network. Sendmail, and most other mail transport programs, use dns to decide where to send the mail, but we need to modify it a bit.  The name-to-ip file has to have a MX line for each computer, which essentially says: for this computer, use this other computer for storing mail.

The file from last month looks like this. Note, the *** are not part of the file:
**************************************************************
@  IN SOA master.kulai.org. jpollman.kulai.org. (
   1;
   10800;
   3600;
   604800;
   86400 );

        IN NS   master.kulai.org.
master  IN A    192.168.124.10
 

mail    IN A 192.168.124.10
www     IN A 192.168.124.10
news    IN A 192.168.124.10

localhost    IN A    127.0.0.1

fserver IN A  192.168.124.11
jc      IN A  192.168.124.1
phillip IN A  192.168.124.20

**************************************************************

We change this to add in the MX lines. Note: the Bold items are explained below and are not part of the format of the file. It now looks like this:

**************************************************************
@  IN SOA master.kulai.org. jpollman.kulai.org. (
   2
   10800
   3600
   604800
   86400 )

            IN NS   master
            IN MX 10 master
master      IN A    192.168.124.10
master      IN MX 10 master

mail        IN A 192.168.124.10
www         IN A 192.168.124.10
news        IN A 192.168.124.10

localhost   IN A    127.0.0.1

fserver     IN A  192.168.124.11
fserver     IN MX 10  master

jc          IN A  192.168.124.1
jc          IN MX 10 master

phillip     IN A 192.168.124.20
phillip     IN MX 10 master
**************************************************************
Now each computer's (master, fserver, jc, phillip) email server is master.kulai.org (actually it is called a "mail exchanger", but since we have only one computer server mail, it functions as a email server.) We also have a line with no name that points to master.kulai.org as the email server - this is for the domain: kulai.org. You noticed there is a "10" in each line.  The number, 10 in this case, is a relative value, and is used when you have multiple mail exchangers - something we are not covering here. Note, failure to put the number in will cause an error in named. Now, restart named, and check /var/log/messages for any errors.

You have to put a line in for each computer: kulai.org by itself will not work.

|
IN MX 10 bj.XXXX.com.
(最后一个点不要省了)

每个域名建一个zone文件

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • java命名空间java.awt枚举desktop.action的类成员方法: mail定义及介绍
  • 为什么我的Swing中没有mail包呢?即javax.mail.*时无mail呢?
  • java命名空间java.awt类desktop的类成员方法: mail定义及介绍
  • import javax.mail.* 跟import javax.mail.internet.MimeMessage;import javax.mail.internet.InternetAddress;有啥区别,详情请点击看里
  • mail命令如何使用,man帮助太烦了,我只需简单的使用,如发mail,收mail
  • 在哪里可以下载扩展包,javax.mail.*,javax.mail.internet.*!下来先得分!谢谢
  • ●●●遇到难题,请高手指点,lvs双mail,mai用户在一台mysql上,实现多台mail轮流工作●●
  • 程序运行几天后,会出现Segmentation fault, aborting. You have new mail in /var/spool/mail/root.我怎么查错?
  • question of mail about red hat
  • 如何查看E-mail?
  • mail 看信后把email 存到 ~/mbox, IMAP 客户没法看
  • linux如何用mail命令發郵件
  • 如何用mail命令接收邮件附件?
  • Linux中mail命令的问题
  • 请问用MAIL如何写信
  • telnet进去显示you have new mail
  • unix下mail命令无法执行
  • zimbra 搭建mail服务器的问题
  • 关于mail服务中ssl的问题
  • 在linux系统下无法收到mail问题请教
  • 邮件客户端 Claws Mail


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3