OpenSSH / Git Problema no Ubuntu 14.04

0

Estou usando o Ubuntu 14.04 e estou tentando clonar um repositório git via ssh. Infelizmente isso não funciona devido a problemas com o openssh-client.

No começo, não consegui me conectar ao servidor SSH. A seguinte saída de depuração foi produzida:

OpenSSH_6.6.1, OpenSSL 1.0.1f 6 Jan 2014
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to test.com [ommitted] port 22.
debug1: Connection established.
debug1: identity file /home/jan/.ssh/id_rsa type 1
debug1: identity file /home/jan/.ssh/id_rsa-cert type -1
debug1: identity file /home/jan/.ssh/id_dsa type -1
debug1: identity file /home/jan/.ssh/id_dsa-cert type -1
debug1: identity file /home/jan/.ssh/id_ecdsa type -1
debug1: identity file /home/jan/.ssh/id_ecdsa-cert type -1
debug1: identity file /home/jan/.ssh/id_ed25519 type -1
debug1: identity file /home/jan/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3
debug1: match: OpenSSH_5.3 pat OpenSSH_5* compat 0x0c000000
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<3072<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP

Após ter descomentado a linha Ciphers e MACs em / etc / ssh / ssh_config como descrito em link . Eu consigo conectar via ssh.

Infelizmente ainda não consigo clonar o repositório via git usando ssh:

jan@jan-ThinkPad-T510:~$ GIT_CURL_VERBOSE=1 GIT_TRACE=1 git clone   ssh://user@host/path/to/repo
trace: built-in: git 'clone' 'ssh://user@host/path/to/repo' Cloning into 'repo'...
trace: run_command: 'ssh' 'user@host' 'git-upload-pack '\''/path/to/repo'\'''

Alguma ideia do que causa este problema?

    
por Jan B 02.10.2014 / 17:45

1 resposta

0

O problema ocorreu devido a diferentes configurações de MTU e um firewall provavelmente mal configurado no meu provedor de Internet (KabelBW).

Eu resolvi o problema configurando o MTU para 576 via

ifconfig wlan0 mtu 576

Observe que depois de definir o MTU, você precisa desconectar e reconectar-se à rede. Para mais detalhes, consulte a Incompatibilidade na MTU do Snailbook

    
por Jan B 08.10.2014 / 13:43