https://github.com/etcd-io/etcd
Raw File
Tip revision: 3b252db4f6e68c3ae3ecaa87ab1b502f46d39d6e authored by Marek Siarkowicz on 07 December 2023, 10:29:12 UTC
version: bump up to 3.5.11
Tip revision: 3b252db
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