go.etcd.io/etcd@v3.3.27+incompatible/hack/scripts-dev/docker-dns-srv/named.conf (about)

     1  options {
     2          directory "/var/bind";
     3          listen-on { 127.0.0.1; };
     4          listen-on-v6 { none; };
     5          allow-transfer {
     6                  none;
     7          };
     8          // If you have problems and are behind a firewall:
     9          query-source address * port 53;
    10          pid-file "/var/run/named/named.pid";
    11          allow-recursion { none; };
    12          recursion no;
    13  };
    14  
    15  zone "etcd.local" IN {
    16        type master;
    17        file "/etc/bind/etcd.zone";
    18  };
    19  
    20  zone "0.0.127.in-addr.arpa" {
    21        type master;
    22        file "/etc/bind/rdns.zone";
    23  };