CentOS Stream 9 OpenSSH パスワード認証を禁止する方法

環境
CentOS Stream 9

概要
鍵ペア認証にした場合、以下のように SSH サーバー側でパスワード認証を禁止すると、よりセキュアな環境とすることができます。

設定方法
# vi /etc/ssh/sshd_config

1.65行目 : パスワード認証不可に変更
PasswordAuthentication no

2. 69行目 : 有効になっている場合は合わせて [no] に変更
# Change to no to disable s/key passwords
#KbdInteractiveAuthentication yes
KbdInteractiveAuthentication no

sshdを再起動します
# systemctl restart sshd

CentOS Stream 9

Posted by arkgame