https://github.com/etcd-io/etcd
Raw File
Tip revision: d57e8b8d97adfc4a6c224fe116714bf1a1f3beb9 authored by Gyuho Lee on 07 February 2019, 18:41:58 UTC
version: 3.3.12
Tip revision: d57e8b8
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