X

SSH 只允許憑證登入 (關閉密碼登入)

Linux SSH 想要關閉密碼登入,只有允許使用 Public-Key / Private-Key 登入,修改設定值如下:

  1. vim /etc/ssh/sshd_config
    • PasswordAuthentication no
    • PermitEmptyPasswords no
    • PubkeyAuthentication yes # default
  2. 重啟 sshd 即可
Tsung: 對新奇的事物都很有興趣, 喜歡簡單的東西, 過簡單的生活.
Related Post