Instalation Multiserver DNS fail

Discuss your pilot or production implementation with other Zimbra admins or our engineers.
Post Reply
User avatar
ElClay
Posts: 11
Joined: Fri Jan 08, 2016 8:52 am
Location: Venezuela
ZCS/ZD Version: 8.7.1

Instalation Multiserver DNS fail

Post by ElClay »

Hello friends, hope to help me with the following problem.
I have an installation of Zimbra 8.7 CS multi server

Server A: server-only installation with two domains (mail.jbv.cl)
Server B: a second MTA (smtp.grupojbv.cl)

I configured it this way since I need the mails from domain1 to exit from server A and the mails from domain2 to exit from server B.
The configuration works on the server without problem and each one uses the assigned mta, the problem is in my public DNS which I manage, the point that does not solve the reverse of server B (smtp.grupojbv.cl)

If I make a query to the Google servers (8.8.8.8) throw me this:

Code: Select all

Dig -x 200.54.163.179 @8.8.8.8
;; QUESTION SECTION:
;179.163.54.200.in-addr.arpa.   IN      PTR
;; AUTHORITY SECTION:
163.54.200.in-addr.arpa. 1799   IN      SOA     qip1.redip.cl. root.redip.cl. 2017062801 21600 3600 604800 86400
But if I do the same query my public dns throws this:

Code: Select all

Dig -x 200.54.163.179 @ns.jbv.cl
;; QUESTION SECTION:
;179.163.54.200.in-addr.arpa.   IN      PTR
;; ANSWER SECTION:
179.163.54.200.in-addr.arpa. 38400 IN   PTR     smtp.grupojbv.cl.
;; AUTHORITY SECTION:
179.163.54.200.in-addr.arpa. 38400 IN   NS      ns.jbv.cl.
;; ADDITIONAL SECTION:
ns.jbv.cl.              38400   IN      A       200.54.163.178
If I make the same query to my domain1 (jbv.cl) returns the reverse without problems

What is the problem with my DNS? I've waited a week waiting for it to spread but nothing.

Here the configuration of my DNS server Ubuntu server 16.04

Named.conf.local

Code: Select all

zone "jbv.cl" {
        type master;
        file "/var/lib/bind/jbv.cl.hosts";
        };
zone "grupojbv.cl" {
        type master;
        file "/var/lib/bind/grupojbv.cl.hosts";
        };
zone "163.54.200.in-addr.arpa" {
        type master;
        file "/var/lib/bind/200.54.163.rev";
        };
/var/lib/bind/jbv.cl.hosts (Domain1)

Code: Select all

$ttl 38400
jbv.cl. IN      SOA     ns.jbv.cl. admin.jbv.cl. (
                        1500432573
                        10800
                        3600
                        604800
                        38400 )
jbv.cl.                 IN      NS      ns.jbv.cl.
www.jbv.cl.             IN      CNAME   jbv.cl.
jbv.cl.                 IN      MX      10      mail.jbv.cl.
jbv.cl.                 IN      A       200.54.163.181
ns.jbv.cl.              IN      A       200.54.163.178
mail.jbv.cl.    IN      A       200.54.163.182
/var/lib/bind/grupojbv.cl.hosts (Domain2)

Code: Select all

$ttl 38400
grupojbv.cl.    IN      SOA     ns.jbv.cl. admin.jbv.cl. (
                        1500432643
                        10800
                        3600
                        604800
                        38400 )
grupojbv.cl.            IN      NS      ns.jbv.cl.
grupojbv.cl.            IN      MX      20 smtp.grupojbv.cl.
smtp.grupojbv.cl.       IN      A       200.54.163.179
/var/lib/bind/200.54.163.rev

Code: Select all

$ttl 38400
jbv.cl.         IN      SOA      ns.jbv.cl. admin.jbv.cl. (
                        1501037500
                        10800
                        3600
                        604800
                        38400 )
163.54.200.in-addr.arpa.        IN      NS      ns.jbv.cl.
179.163.54.200.in-addr.arpa.    IN      PTR     smtp.grupojbv.cl.
182.163.54.200.in-addr.arpa.    IN      PTR     mail.jbv.cl.
S.O.S
Post Reply