DNS Delegate a subdomain with Ubuntu

0

I have two ubuntu servers, srv1 and srv3. srv1 is the main server and srv3 is a subdomain to which I want to delegate. The problem is that it does not transfer the data from srv3 to srv1.

Example of structure:

SERVER 1

/etc/bind/named.conf.local

/etc/bind/db.jt.test

/etc/bind/db.172.30

SERVER 2

/etc/bind/named.conf.local

/etc/bind/db.srv3.jt.local

/etc/bind/db.172.30

ERRORS OBTAINED and CHECKS

On SERVER 1: The error is that the srv3 information does not pass to srv1, I do not know where the configuration error may be.

On SERVER 2:

    
asked by JTsuki 06.11.2017 в 00:52
source

1 answer

1

SOLUTION:

Add to the end of the file /etc/bind/db.jt.test (SERVER 1):

*.srv3.jt.test. IN A 172.30.0.17

And if the above does not work, modify "deletes IN NS srv3.jt.test." by:

srv3 IN NS srv3.jt.test.

This means that everything in that subdomain must be looked for in that IP address of server 3.

Information found at: DNS to delegate authority to subdomain

    
answered by 06.11.2017 в 13:18