Hello list, <br><br><br>I'm trying to "cut" /24 network from the scope of /8 network, here is example:<br><br> zone "11.2.10.in-addr.arpa" {<br> type forward;<br> forwarders { 192.168.1.23; 192.168.1.24; };<br>
};<br><br> zone "10.in-addr.arpa" {<br> type master;<br> file "master/int/10.in-addr.arpa"; <br> };<br> <br>10.in-addr.arpa is just a file that returns NXDOMAIN for any <a href="http://10.0.0.0/8">10.0.0.0/8</a> ip address. But I need to forward requests for <a href="http://10.2.11.0/24">10.2.11.0/24</a> net to other dns servers and the above config not working.<br>
I got empty responses for <a href="http://10.2.11.0/24">10.2.11.0/24</a> net.<br><br>This is right: (192.168.1.8 - server with bind)<br><br>$ host -t ptr 10.1.1.1 192.168.1.8<br>Using domain server:<br>Name: 192.168.1.8<br>
Address: 192.168.1.8#53<br>Aliases: <br>Host 1.1.1.10.in-addr.arpa. not found: 3(NXDOMAIN)<br><br>This is wrong:<br>$ host -t ptr 10.2.11.10 192.168.1.8<br>Using domain server:<br>Name: 192.168.1.8<br>Address: 192.168.1.8#53<br>
Aliases: <br>Host 10.11.2.10.in-addr.arpa. not found: 3(NXDOMAIN)<br><br>This is expected answer from the forwarded server - 192.168.1.23<br>$ host -t ptr 10.2.11.10 192.168.1.23<br>Using domain server:<br>Name: 192.168.1.23<br>
Address: 192.168.1.23#53<br>Aliases: <br>10.11.2.10.in-addr.arpa domain name pointer hawk-agent.local.intranet.<br><br>Can someone help with this ?<br><br>