Não é possível conectar-se com o OpenSSH de certas redes

3

Eu costumava me conectar ao meu servidor usando o OpenSSH usando este comando:

ssh [email protected]

mas agora mudei minha localização e não consigo mais me conectar, aqui está o relatório de depuração quando uso o parâmetro -v com o comando ssh :

ssh [email protected] -v

OpenSSH_6.0p1 Debian-3ubuntu1, OpenSSL 1.0.1c 10 May 2012
debug1: Reading configuration data /home/riless/.ssh/config
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to my-server.com [xx.xxx.xxx.xx] port 22.
debug1: Connection established.
debug1: identity file /home/riless/.ssh/id_rsa type 1
debug1: Checking blacklist file /usr/share/ssh/blacklist.RSA-2048
debug1: Checking blacklist file /etc/ssh/blacklist.RSA-2048
debug1: identity file /home/riless/.ssh/id_rsa-cert type -1
debug1: identity file /home/riless/.ssh/id_dsa type -1
debug1: identity file /home/riless/.ssh/id_dsa-cert type -1
debug1: identity file /home/riless/.ssh/id_ecdsa type -1
debug1: identity file /home/riless/.ssh/id_ecdsa-cert type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.3
debug1: match: OpenSSH_5.3 pat OpenSSH_5*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.0p1 Debian-3ubuntu1
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

e depois de um tempo, me sai assim:

Connection closed by xx.xxx.xxx.xx

Notas: O PuTTY funciona normalmente, mas não o OpenSSH; Estou no Ubuntu

EDIT1: conteúdo do arquivo /etc/ssh/ssh_config (sem as linhas comentadas):

Host *
    SendEnv LANG LC_*
    HashKnownHosts yes
    GSSAPIAuthentication yes
    GSSAPIDelegateCredentials no

conteúdo do arquivo /home/riless/.ssh/config :

Host xx.xxx.xxx.xx
User root
Port 22
Hostname xx.xxx.xxx.xx
IdentityFile ~/.ssh/id_rsa
TCPKeepAlive yes
IdentitiesOnly yes

EDIT2: quando tento alterar as cifras usando esta linha de comando:

ssh [email protected] -c aes256-ctr -v

ele me pede senha, mas o console congela logo depois disso:

[email protected]'s password: 
debug1: Authentication succeeded (password).
Authenticated to xx.xx.xx.xxx ([xx.xx.xx.xxx]:22).
debug1: channel 0: new [client-session]
debug1: Requesting [email protected]
debug1: Entering interactive session.
debug1: Sending environment.
debug1: Sending env LC_PAPER = fr_FR.UTF-8
debug1: Sending env LC_ADDRESS = fr_FR.UTF-8
debug1: Sending env LC_MONETARY = fr_FR.UTF-8
debug1: Sending env LC_NUMERIC = fr_FR.UTF-8
debug1: Sending env LC_TELEPHONE = fr_FR.UTF-8
debug1: Sending env LC_IDENTIFICATION = fr_FR.UTF-8
debug1: Sending env LANG = en_US.UTF-8
debug1: Sending env LC_MEASUREMENT = fr_FR.UTF-8
debug1: Sending env LC_TIME = fr_FR.UTF-8
debug1: Sending env LC_NAME = fr_FR.UTF-8
    
por Ghilas BELHADJ 12.09.2013 / 14:29

2 respostas

0

Acabei de adicionar uma linha no /etc/ssh/ssh_config referente a muitos fóruns.

Ciphers arcfour

Agora, posso conectar-me ao servidor , mas ainda há alguns problemas : O console congela quando eu executo alguns comandos como vim , htop

UPDATE : Eu encontrei uma solução para isso, mas não sei como isso funciona.

Basta definir a MTU na sua interface Ethernet ou sem fio para algo realmente pequeno.

sudo ifconfig wlan0 mtu 1100  # (or eth0 for ethernet)
    
por 15.09.2013 / 12:05
0

Você provavelmente tem uma limitação para a conexão de origem do usuário raiz em seu arquivo /root/.ssh/authorized_keys.

Especificamente, seu authorized_keys provavelmente é assim:

from="trusted.host.some.domain.ext,10.0.0.*,:*.untrusted.network.ext" ssh-rsa [your key] root@localhost

Se a conexão não tiver o padrão "de" se for explicitamente excluído desse padrão, a conexão será negada.

    
por 12.09.2013 / 14:50

Tags