I have BIND working on Windows Server 2003. I want to forward my queries to another server. Recursion is working but forwarding is not working. Can you guide me to set it up? I have given the following in the options:

options { 
       directory "c:\named\zones"; 
       allow-transfer { none; }; 
       forward only; 
       forwarders { 8.8.8.8 ; }; 
       recursion no;
};

Is the format for forwarding correct in the above.

If not what is the format. Am i to give any port number in the forwarders line? Does forwarding have any particular port number?

Thank You in advance....

link|improve this question

0% accept rate
This is not a programming question. You may have better luck on serverfault.com. – Dietrich Epp Jan 22 '10 at 5:34
That configuration should work. Do you get any errors in the log files? – Dan Andreatta Mar 21 '10 at 21:54
feedback

migrated from stackoverflow.com Jan 26 '10 at 7:36

This question came from our site for professional and enthusiast programmers.

1 Answer

Recursion should not be working, as you have "recursion no;".

options {
  recursion yes;
  allow-recursion { localhost; };
  forward only;
  forwarders { 8.8.8.8; 8.8.4.4; };
};
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.