File: named.conf

package info (click to toggle)
etcd 3.2.26%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 9,620 kB
  • sloc: sh: 2,191; makefile: 729
file content (23 lines) | stat: -rw-r--r-- 536 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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";
};