You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by Apache Wiki <wi...@apache.org> on 2007/02/21 21:40:19 UTC

[Spamassassin Wiki] Update of "CachingNameserver" by OliverSchulzeL

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Spamassassin Wiki" for change notification.

The following page has been changed by OliverSchulzeL:
http://wiki.apache.org/spamassassin/CachingNameserver

The comment on the change is:
adding helpfull "forwarders" option

------------------------------------------------------------------------------
  127.0.0.1	localhost
  }}}
  
+ 
+ ==== Using only your ISP DNS servers ====
+ Sometimes is better to always use your ISP DNS servers, because you may have a faster conection to your ISP's DNS servers than to the DNS Root server.
+ 
+ Here are the options to only resolv using your ISP DNS Servers, the response is always cached in your local DNS Caching server:
+ 
+ {{{
+ options {
+ ...
+   forward only;
+   forwarders {
+     IP_DNS_1;
+     IP_DNS_2;
+   };
+ ...
+ };
+ }}}
+