1

I connected two private networks using a VPN tunnel. The communication between the two networks is working good.

Well, the networks A and B have their own BIND DNS servers for the domains network-a.mycompany.com and network-b.mycompany.com, respectively.

Now, I need the DNS server on network A be able to query to DNS server on network B, and vice versa. The idea is let the users on network A, for example, ask to their own DNS and be able to resolve names from both domains without change the DNS configuration on their computers.

I was reading the BIND manual, but because this is new for me, I don't know what kind of configuration I'm looking for.

How can I do that?

JonDoe297
  • 523
  • 2
  • 8
  • 21

1 Answers1

5

Thanks @joeqwerty. It was necessary to edit named.conf on the DNS server in network A.

zone "network-b.mycompany.com" {
    type forward;
    forward only;
    forwarders { 10.17.0.1; };  // The DNS server's address in network B
};

Source: Conditional DNS forwarding with named on Linux

JonDoe297
  • 523
  • 2
  • 8
  • 21