概述
由于安全漏洞扫描显示OpenSSH版本过低需升级至最新版,故编写该文档。
查看服务器基本信息
[[email protected] ~]# ssh -V
OpenSSH_7.4p1, OpenSSL 1.0.2k-fips 26 Jan 2017
[[email protected] ~]# cat /etc/redhat-release
CentOS Linux release 7.8.2003 (Core)
安装Telnet
yum -y install telnet-server
# 添加Telent安全端口
semanage port -a -t telnetd_port_t -p tcp 2312
# 修改Telnet默认端口
sed -i 's/\(^ListenStream=\).*/\12312/' /usr/lib/systemd/system/telnet.socket
systemctl daemon-reload
Service_Restart_Manage telnet.socket
# 自动添加tty
for telnet_tty in {0..9};do
if [[ ! "$(cat /etc/securetty)" =~ "pts/${telnet_tty}" ]];then
sed -i "\$apts/${telnet_tty}" /etc/securetty
fi
done
安装升级依赖
[[email protected] ~]# yum -y install wget gcc zlib-devel openssl-devel pam-devel libselinux-devel
升级OPENSSL
备份旧版openssl
[[email protected] ~]# mv /usr/bin/openssl{,.bak}
[[email protected] ~]# mv /usr/include/openssl{,.bak}
解压并编译安装
[[email protected] ~]# wget https://www.openssl.org/source/openssl-1.1.1k.tar.gz
[[email protected] ~]# tar zxf openssl-1.1.1k.tar.gz -C /usr/src/
[[email protected] ~]# cd /usr/src/openssl-1.1.1k/
[[email protected] openssl-1.1.1k]# ./config --prefix=/usr/local/openssl
[r[email protected] openssl-1.1.1k]# make -j 2 && make install
配置调整
[[email protected] openssl-1.1.1k]# ln -s /usr/local/openssl/bin/openssl /usr/bin/openssl
[[email protected] openssl-1.1.1k]# ln -s /usr/local/openssl/include/openssl /usr/include/openssl
[[email protected] openssl-1.1.1k]# echo "/usr/local/openssl/lib" >> /etc/ld.so.conf
[[email protected] openssl-1.1.1k]# ldconfig -v
验证版本
[[email protected] openssl-1.1.1k]# openssl version
OpenSSL 1.1.1k 25 Mar 2021
升级OPENSSH
停止原有服务及备份数据
[[email protected] ~]# systemctl stop sshd
[[email protected] ~]# mv /etc/ssh{,.bak}
[[email protected] ~]# mv /etc/pam.d/sshd{,.bak}
卸载原有openssh包
[[email protected] ~]# rpm -e --nodeps `rpm -qa | grep openssh`
下载并解压安装包
[[email protected] ~]# wget https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-8.6p1.tar.gz
[[email protected] ~]# tar zxf openssh-8.6p1.tar.gz
[[email protected] ~]# cd openssh-8.6p1
编译安装
[[email protected] openssh-8.6p1]# ./configure --prefix=/usr --sysconfdir=/etc/ssh --with-md5-passwords --with-pam --with-zlib --with-tcp-wrappers --with-ssl-dir=/usr/local/openssl --without-hardening
[[email protected] openssh-8.6p1]# make -j 2 && make install
拷贝配置文件并启动
[[email protected] openssh-8.6p1]# cp contrib/redhat/sshd.init /etc/init.d/sshd
[[email protected] openssh-8.6p1]# mv /etc/pam.d/sshd.bak /etc/pam.d/sshd
[[email protected] openssh-8.6p1]# mv /etc/ssh /etc/ssh_update.bak
[[email protected] openssh-8.6p1]# mv /etc/ssh.bak /etc/ssh
[[email protected] openssh-8.6p1]# chmod 600 /etc/ssh/*key
[[email protected] openssh-8.6p1]# chkconfig --add sshd
[[email protected] openssh-8.6p1]# chkconfig sshd on
[[email protected] openssh-8.6p1]# systemctl restart sshd
允许Root登陆
[[email protected] ~]# sed -i 's/^#\(PermitRootLogin \).*/\1yes/' /etc/ssh/sshd_config
版本验证
[root@localhost openssh-8.6p1]# ssh -V
OpenSSH_8.6p1, OpenSSL 1.1.1k 25 Mar 2021
遇到的问题
Job for sshd.service failed because the control process exited with error code. See "systemctl status sshd.service" and "journalctl -xe" for details.
解决办法
grep sshd /var/log/audit/audit.log | audit2allow -M mypol
semodule -i mypol.pp