Zimbra offers Open Source email server software and shared calendar for Linux and the Mac
Go Back   Zimbra :: Forums > Zimbra Collaboration Suite > Installation

Welcome to the Zimbra :: Forums!
Welcome, if you would like to post a comment please register. We also encourage you to explore all things Zimbra with our team and members of the community.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 03-26-2009, 02:24 AM
Intermediate Member
 
Posts: 15
Default dns in multi server

hi all

I install mta on server A (hostname:mta; ip:10.0.8.53) and install ldap,maibox on server B (hostname:mail; ip:10.0.8.53).

I install bind9 on server B. can you help me setup bind9.

p/s: i readed splip dns and set up success on single server
Reply With Quote
  #2 (permalink)  
Old 03-26-2009, 02:26 AM
Moderator
 
Posts: 7,928
Default

Welcome to the forums

Why not just put the appropriate A records into the BIND install on server A and point server B /etc/resolv.conf at server A ?
__________________
Reply With Quote
  #3 (permalink)  
Old 03-26-2009, 08:01 PM
Intermediate Member
 
Posts: 15
Default

thank uxbod!

bind install on the server A (MTA) or bind install on server B(Ldap,mailbox) ???
I install bind on server B (LDAP,maibox),is this wrong?

Why not just put the appropriate A records into the BIND install on server A and point server B /etc/resolv.conf at server A ?-->> can you explain more clearly ?

thanks!
Reply With Quote
  #4 (permalink)  
Old 03-27-2009, 12:33 AM
Moderator
 
Posts: 7,928
Default

You can install BIND on Server B just fine; either will do. Example :-

Domain - example.com
Server A - 10.0.0.10 - a.example.com
Server B - 10.0.0.20 - b.example.com

BIND installed on Server B and with the following records :-

IN MX 10 a.example.com.
a IN A 10.0.0.10
b IN A 10.0.0.20

/etc/resolv.conf on Server A and B would be :-

search example.com
server 10.0.0.20
__________________
Reply With Quote
  #5 (permalink)  
Old 04-01-2009, 09:19 PM
Intermediate Member
 
Posts: 15
Default

hi uxbod
My domain - vietkt.com
Server A (MTA) - 10.0.0.1 -mta.vietkt.com
Server B(mailbox,ldap) - 10.0.0.2 -mail.vietkt.com
Bind installed on server B and with the following records:

vietkt.com. IN SOA mail.vietkt.com. admin.mail.vietkt.com. (
070725 ;serial
604800 ;refesh
86400 ;retry
2419200;expire
604800);negative cache tll
;
vietkt.com. IN NS mail.vietkt.com.
vietkt.com. IN MX 10 mail.vietkt.com.
mail IN A 10.0.0.2
mta IN A 10.0.0.1

/etc/resolv.conf on Server A and B :
search vietkt.com
nameserver 10.0.0.2

When i send a mail,the error :

A network service error has occurred.
method: SendMsgRequest
msg: system failure: MessagingException
code: service.FAILURE
detail: soap:Receiver
trace: btpool0-8:1238670472748:e33b8e87e22bd51d

pl help me! thanks a lot
Reply With Quote
  #6 (permalink)  
Old 04-01-2009, 11:28 PM
Moderator
 
Posts: 7,928
Default

From each server please post the following information
Code:
cat /etc/hosts
cat /etc/resolv.conf
dig yourdomain mx
dig yourdomain any
host `hostname` <- note backticks and not single quotes
__________________
Reply With Quote
  #7 (permalink)  
Old 04-02-2009, 12:01 AM
Intermediate Member
 
Posts: 15
Default

Hi you !
Server A (MTA) -10.0.0.1

vikjava@mta:~$ cat /etc/hosts
127.0.0.1 localhost.localdomain localhost
10.0.0.1 mta.vietkt.com mta

# 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

vikjava@mta:~$ cat /etc/resolv.conf
search vietkt.com
nameserver 10.0.0.2


; <<>> DiG 9.4.2-P2 <<>> vietkt.com mx

;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 8688
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 1

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

;; ANSWER SECTION:
vietkt.com. 604800 IN MX 10 mail.vietkt.com.

;; AUTHORITY SECTION:
vietkt.com. 604800 IN NS mail.vietkt.com.

;; ADDITIONAL SECTION:
mail.vietkt.com. 604800 IN A 10.0.0.2

