2021-05-12 14:32:11
SecureCRT SSH連線一直提示密碼錯誤
遇到在密碼正確的情況下ssh密碼不對,最後一種是我遇到的問題上面的是網上大家遇到的總結一下。我的問題是selinux沒有關閉,被改動了設定。
1、許可權問題
.ssh目錄,以及/home/當前使用者 需要700許可權,參考以下操作調整
sudo chmod 700 ~/.ssh
sudo chmod 700 /home/當前使用者
.ssh目錄下的authorized_keys檔案需要600或644許可權,參考以下操作調整
sudo chmod 600 ~/.ssh/authorized_keys
2、StrictModes問題
編輯
sudo vi /etc/ssh/sshd_config
找到
#StrictModes yes
改成
StrictModes no
3 RSAAuthentication問題/etc/ssh/sshd_config
RSAAuthentication yes
PubkeyAuthentication yes
如果還不行,可以用ssh -vvv 目標機器ip 檢視詳情,根據輸出內容具體問題具體分析了
4、#getenforce 檢視selinux狀態
[root@localhost ~]# getenforce ---------------檢視selinux狀態
Enforcing ----------------------------------顯示正在實施執行
#setenforce 0|1 ------------------------------設定selinux關閉|開啟
[root@localhost ~]# getenforce ---------------再檢視selinux狀態
Permissive------------------------------------可以關閉,但只是零時關閉
vi /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=disabled --------------------------需要把原來的enforcing改成disabled
# SELINUXTYPE= can take one of these two values:
# targeted - Targeted processes are protected,
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
SecureCRT 連線VirtualBox 中的Ubuntu -埠轉發 http://www.linuxidc.com/Linux/2015-12/126258.htm
用SecureCRT 實現 WIN7 與 Linux 雙向通訊的問題及檔案互傳問題解決 http://www.linuxidc.com/Linux/2014-08/105412.htm
如何使用SecureCRT6.6.2通過SSH方式登入Ubuntu系統 http://www.linuxidc.com/Linux/2011-03/33024p4.htm
SecureCRT 連線 Ubuntu http://www.linuxidc.com/Linux/2013-06/85824.htm
Ubuntu 12.04 + 虛擬機器VMware 9 + Secure CRT + EditPlus 本地C++開發環境搭建 http://www.linuxidc.com/Linux/2013-05/84820.htm
利用SecureCRT在Linux與Windows之間傳輸檔案 http://www.linuxidc.com/Linux/2014-08/105413.htm
Ubuntu 14.10安裝SecureCRT 7.3 http://www.linuxidc.com/Linux/2014-10/108709.htm
相關文章