https://github.com/etcd-io/etcd
Raw File
Tip revision: 9ac4e7ef0643590d11dcd1045ddfe1470529f8af authored by Sahdev Zala on 25 April 2024, 17:47:34 UTC
bump version to 3.4.32
Tip revision: 9ac4e7e
named.conf
options {
      directory "/var/bind";
      listen-on { 127.0.0.1; };
      listen-on-v6 { none; };
      allow-transfer {
            none;
      };
      // If you have problems and are behind a firewall:
      query-source address * port 53;
      pid-file "/var/run/named/named.pid";
      allow-recursion { none; };
      recursion no;
};

zone "etcd.local" IN {
      type master;
      file "/etc/bind/etcd.zone";
};

zone "0.0.127.in-addr.arpa" {
      type master;
      file "/etc/bind/rdns.zone";
};
back to top