Ubuntu 配置SSH伺服器

i門外青山發表於2020-10-08

一般Ubuntu都會預設安裝openssh-client,但是沒有安裝openssh-server。

安裝ssh伺服器

sudo apt install openssh-server

安裝ssh客戶端

sudo apt install openssh-client

 

 配置ssh客戶端,去掉PasswordAuthentication yes前面的#號,儲存退出

sudo vi /etc/ssh/ssh_config

配置ssh伺服器,vim /etc/ssh/sshd_config 把PermitRootLogin prohibit-password改成PermitRootLogin yes,儲存退出。

 

重啟ssh服務

sudo /etc/init.d/ssh restart

 

相關文章