2010年10月20日水曜日

Bind-9.7.2-P2をインストール

DNSSECに対応したDNSサーバーを建てたいので、bind-9.7.2-P2をインストール。


BINDのWebページ http://www.isc.org/software/bind からダウンロードしてインストールします。
インストール時にOpenSSLのインストール先を指定する必要があります。

wget http://ftp.isc.org/isc/bind9/9.7.2-P2/bind-9.7.2-P2.tar.gz
tar xvfz bind-9.7.2-P2.tar.gz
cd bind-9.7.2-P2/
# ./configure --with-openssl=/usr
# make
# make install

./configure に--with-openssl=/usr のオプションをつけてインストール先を指定する。このときに
checking for OpenSSL library... configure: error: "/usr/include/openssl/opensslv.h" not found

とエラーが出てきた。SSLライブラリーを入れたら正常にインストールできました。
# apt-get install libssl-dev