DNS server failure when forwarding
- by Abraham Katz
I run Bind 9 on a Ubuntu 12.04 server.
I want this server to be a sort of a "wrapper" over my default server, so that it will respond to "domain_name.My_TLD" itself and forward requests to any other request.
The server resides in a domain (Disconnected from the internet), so I configured it to
zone "company_domain."{
type forward;
forwarders { 1.2.3.4 }; #the DC's ip
};
When i query it about sommething.company_domain. it sends a query to the DC and gets a response, but it returns "server failure". What can cause that?
Cheers,
Abraham