您好,登錄后才能下訂單哦!
有網絡情況下
1 下載包,編譯
tar zxvf openssh-7.1p1.tar.gz cd openssh-7.1 ./configure --prefix=/usr --sysconfdir=/etc/ssh make make install
2 解決如下環境報錯:
configure: error: *** zlib.h missing - please install first or check config.log ***
yum install openssl openssl-devel -y
3 編譯
yum install make automake gcc gcc-c++ gcc-g77 -y
4 覆蓋配置文件
make install覆蓋/etc/ssh配置文件時可能會報錯,刪掉/etc/ssh下的報錯配置文件,再make install一次就可以了。但是有時候可能需要把整個代碼刪掉重新解壓重復以上過程。
5 如果使用root遠程無法登錄,修改/etc/ssh/sshd_config
PermitRootLogin yes。
6 查看升級后的版本
/usr/bin/ssh -V
無網絡如何升級
1、準備相關的包
openssh下載地址:http://mirror.internode.on.net/pub/OpenBSD/OpenSSH/portable/
openssl相關包下載:http://www.openssl.org/source/
pam相關包下載:http://pkgs.org/centos-6/centos-x86_64/
zlib包下載: http://zlib.net/
2、安裝zlib
tar -zxvf zlib-1.2.8.tar.gz
cd zlib-1.2.8
./configure --prefix=/usr/local/zlib && make && make install
3、安裝openssl-fips
tar zxvf openssl-fips-2.0.5.tar.gz
cd openssl-fips
./config
make && make install
4、安裝openssl
tar -zxvf openssl-1.0.1h.tar.gz
cd openssl-1.0.1h
./config fips --shared
make && make install
5、將新編譯的openssl library 加入系統動態庫鏈接中
echo "/usr/local/ssl/lib" >> /etc/ld.so.conf
ldconfig
6、安裝pam,首先卸載舊版本
查看版本信息:rpm -qa|grep pam
卸載舊版本:rpm -e --nodeps pam-1.1.1-17.el6.x86_64
安裝pam:依次安裝
rpm -ivh tcp_wrappers-devel-7.6-57.el6.x86_64.rpm
pam-1.1.1-20.el6_7.1.x86_64.rpm
pam-devel-1.1.1-20.el6_7.1.x86_64.rpm
7、安裝OpenSSH
tar zxvf openssh-7.1p1.tar.gz
cd openssh-7.1p1
./configure \
--prefix=/usr \
--sysconfdir=/etc/ssh \
--with-md5-passwords \
--with-pam \
--with-tcp-wrappers \
--with-ssl-dir=/usr/local/ssl \
--with-zlib=/usr/local/zlib \
--without-hardening
make && make install
8、加入到系統服務,重啟sshd升級成功
chkconfig --add sshd
service sshd restart
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。