Hello.
I've installed ZIMBRA 6 on a local machine running centos 5.5 followin the instruction for creating the necessaries files but, when i run the command
I've tried with firewall active ( with all related port opened) and with firewall inactive
with
/etc/resolv.conf
as
Code:
# nameserver 172.28.214.252
nameserver 127.0.0.1
nslookup mail.struttura.local
i got this message
Code:
Server: 127.0.0.1
Address: 127.0.0.1#53
** server can't find mail.struttura.local.mail.struttura.local: SERVFAIL
if I change
etc/resolve.conf
Code:
nameserver 172.28.214.252
# nameserver 127.0.0.1
then the ouput is
Code:
Server: 172.28.214.252
Address: 172.28.214.252#53
** server can't find mail.struttura.local.mail.struttura.local: SERVFAIL
These are the other configuration files
/var/named/chroot/named.conf
Code:
// Default named.conf generated by install of bind-9.2.4-2
options {
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
forwarders { 151.99.125.2 ; };
};
include "/etc/rndc.key";
// We are the master server for server.example.com
zone "mail.struttura.local" {
type master;
file "db.server.struttura.local";
}; the file
/var/named/chroot/var/named/db.server.struttura.local
Code:
@ IN SOA mail.struttura.local. hostmaster.mail.struttura.local. (
10118 ; Serial
43200 ; Refresh
3600 ; Retry
3600000 ; Expire
2592000 ) ; Minimum
; Define the nameservers and the mail servers
IN NS 172.28.214.252
IN A 172.28.214.252
IN MX 10 mail.struttura.local. the output of
dig struttura.local mx
Code:
; <<>> DiG 9.3.6-P1-RedHat-9.3.6-4.P1.el5_4.2 <<>> struttura.local mx
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 15275
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;struttura.local. IN MX
;; AUTHORITY SECTION:
. 7454 IN SOA a.root-servers.net. nstld.verisign-grs.com. 2010101200 1800 900 604800 86400
;; Query time: 200 msec
;; SERVER: 172.28.214.252#53(172.28.214.252)
;; WHEN: Wed Oct 13 10:12:21 2010
;; MSG SIZE rcvd: 108
the output of dig mail.struttura.local MX
Code:
; <<>> DiG 9.3.6-P1-RedHat-9.3.6-4.P1.el5_4.2 <<>> mail.struttura.local mx
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 56795
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;mail.struttura.local. IN MX
;; Query time: 1 msec
;; SERVER: 172.28.214.252#53(172.28.214.252)
;; WHEN: Wed Oct 13 10:13:13 2010
;; MSG SIZE rcvd: 38
dig struttura.local any
Code:
; <<>> DiG 9.3.6-P1-RedHat-9.3.6-4.P1.el5_4.2 <<>> struttura.local any
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 58718
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;struttura.local. IN ANY
;; AUTHORITY SECTION:
. 7330 IN SOA a.root-servers.net. nstld.verisign-grs.com. 2010101200 1800 900 604800 86400
;; Query time: 7 msec
;; SERVER: 172.28.214.252#53(172.28.214.252)
;; WHEN: Wed Oct 13 10:14:25 2010
;; MSG SIZE rcvd: 108
dig mail.struttura.local any
Code:
; <<>> DiG 9.3.6-P1-RedHat-9.3.6-4.P1.el5_4.2 <<>> mail.struttura.local any
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 60471
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;mail.struttura.local. IN ANY
;; Query time: 7 msec
;; SERVER: 172.28.214.252#53(172.28.214.252)
;; WHEN: Wed Oct 13 10:15:08 2010
;; MSG SIZE rcvd: 38
command host $(hostname)
Code:
Host mail.struttura.local.mail.struttura.local not found: 2(SERVFAIL)
the output of
cat /etc/resolv.conf
Code:
search mail.struttura.local
nameserver 172.28.214.252
# nameserver 127.0.0.1
the output of
cat /etc/hosts
Code:
127.0.0.1 localhost.localdomain localhost
172.28.214.252 mail.struttura.local mail
Can someone help me?
(thanks in advance)