注:此處使用的是vmware生成乙個純終端介面的kali,使用xshell連線方便使用
root使用者預設是禁止的,所以我們要去改配置,此處我們的是kali-2020,使用的xshell家庭版連線
vim /etc/ssh/sshd_config
找到permitrootlogin這欄,取消注釋,改為yes
把passwordauthentification找到,取消注釋,改為yes,依次如下圖所示
再重啟即可ssh服務即可:
systemctl restart ssh
過程中可能遇到以下問題,vmware中的kali無法連線網路,從而xshell無法連線,解決辦法:解決ifconfig只有lo沒有eth0的問題
測試連線成功,截圖略
SSH遠端登陸
ssh是一種網路協議,用於計算機之間的加密登陸。windows putty linux openssh 第一次登陸對方主機,系統會出現如下提示,表示無法確認host主機的真實性,只知道公鑰指紋,是否繼續連線 ssh user host the authenticity of host host 19...
ssh遠端登陸
一 應用場景 有一台linux伺服器,現在需要通過linux作業系統或者windows作業系統遠端登陸這台伺服器。二 linux 遠端登入linux伺服器 ubuntu為例 1 首先,伺服器端需要安裝ssh伺服器,方法為 sudo apt get updatesudo apt get install...
Linux 允許root使用者遠端登陸
首先確保ssh服務已經安裝 ps e grep ssh orservice ssh start如果沒有安裝則 apt get install ssh安裝完之後 檢視 etc ssh sshd config 目前被注釋,且預設為禁止狀態 permitrootlogin prohibit passwor...