openssl-1.0.1

openssl-1.0.1 が出ていたので ssh をリビルドしておいた。
確認しておく

%ssh -V
OpenSSH_5.9p1, OpenSSL 1.0.0h 12 Mar 2012

OpenSSL をビルド

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

OpenSSH をリビルド

cd /usr/local/src/openssh-5.9p1
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

確認しておく

%rehash
%ssh -V
OpenSSH_5.9p1, OpenSSL 1.0.1 14 Mar 2012