PCからローカルとインターネットの両方を介してUbuntuマシンにSSH接続することに成功しました。しかし、Macでは運が悪かった。 SSHキーの生成と構成のすべての手順を実行し、ローカルとインターネットの両方でsshを実行しようとしましたが、何を試しても同じエラーメッセージが表示され続けますアクセスが拒否されました。(公開鍵)
MacBook-Pro:~ mbp$ ssh -vT [email protected]
OpenSSH_5.9p1, OpenSSL 0.9.8r 8 Feb 2011
debug1: Reading configuration data /etc/ssh_config
debug1: /etc/ssh_config line 20: Applying options for *
debug1: Connecting to xxx.xxx.xxx.xxx [xxx.xxx.xxx.xxx] port 22.
debug1: Connection established.
debug1: identity file /Users/mbp/.ssh/id_rsa type 1
debug1: identity file /Users/mbp/.ssh/id_rsa-cert type -1
debug1: identity file /Users/mbp/.ssh/id_dsa type -1
debug1: identity file /Users/mbp/.ssh/id_dsa-cert type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.0p1 Debian-3ubuntu1
debug1: match: OpenSSH_6.0p1 Debian-3ubuntu1 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.9
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Server Host key: RSA xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx
The authenticity of Host 'xxx.xxx.xxx.xxx (xxx.xxx.xxx.xxx)' can't be established.
RSA key fingerprint is xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'xxx.xxx.xxx.xxx' (RSA) to the list of known hosts.
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /Users/mbp/.ssh/id_rsa
debug1: Authentications that can continue: publickey
debug1: Trying private key: /Users/mbp/.ssh/id_dsa
debug1: No more authentication methods to try.
Permission denied (publickey).
キーが~xxx/.ssh/authorized_keys
のサーバーで承認されていることを確認し、サーバーアドレスを正しく入力したことを確認してください。
たぶん、それはそれらの2つのことの1つになるでしょう。
SshしようとしているIPアドレスのエントリが〜/ .ssh/known_hostsにすでにありますが、キーが異なります。
〜/ .ssh/unknown_hostsを手動で編集し、サーバーのIPアドレスを含む行を削除する必要があります
ボーナス
次のコマンドを実行して、問題のあるキーを自動的に削除します
(もちろん、IPアドレスをubuntuサーバーのIPに変更します)
ssh-keygen -R 192.168.1.10