2013-07-17 19 views
0

首先,我試圖顯式指定(看看下面的comman),它會提示輸入passpharse。所以,它正在閱讀正確的密鑰文件。奇怪的Github問題 - 權限被拒絕(公鑰)甚至bitbucket有相同的問題

$ ssh -i ~/.ssh/id_rsa.pub -vT [email protected] 
OpenSSH_4.6p1, OpenSSL 0.9.8e 23 Feb 2007 
debug1: Connecting to github.com [204.232.175.90] port 22. 
debug1: Connection established. 
debug1: identity file /c/Users/mohit_thakral/.ssh/id_rsa.pub type 1 
debug1: Remote protocol version 2.0, remote software version PANSSH_0.1 
debug1: no match: PANSSH_0.1 
debug1: Enabling compatibility mode for protocol 2.0 
debug1: Local version string SSH-2.0-OpenSSH_4.6 
debug1: SSH2_MSG_KEXINIT sent 
debug1: SSH2_MSG_KEXINIT received 
debug1: kex: server->client aes128-cbc hmac-md5 none 
debug1: kex: client->server aes128-cbc 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: Host 'github.com' is known and matches the RSA host key. 
debug1: Found key in /c/Users/mohit_thakral/.ssh/known_hosts:1 
debug1: ssh_rsa_verify: signature correct 
debug1: SSH2_MSG_NEWKEYS sent 
debug1: expecting SSH2_MSG_NEWKEYS 
debug1: SSH2_MSG_NEWKEYS received 
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 public key: /c/Users/mohit_thakral/.ssh/id_rsa.pub 
debug1: Server accepts key: pkalg ssh-rsa blen 277 
debug1: PEM_read_PrivateKey failed 
debug1: read PEM private key done: type <unknown> 
Enter passphrase for key '/c/Users/mohit_thakral/.ssh/id_rsa.pub': 
debug1: No more authentication methods to try. 
Permission denied (publickey). 

第二我試過沒有文件。還是同樣的問題。

$ ssh -vT [email protected] 
OpenSSH_4.6p1, OpenSSL 0.9.8e 23 Feb 2007 
debug1: Connecting to github.com [204.232.175.90] port 22. 
debug1: Connection established. 
debug1: identity file /c/Users/mohit_thakral/.ssh/identity type -1 
debug1: identity file /c/Users/mohit_thakral/.ssh/id_rsa type 1 
debug1: identity file /c/Users/mohit_thakral/.ssh/id_dsa type -1 
debug1: Remote protocol version 2.0, remote software version PANSSH_0.1 
debug1: no match: PANSSH_0.1 
debug1: Enabling compatibility mode for protocol 2.0 
debug1: Local version string SSH-2.0-OpenSSH_4.6 
debug1: SSH2_MSG_KEXINIT sent 
debug1: SSH2_MSG_KEXINIT received 
debug1: kex: server->client aes128-cbc hmac-md5 none 
debug1: kex: client->server aes128-cbc 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: Host 'github.com' is known and matches the RSA host key. 
debug1: Found key in /c/Users/mohit_thakral/.ssh/known_hosts:1 
debug1: ssh_rsa_verify: signature correct 
debug1: SSH2_MSG_NEWKEYS sent 
debug1: expecting SSH2_MSG_NEWKEYS 
debug1: SSH2_MSG_NEWKEYS received 
debug1: SSH2_MSG_SERVICE_REQUEST sent 
debug1: SSH2_MSG_SERVICE_ACCEPT received 
debug1: Authentications that can continue: publickey 
debug1: Next authentication method: publickey 
debug1: Trying private key: /c/Users/mohit_thakral/.ssh/identity 
debug1: Offering public key: /c/Users/mohit_thakral/.ssh/id_rsa 
debug1: Server accepts key: pkalg ssh-rsa blen 277 
debug1: read PEM private key done: type RSA 
debug1: Authentications that can continue: publickey 
debug1: Trying private key: /c/Users/mohit_thakral/.ssh/id_dsa 
debug1: No more authentication methods to try. 
Permission denied (publickey). 

我也使用以下命令檢查了密鑰的簽名。

ssh-keygen -lf ~/.ssh/id_rsa.pub 
+0

你是否告訴各自的服務你的公鑰是什麼? –

+0

是的,好的。所以,看起來像我公司的網絡不允許的東西。我能弄清楚什麼是 – Mohit

+0

我知道出站SSH可以被許多企業網絡阻止,以防止在網絡之外進行隧道傳輸。看看使用HTTPS克隆存儲庫而不是SSH。 –

回答

0

首先:您不使用公鑰進行身份驗證,而是使用私鑰。

它看起來像是你沒有私鑰,或者你沒有告訴GitHub你的公鑰是公鑰cat ~/.ssh/id_rsa.pub,然後將其複製並粘貼到GitHub帳戶面板的SSH密鑰中。

如果您仍然遇到問題,也可以嘗試聯繫GitHub支持,網址爲[email protected]

+0

嗨, 感謝您的回答。道歉,我在某處使用私鑰讀取它,但在放置這篇文章時忘記了。 我也在mobaxterm上試過。生成的新密鑰將其添加到github的ssh密鑰中,並嘗試使用ssh -T [email protected],而沒有密鑰。它沒有工作。 – Mohit