github.com/lfch/etcd-io/tests/v3@v3.0.0-20221004140520-eac99acd3e9d/manual/docker-dns/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 main;
    17        file "/etc/bind/etcd.zone";
    18  };
    19  
    20  zone "0.0.127.in-addr.arpa" {
    21        type main;
    22        file "/etc/bind/rdns.zone";
    23  };