BASH 292
DNS Guest on 3rd June 2022 08:03:22 PM
  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.        //      0.0.0.0;
  15.        // };
  16.  
  17.        //========================================================================
  18.        // If BIND logs error messages about the root key being expired,
  19.        // you will need to update your keys.  See https://www.isc.org/bind-keys
  20.        //========================================================================
  21.  
  22.  
  23. dnssec-validation auto;
  24.  
  25. listen-on-v6 { 192.168.0.130; };
  26.  
  27. allow-query { 192.168.0.0/24; };
  28.  
  29. listen-on port 53 {192.168.0.130;};
  30.  
  31. forwarders {
  32. 176.9.1.117;
  33. 176.9.93.198;
  34. };
  35.  
  36. };

paste.retronerd.at ist fuer Quelltexte und generellen Debugging Text.

Login oder Registrieren um zu bearbeiten, loeschen, um deine Pastes zu verfolgen und mehr.

Raw Paste

Login oder Registrieren um diesen Paste zu bearbeiten oder zu forken. Es ist kostenlos.