não pode forçar o ssh a usar uma chave particular

3

Eu tentei especificar a chave a ser usada, mas por algum motivo o ssh ainda usa uma chave diferente como ver abaixo

$ cat ~/.ssh/config                                        
Host BitBucket
  HostName bitbucket.org
  IdentityFile ~/.ssh/id_rsa


$ ssh -v [email protected]                                 
OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011
debug1: Reading configuration data /Users/gaurish/.ssh/config
debug1: Reading configuration data /etc/ssh_config
debug1: /etc/ssh_config line 20: Applying options for *
debug1: Connecting to bitbucket.org [131.103.20.167] port 22.
debug1: Connection established.
debug1: identity file /Users/gaurish/.ssh/id_rsa type 1
debug1: identity file /Users/gaurish/.ssh/id_rsa-cert type -1
debug1: identity file /Users/gaurish/.ssh/id_dsa type -1
debug1: identity file /Users/gaurish/.ssh/id_dsa-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.2
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3
debug1: match: OpenSSH_5.3 pat OpenSSH_5*
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 97:8c:1b:f2:6f:14:6b:5c:3b:ec:aa:46:46:74:7c:40
debug1: Host 'bitbucket.org' is known and matches the RSA host key.
debug1: Found key in /Users/gaurish/.ssh/known_hosts:2
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/gaurish/.ssh/wowza.key
debug1: Remote: Forced command: conq deploykey:129587
debug1: Remote: Port forwarding disabled.
debug1: Remote: X11 forwarding disabled.
debug1: Remote: Agent forwarding disabled.
debug1: Remote: Pty allocation disabled.
debug1: Server accepts key: pkalg ssh-rsa blen 279
debug1: Remote: Forced command: conq deploykey:129587
debug1: Remote: Port forwarding disabled.
debug1: Remote: X11 forwarding disabled.
debug1: Remote: Agent forwarding disabled.
debug1: Remote: Pty allocation disabled.
debug1: Authentication succeeded (publickey).
Authenticated to bitbucket.org ([131.103.20.167]:22).
debug1: channel 0: new [client-session]
debug1: Requesting [email protected]
debug1: Entering interactive session.
debug1: Sending environment.
debug1: Sending env LC_CTYPE =
PTY allocation request failed on channel 0
authenticated via a deploy key.

You can use git or hg to connect to Bitbucket. Shell access is disabled.
debug1: client_input_channel_req: channel 0 rtype exit-status reply 0
debug1: client_input_channel_req: channel 0 rtype [email protected] reply 0
debug1: channel 0: free: client-session, nchannels 1
Connection to bitbucket.org closed.
Transferred: sent 3392, received 2904 bytes, in 0.8 seconds
Bytes per second: sent 4162.6, received 3563.7
debug1: Exit status 0

Como obtenho o ssh para usar id_rsa para bitbucket?

    
por CuriousMind 10.03.2014 / 22:16

4 respostas

3

Adicione IdentitiesOnly yes à seção apropriada .ssh / config para fazer com que o ssh ofereça apenas a identidade especificada. Além disso, como zhenech mencionado acima, você precisa usar ssh BitBucket para as opções na seção Host BitBucket entrarem em vigor ou adicionar bitbucket.org à linha Host . Por exemplo:

Host BitBucket bitbucket.org
  HostName bitbucket.org
  IdentityFile ~/.ssh/id_rsa
  IdentitiesOnly Yes
    
por 12.07.2014 / 05:17
1

Quando você escreve Host BitBucket , você também tem que ssh BitBucket , não o nome do host real (mas você pode colocar isso na linha do Host ...)

    
por 10.03.2014 / 22:28
0

Atualizar

Acho que o problema é que você estava usando outra chave anteriormente. Por favor, remova o arquivo ~/.ssh/known_hosts :

rm ~/.ssh/known_hosts

De qualquer forma:

debug1: Authentication succeeded (publickey).

Ele está funcionando corretamente e a mesma chave especificada está sendo usada. A conexão é fechada devido a um motivo especificado no log: você não pode usar a chave para conectar-se diretamente por meio do SSH, só é permitido usá-la somente via Git.

Há algo mais que você está tentando realizar, já que não é muito claro?

    
por 10.03.2014 / 22:26
0

O SSH não está oferecendo uma chave diferente.

Ele está tentando a chave que você especificou no seu arquivo de configuração, e depois disso ele não autentica, ele tenta qualquer outra chave que possa encontrar em seu diretório .ssh.

Quando ele tenta wowza.key, a autenticação é estabelecida.

No entanto, por algum motivo, você está tentando abrir um shell para bitbucket.org, o que não é permitido, o que bitbucket está dizendo.

You can use git or hg to connect to Bitbucket. Shell access is disabled.
    
por 21.03.2014 / 21:56

Tags