1. 程式人生 > >kali使用ssh進行登入

kali使用ssh進行登入

1.首先是使用命令切換  : ~#  cd /etc/ssh 檢視配置檔案

2.使用vim進行編輯檔案 vim ssh_config

找到其中的兩項 1. 將其修改 # PasswordAuthentication no 去掉其註釋,並且將no改為yes

                 2.PasswordAuthentication no 改為yes 

3.然後:wq

退出之後可能存在登入之後密碼不正確的情況,此時需要修改配置檔案 sshd_config

將 # Authentication:

 LoginGraceTime 2m

PermitRootLogin prohibit-password

StrictModes yes

修改為 # Authentication:

LoginGraceTime 2m

PermitRootLogin yes

StrictModes yes

然後:wq儲存檔案




4.此時需要進行重啟ssh服務 

service ssh strat

或者是

service ssh restart(如果在沒有修改第二個配置檔案sshd_config的情況下,可以進行登入的話,此時這條指令就不再需要了)

然後使用xshell進行遠端登入即可!