openssl-1.0.1k

openssl-1.0.1k が出ていたのでインストールしておいた。関連して ssh と bind も。

https://www.openssl.org/source/openssl-1.0.1k.tar.gz
cd /usr/local/src
tar zxf openssl-1.0.1k.tar.gz
cd /usr/local/src/openssl-1.0.1k
./config
make
make test
make install

ssh をリビルド

cd /usr/local/src/openssh-6.7p1
make distclean
./configure --with-tcp-wrappers --with-ssl-dir=/usr/local/ssl --with-zlib=/usr/local --sysconfdir=/usr/local/etc/ssh
make
make install
/etc/rc.d/sshd restart
ssh -V

bind をリビルド

cd /usr/local/src/bind-9.10.1-P1
make distclean
./configure --with-openssl=/usr/local/ssl
make
bin/tests/system/ifconfig.sh up
make test
make install
/etc/rc.d/named restart
/usr/local/sbin/named -V