Purpose: Install Bind Dns Server On The Local Machine and Configure
Purpose: Install Bind Dns Server On The Local Machine and Configure
Purpose: Install Bind Dns Server On The Local Machine and Configure
Lab 1
Purpose: Install bind dns server on the local machine and configure
forward and reverse zones.
Procedure:
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 { any; };
recursion yes;
forwarders { 8.8.8.8; };
dnssec-enable no;
dnssec-validation no;
dnssec-lookaside no;
managed-keys-directory "/var/named/dynamic";
};
zone "demo.telacad.ro" IN {
type master;
file "demo.telacad.ro.db";
allow-update { none; };
};
zone "1.168.192.in-addr.arpa" IN {
type master;
file "rev.demo.telacad.ro.db";
allow-update { none; };
};