123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- //
- // named.conf
- //
- // Provided by Red Hat bind package to configure the ISC BIND named(8) DNS
- // server as a caching only nameserver (as a localhost DNS resolver only).
- //
- // See /usr/share/doc/bind*/sample/ for example named configuration files.
- //
- // See the BIND Administrator's Reference Manual (ARM) for details about the
- // configuration located in /usr/share/doc/bind-{version}/Bv9ARM.html
- options {
- listen-on port 53 { any; };
- listen-on-v6 port 53 { ::1; };
- directory "/var/bind";
- dump-file "/var/bind/data/cache_dump.db";
- statistics-file "/var/bind/data/named_stats.txt";
- memstatistics-file "/var/bind/data/named_mem_stats.txt";
- allow-query { any; };
- /*
- - If you are building an AUTHORITATIVE DNS server, do NOT enable recursion.
- - If you are building a RECURSIVE (caching) DNS server, you need to enable
- recursion.
- - If your recursive DNS server has a public IP address, you MUST enable access
- control to limit queries to your legitimate users. Failing to do so will
- cause your server to become part of large scale DNS amplification
- attacks. Implementing BCP38 within your network would greatly
- reduce such attack surface
- */
- recursion yes;
- dnssec-enable yes;
- dnssec-validation yes;
- /* Path to ISC DLV key */
- bindkeys-file "/etc/bind/bind.keys";
- pid-file "/run/named/named.pid";
- session-keyfile "/run/named/session.key";
- };
- logging {
- channel default_debug {
- stderr;
- severity dynamic;
- };
- };
- zone "." IN {
- type hint;
- file "named.ca";
- };
- zone "infoclinica.lan" {
- type master;
- file "infoclinica/infoclinica.lan.zone";
- notify yes;
- allow-transfer { any; };
- };
- zone "201.168.192.in-addr.arpa" {
- type master;
- notify yes;
- file "infoclinica/201.168.192.in-addr.arpa.zone";
- allow-transfer { any; };
- };
- zone "204.168.192.in-addr.arpa" {
- type master;
- notify yes;
- file "infoclinica/204.168.192.in-addr.arpa.zone";
- allow-transfer { any; };
- };
- zone "205.168.192.in-addr.arpa" {
- type master;
- notify yes;
- file "infoclinica/205.168.192.in-addr.arpa.zone";
- allow-transfer { any; };
- };
|