HELP : How to Install & Configure DNS Caching Server

Discussion regarding the installation and configuration of Linux distributions.
Post Reply
Mudassir Imam
Naik
Posts: 76
Joined: Sun Dec 05, 2004 12:12 am
Location: Karachi ,Pakistan
Contact:

HELP : How to Install & Configure DNS Caching Server

Post by Mudassir Imam »

Hello,

Please help me to install & configure DNS Cache server with firewall in fedora core 9 or ...

thnx
Linux Registered User #447971
Intel Core2Quad Q6600 2.40GHz Proc
XFX nVidia 680i LT SLi Mobo
XFX nVidia 8600GT 512mb PCIe Graphics
Corsair 4x512MB DDR2 Mem
250GBx1 500GBx1 Seagate Sata HDD
RedHat FC9
Ubuntu 8.04 LTS
Microsoft WindowsXP Pro [SP3]
x2oxen
Major General
Posts: 1114
Joined: Wed Aug 22, 2007 3:17 pm
Location: Faisalabad
Contact:

Post by x2oxen »

use yum for installing bind.

FYI see This and This
Muhammad Usman
+92-321-6640501
Chemonics International
http://usmanpk.com
nasacis
Battalion Havaldaar Major
Posts: 269
Joined: Sat Dec 13, 2003 3:58 pm
Location: Faisalabad
Contact:

Post by nasacis »

install bind packages and forward your all DNS requests to ISP's DNS through your local DSN to configure as forwarders

here is the configuration
options {
directory "/var/named";
allow-transfer { none; };
allow-query { 192.168.1.0/24; localhost; };
allow-recursion { 192.168.1.0/24; localhost; };
forwarders { ISP_DNS_1; ISP_DNS_2; };
version "Go away!";
};

logging {
category lame-servers { null; };
};

// Root server hints
zone "." { type hint; file "db.cache"; };

// Provide a reverse mapping for the loopback address 127.0.0.1
zone "0.0.127.in-addr.arpa" {
type master;
file "db.127.0.0";
notify no;
};

replace ISP_DNS_1 and ISP_DNS_2 respectively with actuall DSN IP of ISP

Regards
Nafees Ahmed
Cell: +92.300.8653568
UAN: 041-111432432
Nexlinx Faisalabad
www.nexlinx.net.pk
nafees29@gmail.com
Post Reply