View Single Post
  #3 (permalink)  
Old 07-06-2009, 10:44 AM
SinisterMoose SinisterMoose is offline
Junior Member
 
Posts: 5
Default

From hosts:
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
72.xxx.xx.154 mail.domain.com mail
:1 localhost6.localdomain6 localhost6

----
From resolv.conf
nameserver 72.xx.xxx.50
nameserver 72.xx.xxx.51
domain ns1.mydnsserversdomain.com

----
from dig domain.com any
; <<>> DiG 9.3.4-P1 <<>> domain.com any
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 19070
;; flags: qr aa rd; QUERY: 1, ANSWER: 5, AUTHORITY: 0, ADDITIONAL: 3

;; QUESTION SECTION:
;domain.com. IN ANY

;; ANSWER SECTION:
domain.com. 86400 IN MX 10 mail.domain.com.
domain.com. 86400 IN SOA ns1.mydnsserversdomain.com.
domain.com. 86400 IN NS ns2.mydnsserversdomain.com.
domain.com. 86400 IN NS ns1.mydnsserversdomain.com.
domain.com. 86400 IN A 72.xxx.xx.154

;; ADDITIONAL SECTION:
mail.domain.com. 86400 IN A 72.xxx.xx.154
ns1.mydnsserversdomain.com. 86400 IN A 72.xx.xxx.50
ns2.mydnsserversdomain.com. 86400 IN A 72.xx.xxx.51

;; Query time: 1 msec
;; SERVER: 72.xx.xxx.50#53(72.xx.xxx.50)
;; WHEN: Mon Jul 6 13:35:38 2009
;; MSG SIZE rcvd: 234

----

from dig domain.com mx
; <<>> DiG 9.3.4-P1 <<>> domain.com mx
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 32972
;; flags: qr aa rd; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 3

;; QUESTION SECTION:
;domain.com. IN MX

;; ANSWER SECTION:
domain.com. 86400 IN MX 10 mail.domain.com.

;; AUTHORITY SECTION:
domain.com. 86400 IN NS ns2.mydnsserversdomain.com.
domain.com. 86400 IN NS ns1.mydnsserversdomain.com.

;; ADDITIONAL SECTION:
mail.domain.com. 86400 IN A 72.xxx.xx.154
ns1.mydnsserversdomain.com. 86400 IN A 72.xx.xxx.50
ns2.mydnsserversdomain.com. 86400 IN A 72.xx.xxx.51

;; Query time: 1 msec
;; SERVER: 72.xx.xxx.50#53(72.xx.xxx.50)
;; WHEN: Mon Jul 6 13:39:59 2009
;; MSG SIZE rcvd: 149

----
from host `hostname`

domain.com has address 72.xxx.xx.154
domain.com mail is handled by 10 mail.domain.com.
Reply With Quote