https://github.com/etcd-io/etcd
Raw File
Tip revision: b3f16d6691db7c2f88b43694a9501f1e858f5b9d authored by Sam Batschelet on 26 May 2021, 00:48:48 UTC
version: 3.5.0-beta.4
Tip revision: b3f16d6
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 main;
      file "/etc/bind/etcd.zone";
};

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