ユーザーに RSA キーを要求するように SSH サーバーを構成しようとしています。これを行うには、設定sshd_config
を
RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile %h/.ssh/authorized_keys
と
# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no
# Change to no to disable tunnelled clear text passwords
PasswordAuthentication no
と
UsePAM no
次にsudo /etc/init.d/ssh restart
、サーバーを再起動します。
rsa_key
Mac を含めたので、パスワードを要求せずにログインできるため、これはある程度機能しているようです。ただし、キーを含めていないコンピューターから入ろうとするとssh
、パスワードの入力を求められ、入力すると入らせてくれます。
私は何を間違っていますか?