#!/bin/bash
###By:Eren 2020-05-26
######################
#安装包存放目录/tmp
######################
cd /tmp/openssh
#安装本地依赖包
yum -y localinstall /tmp/openssh/*.rpm >/dev/null
if [ $? -eq 0 ];then
echo -e "依赖包安装成功" "\033[32m Success\033[0m"
else
echo -e "依赖包安装失败" "\033[31m Failure\033[0m"
sleep 3
exit 1
fi
#部署openssl
cd /tmp/openssh/openssl-1.1.1g/
./config --prefix=/usr/local/ssl shared >/dev/null
if [ $? -eq 0 ];then
make > /dev/null 2>&1
make install > /dev/null 2>&1
else
echo -e "编译安装OpenSSL失败" "\033[31m Failure\033[0m"
sleep 3
exit 2
fi
echo "/usr/local/ssl/lib" >> /etc/ld.so.conf
/sbin/ldconfig -v
mv /usr/bin/openssl /usr/bin/openssl.old
ln -s /usr/local/ssl/bin/openssl /usr/bin/openssl
ln -s /usr/local/ssl/include/openssl /usr/include/openssl
ln -s /usr/local/ssl/lib/libssl.so /usr/local/lib64/libssl.so
strings /usr/local/lib64/libssl.so |grep OpenSSL
/usr/bin/openssl version
cp /etc/pam.d/sshd /etc/pam.d/sshd.old
cp /etc/ssh/sshd_config /etc/ssh/sshd_config.old
#部署openssh
cd /tmp/openssh/openssh-8.3p1/
install -v -m700 -d /var/lib/sshd
chown -v root:sys /var/lib/sshd
/usr/bin/autoreconf
#编译openssh
./configure --prefix=/usr --sysconfdir=/etc/ssh --with-md5-passwords --with-pam --with-zlib --with-openssl-includes=/usr/local/ssl/lib --with-privsep-path=/var/lib/sshd --with-ssl-dir=/tmp/openssh/openssl-1.1.1g >/dev/null 2>&1
if [ $? -eq 0 ];then
make >/dev/null
echo -e "编译openssh成功" "\033[32m Success\033[0m"
else
echo -e "编译OpenSSH失败" "\033[31m Failure\033[0m"
sleep 3
exit 3
fi
#安装openssh
if [ $? -eq 0 ];then
make install >/dev/null
echo -e "OpenSSH安装成功" "\033[32m Success\033[0m"
else
echo -e "OpenSSH安装失败" "\033[31m Failure\033[0m"
sleep 3
exit 4
fi
#更新ssh配置文件
sed -i 's|GSSAPIAuthentication yes|#GSSAPIAuthentication yes|' /etc/ssh/ssh_config
cat /tmp/openssh/sshd_config >/etc/ssh/sshd_config
chmod 600 /etc/ssh/ssh_host_rsa_key
chmod 600 /etc/ssh/ssh_host_ecdsa_key
chmod 600 /etc/ssh/ssh_host_ed25519_key
#更新ssh服务启动配置文件
rm -rf /usr/lib/systemd/system/sshd.service
systemctl daemon-reload
cp /tmp/openssh/openssh-8.3p1/contrib/redhat/sshd.init /etc/init.d/sshd
chkconfig --add sshd
chkconfig sshd on
/etc/init.d/sshd restart
/etc/init.d/sshd status
#验证升级版本
ssh -V
echo -e "OpenSSH安装完成" "\033[31m Success\033[0m"