named.conf example for Linux Fedora 15 dns caching nameserver

Linux named.conf example for Linux Fedora 15 dns caching nameserver.
The example of Linux named.conf configuration file that configure for dns caching nameserver on Linux Fedora 15.
named example:
1. Log in, open Linux terminal, then execute su - command to get root privileges to execute command as show on example below.
2. To show named.conf configuration file, execute less command as on example below.
[root@fedora ~]# less /etc/named.conf
//
// 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.
//
options {
listen-on port 53 { any; };
listen-on-v6 port 53 { ::1; };
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
allow-query { localhost;172.16.165.0/24;172.16.160.0/24; };
recursion yes;
allow-recursion { localhost;172.16.165.0/24;172.16.160.0/24; };
dnssec-enable yes;
dnssec-validation yes;
dnssec-lookaside auto;
/* Path to ISC DLV key */
bindkeys-file "/etc/named.iscdlv.key";
managed-keys-directory "/var/named/dynamic";
};
logging {
channel default_debug {
file "data/named.run";
severity dynamic;
};
};
zone "." IN {
type hint;
file "named.ca";
};
include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";
[root@fedora ~]#
2. Hit 'q' key to exit.
Keywords: linux named.conf example, named.conf example, fedora 15 named.conf example, caching nameserver named.conf example
- Add new comment
- 270 reads
- Email this page
Other Popular Linux Topics
Today's:
- Create first web page on Fedora Core Web Server.
- Add, view, edit and configure route and static route on Linux Fedora Core - Linux Server Configuration.
- Copy Linux Files and Copy Directory Using cp Command - Linux Basic Command.
- Remove directory or delete directory using rmdir command.
- Get and display the size of file and directory in Linux system using du command.

Recent comments
5 days 17 hours ago
3 weeks 12 hours ago
7 weeks 1 day ago
8 weeks 6 days ago
9 weeks 1 day ago
9 weeks 2 days ago
9 weeks 3 days ago
9 weeks 3 days ago
10 weeks 1 day ago
10 weeks 3 days ago