<div>Hi all,</div>
<div> </div>
<div>I'm configuring my BIND server and I have two questions related with forwarding. </div>
<div> </div>
<div>1 - I need to be a slave for the zones "<a href="http://testing.es">testing.es</a>" and "<a href="http://testing2.es">testing2.es</a>" but everything else must be redirected to the 10.112.15.3 server. Do you think the example bellow is correct? The problem is that everytime I send a request to the forward zone, my server adds the root nameservers in the authoritative and additions sections of the message, which i do not think is correct. Is there a better alternative?</div>
<div> </div>
<div>// Forward Zones<br>zone "." IN {<br> type forward;<br> forwarders {10.112.15.3;};<br>};<br></div>
<div>//Slave Zones</div>
<div>zone "<a href="http://testing.es">testing.es</a>" IN {<br> type slave;<br> notify no;<br> masters {10.112.25.184 port 40001;};<br>};</div>
<div>zone "<a href="http://testing2.es">testing2.es</a>" IN {<br> type slave;<br> notify no;<br> masters {10.112.25.184 port 40001;};<br>};</div>
<div> </div>
<div>2 - My second problem is that I have my BIND server forwarding all the request to a name server, but I wanted to test another server in case of a negative answer (for example, name error) with the exception of a certain zone.</div>
<div>For example, I want to send all the requests for "es", but in case of a negative answer and the zone domain name is not "<a href="http://test.es">test.es</a>", I want to try another server. Is that possible?</div>
<div> </div>
<div>//I only have this part. Need help for the rest. :)</div>
<div>// Forward Zones<br>zone "es" IN {<br> type forward;<br> forwarders {10.112.25.185 port 40001;};<br>};</div>
<div> </div>
<div> </div>
<div>Kind Regards and tks in advance,</div>
<div>Luis<br></div>