DNS server failure when forwarding
Posted
by
Abraham Katz
on Server Fault
See other posts from Server Fault
or by Abraham Katz
Published on 2013-06-25T15:12:10Z
Indexed on
2013/06/25
16:23 UTC
Read the original article
Hit count: 434
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
© Server Fault or respective owner