PDNSD HowTo - A DNS Caching Personal Server (Fedora 16)
PDNSD HowTo - A DNS Caching Personal Server (Fedora 16)PDNSD is a non authoritative caching DNS server. It maintains a disk cache of the queries that your system performs and subsequent queries will be faster from the cache. It is safe enough to be used on a personal Unix/Linux system as a home Desktop or a Laptop. Info about its history, current developer Paul Rombouts and other technical info can be seen here: http://www.phys.uu.nl/~rombouts/pdnsd.html. Versions and OS: Downloads: Fedora 12,13,14,15,15. This should also work with RHEL and CentOS. Source tar: PDNSD-1.2.8 SRC RPM Debian: Free BSD: Gentoo:
Network RequirementsYour system supports the local interface 'lo' with a 127.0.0.1 ip. This is a standard for all computers irrespective of what OS it is. A queryable DNS server, e.g. your ISP's DNS, OpenDNS, or your ADSL Router if it has got a DNS server. Necessary firewall configuration that allows DNS query from your system to the forwarding or authoritative DNS server. Login to start and stop network services.
InstallationThe downloaded RPM's can be installed with yum. login as root and use the shell terminal and run the commands below. Yum should take care of any missing dependencies. # yum localinstall pdnsd-1.2.8-par_el5.x86_64.rpm If you are using the source tar then: # cd <path to the pdnsd source folder> The files are installed to /usr/local/bin and a pdnsd.conf is copied to the /etc folder.
ConfigurationYour system's DNS configuration and pdnsd.conf require amendments as below. pdnsd.conf: Use a editor like vi to edit the pdnsd.conf file Two sections need changing for the server to serve DNS queries. Leave the remaining sections as is. global {
perm_cache=16384; - this is in kB, increase it if you want more disk cacheing
server_ip = 127.0.0.1; this is the local 'lo' network interface
paranoid=on; A security feature to avoid cache poisoning
}
Let other options be defaults. server {
ip = som.eip.add.ress; Put your ISP's DNS-server address here.
uptest = query; Test if the network interface is active. The up DNS is queried with a DNS request
interface=eth0; The interface connected to the network.
}
Other options in the config file will be as is and changes are not required. resolv.conf: In different Unix / Linux flavours, different files and configurations are used. resolv.conf is the most common dns setting in a Unix / Linux system. Comment out all existing nameservers and add: nameserver 127.0.0.1
Start The Service And TestThe installation has installed a service that needs to be started and used. Also set the service to start up a boot. # chkconfig --levels 3456 pdnsd on To test: # nslookup google.com Server: 127.0.0.1 Non-authoritative answer: If there is an error check the service status, network connectivity, the up DNS server, pdnsd status with: # pdnsd-ctl status This is a great software for internal LAN, laptops and desktops where the dns query takes a long time and speeds up internet browsing and limits the network DNS traffic to a minimum. I personally use it with my laptop. It's very nice and has a minimal maintenance. -Bellamkonda Sudhakar
|



Recent comments
12 hours 40 min ago
17 hours 45 min ago
22 hours 10 min ago
23 hours 59 min ago
1 day 14 hours ago
1 day 14 hours ago
1 day 19 hours ago
2 days 1 hour ago
2 days 2 hours ago
2 days 3 hours ago