ネットワークがブリッジに設定された仮想マシンに12.10サーバーがセットアップされています(基本的に、スイッチに接続されたコンピューターとして表示されます)。
を介してopensshdをインストールapt-get
し、ユーザー名とパスワードでputtyを使用してサーバーに接続できました。
次に、公開/秘密キー認証を使用するように設定しました。私は次のことをしました:
- PuttyGenを使用してキーを生成しました。
- 公開キーを
/etc/ssh/myusername/authorized_keys
(暗号化されたホームディレクトリを使用しています)に移動しました。 次の
sshd_config
ように設定します。PubkeyAuthentication yes AuthorizedKeysFile /etc/ssh/%u/authorized_keys StrictModes no PasswordAuthentication no UsePAM yes
puttyまたはWinSCPを使用して接続すると、サポートされている認証方法がありません(サーバーから公開キーが送信されました)というエラーが表示されます。
sshd
デバッグモードで実行すると、次のように表示されます。
PAM: initializing for "username"
PAM: setting PAM_RHOST to "192.168.1.7"
PAM: setting PAM_TTY to "ssh"
userauth-request for user username service ssh-connection method publickey [preauth]
attempt 1 failures 0 [preauth]
test whether pkalg/pkblob are acceptable [preauth[
Checking blacklist file /usr/share/ssh/blacklist.RSA-1023
Checking blacklist file /etc/ssh/blacklist.RSA-1023
temporarily_use_uid: 1000/1000 (e=0/0)
trying public key file /etc/ssh/username/authorized_keys
fd4 clearing O_NONBLOCK
restore_uid: 0/0
Failed publickey for username from 192.168.1.7 port 14343 ssh2
Received disconnect from 192.168.1.7: 14: No supported authentication methods available [preauth]
do_cleanup [preauth]
monitor_read_log: child log fd closed
do_cleanup
PAM: cleanup
なぜこれが起こっているのですか、どうすれば修正できますか?