code.fastix.org

Dateiansicht:

Datei:Projekte -> Linux:Netzwerk für Seminare -> Router_Server -> etc -> bind -> named.conf.options
md5:dbdccb5af4419f09e4cc82422d2e0478
sha1:120e7a14873e24b774cb48b8f1c8868eff7f42d0
Download-Link:Download
  1. options {
  2.         directory "/var/cache/bind";
  3.  
  4.         // If there is a firewall between you and nameservers you want
  5.         // to talk to, you may need to fix the firewall to allow multiple
  6.         // ports to talk.  See http://www.kb.cert.org/vuls/id/800113
  7.  
  8.         // If your ISP provided one or more IP addresses for stable
  9.         // nameservers, you probably want to use them as forwarders.  
  10.         // Uncomment the following block, and insert the addresses replacing
  11.         // the all-0's placeholder.
  12.  
  13.         forwarders {
  14.                 127.0.0.53;
  15.                 192.168.1.252;
  16.                 192.168.1.251;
  17.                 192.168.1.250;
  18.         };
  19.  
  20.         //========================================================================
  21.         // If BIND logs error messages about the root key being expired,
  22.         // you will need to update your keys.  See https://www.isc.org/bind-keys
  23.         //========================================================================
  24.  
  25.  
  26.         #dnssec-validation auto;
  27.         #dnssec-enable yes;
  28.         dnssec-validation no;
  29.  
  30.  
  31.  
  32.         auth-nxdomain no;    # conform to RFC1035
  33.         #listen-on-v6 { any; };
  34.         listen-on { any; };
  35.  
  36.         max-cache-size 32m;
  37.  
  38. };
  39.  
  40. #Unterdrücken von Fehlermeldungen im Logfile bei misslungener Namensauflösung
  41. logging {
  42.     category "lame-servers"  { null; };
  43.     category "edns-disabled" { null; };
  44. };
  45.  
  46.  
  47.