Redhat Linux升级SSH笔记
发布时间:2006-10-14 8:54:20   收集提供:gaoqian
打开http://www.openssh.org/zh-cn/index.html
找到下载页面 http://www.openssh.org/portable.html#http
例如 http://gulus.usherbrooke.ca/pub/appl/ssh/OpenSSH/portable/

cd /usr/local/src
wget http://gulus.usherbrooke.ca/pub/ ... penssh-3.9p1.tar.gz
tar xvzf openssh-3.9p1.tar.gz
cd openssh-3.9p1
./configure --prefix=/usr --with-pam --with-md5-passwords --sysconfdir=/etc/ssh
make
make install

正常情况已经升级完了,service sshd restart正常
ssh -V 已经显示新的版本
OpenSSH_3.9p1, OpenSSL 0.9.7a Feb 19 2003

by Crossday@Discuz! Board Official
 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50