GIT ssh

Hi,

I have just upgraded my account and I am trying to use GIT.

I have uploaded two public keys, DSA and RSA for my user.

Whe I try to connect with GIT, I get an error:

git clone ssh://stephanekonstantaropoulos@git3.xp-dev.com/pdmobile

Cloning into pdmobile...
Connection closed by 88.198.13.206
fatal: The remote end hung up unexpectedly

Here is the verbose output of ssh, can you help?

ssh -v stephanekonstantaropoulos@gitslave.xp-dev.com
OpenSSH_5.5p1, OpenSSL 1.0.0d-fips 8 Feb 2011
debug1: Reading configuration data /home/stephane/.ssh/config
debug1: Applying options for *
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to gitslave.xp-dev.com [195.74.55.37] port 22.
debug1: Connection established.
debug1: could not open key file ‘/etc/ssh/ssh_host_key’: No such file or directory
debug1: could not open key file ‘/etc/ssh/ssh_host_dsa_key’: No such file or directory
debug1: could not open key file ‘/etc/ssh/ssh_host_rsa_key’: No such file or directory
debug1: identity file /home/stephane/.ssh/identity type 0
debug1: identity file /home/stephane/.ssh/identity-cert type -1
debug1: identity file /home/stephane/.ssh/id_rsa type 1
debug1: identity file /home/stephane/.ssh/id_rsa-cert type -1
debug1: identity file /home/stephane/.ssh/id_dsa type 2
debug1: identity file /home/stephane/.ssh/id_dsa-cert type -1
debug1: Remote protocol version 2.0, remote software version SSHD-CORE-0.5.0-XP1
debug1: no match: SSHD-CORE-0.5.0-XP1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.5
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-cbc hmac-md5 zlib@openssh.com
debug1: kex: client->server aes128-cbc hmac-md5 zlib@openssh.com
debug1: sending SSH2_MSG_KEXDH_INIT
debug1: expecting SSH2_MSG_KEXDH_REPLY
debug1: Host ‘gitslave.xp-dev.com’ is known and matches the RSA host key.
debug1: Found key in /home/stephane/.ssh/known_hosts:5
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
Connection closed by 195.74.55.37

Forum Topic Options

Feeds

Forum Topic and Comments

rs on Wed 23 Mar, 2011

You’ve hit a bug! Compression looks to be broken. I’ll get that fixed.

In the meantime, you could add this to your SSH config (normally $HOME/.ssh/config) to disable compression to your repository:

Host git3.xp-dev.com
Compression no
 

You do not have sufficient permissions to comment