Quote:
Originally Posted by uxbod Please post the following details Code: cat /etc/hosts
cat /etc/resolv.conf
dig yourdomain mx
dig yourdomain any
host `hostname` <- note backticks and not single quotes |
/etc/hosts
127.0.0.1 localhost.localdomain localhost
67.207.144.137 mail.myserver.com mail
/etc/resolv.conf
nameserver 208.78.97.155
nameserver 208.75.87.250
dig myserver.com mx
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 19760
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 3
;; QUESTION SECTION:
;myserver.com. IN MX
;; ANSWER SECTION:
myserver.com. 3600 IN MX 0 mail.myserver.com.
;; AUTHORITY SECTION:
myserver.com. 3079 IN NS ns39.domaincontrol.com.
myserver.com. 3079 IN NS ns40.domaincontrol.com.
;; ADDITIONAL SECTION:
mail.myserver.com. 3600 IN A 67.207.144.137
ns39.domaincontrol.com. 3040 IN A 216.69.185.20
ns40.domaincontrol.com. 3040 IN A 208.109.255.20
;; Query time: 28 msec
;; SERVER: 208.78.97.155#53(208.78.97.155)
;; WHEN: Sat Apr 17 12:30:45 2010
;; MSG SIZE rcvd: 158
dig myserver.com any
; <<>> DiG 9.4.2-P2.1 <<>> myserver.com any
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 8824
;; flags: qr rd ra; QUERY: 1, ANSWER: 4, AUTHORITY: 2, ADDITIONAL: 3
;; QUESTION SECTION:
;myserver.com. IN ANY
;; ANSWER SECTION:
myserver.com. 3488 IN MX 0 mail.myserver.com.
myserver.com. 2967 IN A 208.78.96.146
myserver.com. 2967 IN NS ns39.domaincontrol.com.
myserver.com. 2967 IN NS ns40.domaincontrol.com.
;; AUTHORITY SECTION:
myserver.com. 2967 IN NS ns40.domaincontrol.com.
myserver.com. 2967 IN NS ns39.domaincontrol.com.
;; ADDITIONAL SECTION:
mail.myserver.com. 3488 IN A 67.207.144.137
ns39.domaincontrol.com. 2928 IN A 216.69.185.20
ns40.domaincontrol.com. 2928 IN A 208.109.255.20
;; Query time: 4 msec
;; SERVER: 208.78.97.155#53(208.78.97.155)
;; WHEN: Sat Apr 17 12:32:37 2010
;; MSG SIZE rcvd: 202
host `hostname`
myserver.com has address 208.78.96.146
myserver.com mail is handled by 0 mail.myserver.com.
(By the way, using backticks did not work. I had to use single or no quotes). Using backticks just gives me the parameter list as if I typed in something wrong.
Thanks for the continued help.
Tom