歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Unix知識 >> 關於Unix >> RedHat源碼升級-(OpenSSL+OpenSSH)

RedHat源碼升級-(OpenSSL+OpenSSH)

日期:2017/3/6 15:40:22   编辑:關於Unix
升級OpenSSL CODE: [Copy to clipboard] cd /usr/local/src wget http://www.openssl.org/source/openssl-0.9.7e.tar.gz tar xzvf openssl-0.9.7e.tar.gz cd openssl-0.9.7e ./config --prefix=/usr/local/openssl-0.9.7e make make test make install 升級O 升級OpenSSL

CODE:[Copy to clipboard] clearcase/" target="_blank" >cc3 border=0>cd /usr/local/src
wget http://www.openssl.org/source/openssl-0.9.7e.tar.gz
tar xzvf openssl-0.9.7e.tar.gz
cd openssl-0.9.7e
./config --prefix=/usr/local/openssl-0.9.7e
make
make test
make install

升級OpenSSH(依照最新的OpenSSL)

CODE:[Copy to clipboard] cd /usr/local/src
wget http://gulus.usherbrooke.ca/pub/appl/ssh/OpenSSH/portable/openssh-3.9p1.tar.gz
tar xzvf openssh-3.9p1.tar.gz
cd openssh-3.9p1
./configure --prefix=/usr --with-pam --with-zlib=/usr/local/zlib --with-ssl-dir=/usr/local/openssl-0.9.7e --with-md5-passwords --mandir=/usr/share/man
(如果你自己編譯安裝了zlib,就加--with-zlib=DIR這個參數,如果默認安裝,就換成--with-zlib)

make
make install

OK,現在ssh -V看一下版本吧

QUOTE:[root@server1 openssh-3.9p1]# ssh -V
OpenSSH_3.9p1, OpenSSL 0.9.7e 25 Oct 2004
[root@server1 openssh-3.9p1]#

Copyright © Linux教程網 All Rights Reserved