this is the digs with new modification i made , i make an error in the previous installation , mail.alghurair.com is my real mail server so when digged it is getting the dns of that server however here is the new modifacations .
test.alghurair.com[root@test /]# dig alghurair.com mx
; <<>> DiG 9.2.4 <<>> alghurair.com mx
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 42525
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;alghurair.com. IN MX
;; AUTHORITY SECTION:
alghurair.com. 86400 IN SOA alghurair.com. root.localhost.alghurair.com. 11 28800 7200 604800 86400
;; Query time: 5 msec
;; SERVER: 192.168.20.15#53(192.168.20.15)
;; WHEN: Tue Jun 24 16:30:12 2008
;; MSG SIZE rcvd: 82
now here is the strange thing:[root@test /]# dig test.alghurair.com
; <<>> DiG 9.2.4 <<>> test.alghurair.com
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 15395
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;test.alghurair.com. IN A
;; AUTHORITY SECTION:
alghurair.com. 86400 IN SOA alghurair.com. root.localhost.alghurair.com. 11 28800 7200 604800 86400
;; Query time: 5 msec
;; SERVER: 192.168.20.15#53(192.168.20.15)
;; WHEN: Tue Jun 24 16:30:47 2008
;; MSG SIZE rcvd: 87
i have done appendings in named-conf file and i did the file db.test.alghurair.com according to the guidance in the wiki's but still no luck[root@test /]# host `hostname`
Host test.alghurair.com not found: 3(NXDOMAIN)
You have not created A or MX records for your domain, they are not showing in your output. Search the forums for 'DNS in a Nutshell' and follow the instruction in that thread for configuring your DNS.
The output would also indicate that your /etc/hosts file is incorrect, please post the output of:
Code:cat /etc/hosts
Regards
Bill
can you help me with that dns thing i read the wiki and split dns millions of times i am so lost if you have something like doing that from the bash command it will be much easier to me.[root@test /]# cat /etc/hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
192.168.21.75 test.alghurair.com test
the main issue is that iam new to dns and mx records and i can see it very complex thing to me to understand as the examples are very tricky also .
regards
The requirements for DNS in Zimbra are fairly simple, post the output of your configuration files.
Regards
Bill
You should also post the output of resolv.conf from the Zimbra server.
Regards
Bill
Also i have one question relating to the zimbra setup:
iam getting a port conflict during installing mta which uses port 25 , i know that port 25 is used by ssh mean while i cant kill that service because zimbra already uses it ,
the question is : is there is no way to install mta in different port? this is the main problem iam facing here.
i have read in the forums and the wiki's about that problems and frankly speaking i dont know how it has been solved because first during the installation zimbra dont allow the user to choose the ports , second most users faces that problems was having service sendmail ON so when they kill the service everything run correctly , i hope iam that lucky that my problem is just a running service need to be down:-)
Regards
Port 25 is the SMTP mail port not ssh, check if postfix (or sendmail) is running and then stop it and disable it from starting.
Regards
Bill
That is named-conf:[root@test /]# cat /etc/resolv.conf
; generated by /sbin/dhclient-script
nameserver 192.168.20.15
that is my db.test.alghurair.com:[root@test /]# cat /etc/named.conf
//
// named.conf for Red Hat caching-nameserver
//
options {
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
forwarders { 192.168.21.75 ; };
};
include "/etc/rndc.key";
// We are the master server for test.alghurair.com
zone "test.alghurair.com" {
type master;
file "db.test.alghurair.com";
};
//
// a caching only nameserver config
//
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "." IN {
type hint;
file "named.ca";
};
zone "localdomain" IN {
type master;
file "localdomain.zone";
allow-update { none; };
};
zone "localhost" IN {
type master;
file "localhost.zone";
allow-update { none; };
};
zone "0.0.127.in-addr.arpa" IN {
type master;
file "named.local";
allow-update { none; };
};
zone "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0 .0.0.0.0.0.0.ip6.arpa" IN {
type master;
file "named.ip6.local";
allow-update { none; };
};
zone "255.in-addr.arpa" IN {
type master;
file "named.broadcast";
allow-update { none; };
};
zone "0.in-addr.arpa" IN {
type master;
file "named.zero";
allow-update { none; };
};
and again thanks for your help[root@test /]# cat var/named/db.test.alghurair.com
;
; Addresses and other host information.
;
@ IN SOA test.alaghurair.com. hostmaster.test.alghurair.com. (
10118 ; Serial
43200 ; Refresh
3600 ; Retry
3600000 ; Expire
2592000 ) ; Minimum
; Define the nameservers and the mail servers
IN NS <internal address of server>
IN A <internal address of server>
IN MX 10 test.alghurair.com
Okay, so what is the short name of your server ? test.alghurair.com is your domain name and you have pointed the MX record too test.alghurair.com. It should be pointing to something like mail.test.alghurair.com where the FQDN of your ZCS server would be mail.test.alghurair.com.
There are currently 1 users browsing this thread. (0 members and 1 guests)