View Single Post
  #19 (permalink)  
Old 06-19-2009, 02:38 AM
ask2me007 ask2me007 is offline
Loyal Member
 
Posts: 96
Default

Quote:
Originally Posted by uxbod View Post
As Phoenix has said please post the following output again so we can check since changes have been made
Code:
cat /etc/hosts
cat /etc/resolv.conf
dig yourdomain mx
dig yourdomain any
host `hostname` <- note backticks and not single quotes


zimbra@pop:/root$ cat /etc/hosts
127.0.0.1 localhost.localdomain localhost
192.168.10.5 pop.domain.com pop
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts


zimbra@pop:/root$ cat /etc/resolv.conf
// replace example.com with your domain name, and 192.168.0.1 with the address of your new DNS server.
//search domain.com
nameserver 192.168.10.5

zimbra@pop:/root$ dig domain.com mx

; <<>> DiG 9.4.2 <<>> domain.com mx
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 51129
;; flags: qr rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 2, ADDITIONAL: 1

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

;; ANSWER SECTION:
domain.com. 1 IN MX 0 pop.domain.com.
domain.com. 1 IN MX 10 pop.domain.com.

;; AUTHORITY SECTION:
domain.com. 172028 IN NS ns2.cdit.org.
domain.com. 172028 IN NS ns1.cdit.org.

;; ADDITIONAL SECTION:
pop.domain.com. 1 IN A 59.93.43.183

;; Query time: 289 msec
;; SERVER: 192.168.10.5#53(192.168.10.5)
;; WHEN: Fri Jun 19 14:00:52 2009
;; MSG SIZE rcvd: 122



zimbra@pop:/root$ dig domain.com any

; <<>> DiG 9.4.2 <<>> domain.com any
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 6479
;; flags: qr rd ra; QUERY: 1, ANSWER: 7, AUTHORITY: 3, ADDITIONAL: 2

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

;; ANSWER SECTION:
domain.com. 1 IN SOA ns3.cdit.org. hostmaster.cdit.org. 2002121945 10800 3600 604800 1
domain.com. 1 IN A 200.00.00.83
domain.com. 1 IN MX 0 pop.domain.com.
domain.com. 1 IN MX 10 pop.domain.com.
domain.com. 1 IN NS ns2.cdit.org.
domain.com. 1 IN NS ns4.cdit.org.
domain.com. 1 IN NS ns3.cdit.org.

;; AUTHORITY SECTION:
domain.com. 1 IN NS ns4.cdit.org.
domain.com. 1 IN NS ns2.cdit.org.
domain.com. 1 IN NS ns3.cdit.org.

;; ADDITIONAL SECTION:
pop.domain.com. 1 IN A 59.93.43.183
ns2.cdit.org. 147 IN A 200.00.00.83

;; Query time: 331 msec
;; SERVER: 192.168.10.5#53(192.168.10.5)
;; WHEN: Fri Jun 19 14:03:43 2009
;; MSG SIZE rcvd: 261



zimbra@pop:/root$ host `hostname`
pop.domain.com has address 59.93.43.183
Reply With Quote