A transferência SCP não funciona e o SSH ls congela

1

Eu estou tentando copiar algum arquivo via ssh com uma chave pública SSH-RSA. Eu já aceitei a chave do host no meu servidor e vice-versa para que as chaves sejam sincronizadas. Agora tento conectar via SSH ao host e eu sucesso, mas congela se invoco um "ls" em algumas pastas. Também tento fazer um pedido scp da seguinte forma:

scp -v username@host_ip:/folder/folder1/file.txt /home/user/Desktop

E eu recebo esta resposta:

OpenSSH_5.3p1, OpenSSL 1.0.0-fips 29 Mar 2010
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to <ip_host> [<ip_host>] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: Host '<ip_host>' is known and matches the RSA host key.
debug1: ssh_rsa_verify: signature correct
debug1: Authentication succeeded (publickey).
debug1: channel 0: new [client-session]
debug1: Entering interactive session.
debug1: Sending environment.
debug1: Sending env LANG = fr_FR.UTF-8
debug1: Sending command: scp -v -f /folder/folder1/file.txt
Sending file modes: C0664 3352 file.txt
Sink: C0664 3352 file.txt
file.txt                                0%    0     0.0KB/s   --:-- ETA^
file.txt                                0%    0     0.0KB/s - stalled -^

Eu pesquisei e tentei alterar o MTU de 1500 para 1492, mas nada mudou. Alguém tem alguma idéia do que poderia acontecer? Muito obrigado.

    
por Javier Suárez 26.08.2014 / 12:33

1 resposta

2

O problema foi resolvido diminuindo a MTU do padrão 1500 na minha interface para um valor abaixo de 1470.

Para corrigir um MTU em um ambiente RHEL (que é o meu):

Edite / etc / sysconfig / network-scripts / ifcfg-eth0:

# vi /etc/sysconfig/network-scripts/ifcfg-eth0

Adicione MTU, configurações:

MTU="1452"

Salve e feche o arquivo. Reinicie a rede:

# service network restart
    
por 29.08.2014 / 10:27