Bind Forwarders

Issues related to configuring your network
Post Reply
samdia
Posts: 2
Joined: 2019/12/11 08:46:40

Bind Forwarders

Post by samdia » 2019/12/11 08:54:49

Hello !
I try to configure a forwarding on a bind9 server-A for a specific zone to another bind9 server-B.
Everything is good on server-B, but when I tried resolution from server-A, I got nothing.
using Wireshark I realise that server-A got the right address from server-B but didn't show it !

*************************
Config from server-A:

zone "ismcozte.local" IN {
type forward;
forwarders { 192.168.10.200; };
};

*****************************
Config from server-B:

zone "ismcozte.local" IN {
type master;
file "data/ismcozte.local.zone";
};



sorry for my bad english !!

samdia
Posts: 2
Joined: 2019/12/11 08:46:40

Re: Bind Forwarders

Post by samdia » 2019/12/11 11:35:42

Hello everybody !
I found the solution, I have to disable DNS-SEC on server-A.

dnssec-enable no;
dnssec-validation no;

Thanks !

https://www.isc.org/dnssec/

Post Reply