;; Query time: 0 msec
;; SERVER: 10.0.0.2#53(10.0.0.2)
;; WHEN: Thu Apr 2 13:53:22 2009
;; MSG SIZE rcvd: 79



; <<>> DiG 9.4.2-P2 <<>> vietkt.com any
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 11370
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 3, AUTHORITY: 0, ADDITIONAL: 1

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

;; ANSWER SECTION:
vietkt.com. 604800 IN SOA mail.vietkt.com. admin.mail.vietkt.com. 70725 604800 86400 2419200 604800
vietkt.com. 604800 IN NS mail.vietkt.com.
vietkt.com. 604800 IN MX 10 mail.vietkt.com.

;; ADDITIONAL SECTION:
mail.vietkt.com. 604800 IN A 10.0.0.2

;; Query time: 1 msec
;; SERVER: 10.0.0.2#53(10.0.0.2)
;; WHEN: Thu Apr 2 13:54:43 2009
;; MSG SIZE rcvd: 121

vikjava@mta:~$ host mta.vietkt.com
mta.vietkt.com has address 10.0.0.1

Server B(maibox,ldap,bind)-10.0.0.2

vikjava@mail:~$ cat /etc/hosts

127.0.0.1 localhost.localdomain localhost
10.0.0.2 mail.vietkt.com mail

# 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

vikjava@mail:~$ cat /etc/resolv.conf
nameserver 10.0.0.2

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

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

;; ANSWER SECTION:
vietkt.com. 604800 IN MX 10 mail.vietkt.com.

;; AUTHORITY SECTION:
vietkt.com. 604800 IN NS mail.vietkt.com.

;; ADDITIONAL SECTION:
mail.vietkt.com. 604800 IN A 10.0.0.2

;; Query time: 9 msec
;; SERVER: 10.0.0.2#53(10.0.0.2)
;; WHEN: Thu Apr 2 21:00:28 2009
;; MSG SIZE rcvd: 79

; <<>> DiG 9.4.2-P2 <<>> vietkt.com any

;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 47749
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 3, AUTHORITY: 0, ADDITIONAL: 1

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

;; ANSWER SECTION:
vietkt.com. 604800 IN SOA mail.vietkt.com. admin.mail.vietkt.com. 70725 604800 86400 2419200 604800
vietkt.com. 604800 IN NS mail.vietkt.com.
vietkt.com. 604800 IN MX 10 mail.vietkt.com.

;; ADDITIONAL SECTION:
mail.vietkt.com. 604800 IN A 10.0.0.2

;; Query time: 0 msec
;; SERVER: 10.0.0.2#53(10.0.0.2)
;; WHEN: Thu Apr 2 21:01:25 2009
;; MSG SIZE rcvd: 121

vikjava@mail:~$ host mail.vietkt.com
mail.vietkt.com has address 10.0.0.2

Last edited by vikjava; 04-02-2009 at 12:06 AM..
Reply With Quote
  #8 (permalink)  
Old 04-02-2009, 12:03 AM
Moderator
 
Posts: 7,928
Default

From server B what does the following output show?
Code:
dig mta.vietkt.com
__________________
Reply With Quote
  #9 (permalink)  
Old 04-02-2009, 12:12 AM
Intermediate Member
 
Posts: 15
Default

hi uxbod!
from server B(maibox,ldap,bind)-10.0.0.2

; <<>> DiG 9.4.2-P2 <<>> mta.vietkt.com
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 24322
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 1

;; QUESTION SECTION:
;mta.vietkt.com. IN A

;; ANSWER SECTION:
mta.vietkt.com. 604800 IN A 10.0.0.1

;; AUTHORITY SECTION:
vietkt.com. 604800 IN NS mail.vietkt.com.

;; ADDITIONAL SECTION:
mail.vietkt.com. 604800 IN A 10.0.0.2

;; Query time: 0 msec
;; SERVER: 10.0.0.2#53(10.0.0.2)
;; WHEN: Thu Apr 2 21:12:44 2009
;; MSG SIZE rcvd: 83
Reply With Quote
  #10 (permalink)  
Old 04-02-2009, 12:18 AM
Moderator
 
Posts: 7,928
Default

Any error messages in /var/log/zimbra.log as all your server names are resolving okay ?
__________________
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads

Why Join?

Registering let's you ask questions, makes it easier to search, displays any files attached to posts, and notifies you about replies.

blog.zimbra.com




 

SEO by vBSEO ©2011, Crawlability, Inc.