Installing the Wyse 2: dnrd
The new Wyse machine should serve as a caching DNS for the internal network. This will enable us to resolve host names on the internet (e.g. www.google.com) and local hostnames (e.g. localhostname.earth). My old router used dnrd to accomplish this, so I will use dnrd again. You could use a full blown DNS server, such as bind but bind has always suffered some security issues and is harder to configure (but not impossible). So, first we need to download and extract dnrd: # wget http://downloads.sourceforge.net/dnrd/dnrd-2.20.3.tar.gz # tar xvfz dnrd-2.20.3.tar.gz Next, install a compiler: # apt-get install gcc # apt-get install g++ # apt-get install make Next, configure the package: # ./configure Compile and install the package: # make # make install Create a startup script ( /etc/init.d/dnrd ) #! /bin/sh set -e PATH= /usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin DESC= "Domain Name Relay Daemon" NAME= dnrd DAEMON= /usr/local/sbin/ $NAME PIDFILE= /var/run/ $N...