openssl-1.0.2n

openssl-1.0.2n が出ていたので入れ換えておいた。

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

ssh を更新

cd /usr/local/src/openssh-7.6p1
make distclean
./configure --with-tcp-wrappers --with-ssl-dir=/usr/local/ssl --with-zlib=/usr/local --sysconfdir=/usr/local/etc/ssh
make
make install
rehash
/etc/rc.d/sshd restart
ssh -V
OpenSSH_7.6p1, OpenSSL 1.0.2n  7 Dec 2017

bind を更新

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