1.ssh升級之后root用戶默認(rèn)禁止登錄,需要有一個可以登錄的普通用戶。設(shè)置位置在/etc/ssh/sshd_config 修改 PermitRootLogin 為yes 或 no 即可
2.升級之后sshd默認(rèn)是關(guān)閉的,需要設(shè)置開機(jī)自啟。
3.升級成功之后要及時關(guān)閉telnet
4.一定要關(guān)閉selinux不然的話開機(jī)自啟無法生效
1.yum install telnet-server -y
2.chkconfig telnet on
3./etc/init.d/xinetd start
4.netstat -lntup|grep 23
5.echo "pts/0" >>/etc/securetty
echo "pts/1" >>/etc/securetty
6.vim /etc/pam.d/remote
#%PAM-1.0
#auth required pam_securetty.so 注釋這行
或者sed -i 's/auth required/#auth required/g' /etc/pam.d/remote
7. /etc/init.d/xinetd restart
8.設(shè)置白名單并測試telnet 登錄
1.yum -y install gcc-c++ zlib zlib-devel pam-devel
2.cp /usr/lib64/libssl.so.1.0.1e{,.bak}
cp /usr/lib64/libcrypto.so.1.0.1e{,.bak} #備份依賴包
1.tar -xvf openssl-1.1.1d.tar.gz
2.cd openssl-1.1.1d/
3. ./config --prefix=/usr/local/openssl/1.1.1d --shared #編譯安裝 查看路徑
4.make
5.mv /usr/bin/openssl /usr/bin/openssl.bak #刪除系統(tǒng)上的openssl
rpm -e `rpm -qa | grep openssl` --nodeps #
6.make install
7.ln -s /usr/local/openssl/1.1.1d/bin/openssl /usr/bin/openssl
ln -s /usr/local/openssl/1.1.1d/include/openssl /usr/include/openssl
8.echo "/usr/local/openssl/1.1.1d/lib" >> /etc/ld.so.conf
9.ldconfig #刷新配置
10.ldconfig -v #查看鏈接路徑是否正確
1.tar -xvf openssh-8.1p1.tar.gz
2.cd openssh-8.1p1/
3.mv /etc/pam.d/sshd /etc/pam.d/sshd.bak
4. ./configure --prefix=/usr --sysconfdir=/etc/ssh --with-pam --with-zlib --with-ssl-dir=/usr/local/openssl/1.1.1d/ --with-md5-passwords --mandir=/usr/share/man --without-openssl-header-check
5.make
6.rpm -e `rpm -qa | grep openssh` --nodeps
7.make install
8.cp contrib/redhat/sshd.init /etc/init.d/sshd
cp contrib/redhat/sshd.pam /etc/pam.d/sshd
9.ssh -V
10.service sshd start
11.chkconfig --add sshd
chkconfig sshd on
12.vim /etc/ssh/sshd_config PermitRootLogin yes #允許root登錄,可以不設(shè)置,但要需要保證有一個可登錄的普通用戶。
或者 sed -i 's/^\#PermitRootLogin prohibit-password/PermitRootLogin yes/g' /etc/ssh/sshd_config
12.service sshd restart
網(wǎng)站欄目:rhel6.5升級ssl1.1.1d和openssh-8.1p1
本文地址:http://chinadenli.net/article12/jhhggc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開發(fā)、營銷型網(wǎng)站建設(shè)、用戶體驗(yàn)、標(biāo)簽優(yōu)化、虛擬主機(jī)、ChatGPT
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)