On 17.01.22 10:46, ONRUBIA AVILES Carlos (CCS/MST) wrote:
Maybe someone can help me with the following problem:

My name server is authoritative with the following domain "toto.be":
zone "toto.be." {
       type master;
       file "/etc/masterdns.db";

But I would like that a subdomain "titi.toto.be" is not searched in my 
masterdns.db file but via the normal process via internet.

I have tried to 2 solutions but it do not work:


 1.  Adding a forward for this subdomain:

zone "titi.toto.be." {
type forward;
forwarders {1.2.3.4; 5.6.7.8;};     (ip's from dsn cache servers)
forward only;
};


 *   Seems not to work.  Not possible to add a subdomain forwarding?

it is possible, but will only work for recursive clients of your DNS server.

 1.  Using directly the cache servers as NS:

Cache.proximus.be.      IN    A     1.2.3.4
Cache.proximus.be.      IN    A     5.6.7.8
Titi.toto.be.                     IN    NS     cache.proximus.be.

this should work properly.

 *   Not always working as if "titi.toto.be" is not at this moment in the
   cache, the cache will answer SERVFAIL and not do the recursion.  (I
   guess the query via this method is done with flag "Recursion Desired"
   set to false)

this also requires forwarding to be allowed from your IP address on the
server you are querying.

but, any recursive server should be able to query your server for Titi.toto.be and then query 1.2.3.4 or 5.6.7.8

So my question is: Is it possible to configure what I am trying to do?
--
Matus UHLAR - fantomas, uh...@fantomas.sk ; http://www.fantomas.sk/
Warning: I wish NOT to receive e-mail advertising to this address.
Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.
Despite the cost of living, have you noticed how popular it remains?
_______________________________________________
Please visit https://lists.isc.org/mailman/listinfo/bind-users to unsubscribe 
from this list

ISC funds the development of this software with paid support subscriptions. 
Contact us at https://www.isc.org/contact/ for more information.


bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

Reply via email to