Installation des BIND-Namservers

Download

wget ftp://ftp.isc.org/isc/bind9/9.9.1-P3/bind-9.9.1-P3.tar.gz 

Verifikation mit gpg: (vergl. OpenPGP-Key)

Einmalig braucht man den aktuellen PGP-Key:

wget https://www.isc.org/pgpkey2012
# manuell den ganzen HTML-Schnickschnack entfernen
gpg --import pgpkey2012

Dann brauchen wir noch die Signatur des Files und können dann Verifizieren:

wget ftp://ftp.isc.org/isc/bind9/9.9.1-P3/bind-9.9.1-P3.tar.gz.sha1.asc
gpg --verify bind-9.9.1-P3.tar.gz.sha1.asc bind-9.9.1-P3.tar.gz

Auspacken,Compilieren und Installieren

tar -zxvf bind-9.9.1-P3.tar.gz
./configure --prefix=/opt/bind-9.9.1/ --with-openssl
make
make install