sshfs “Conexão redefinida pelo peer”

2
ssh -i ~/keys/id_rsa [email protected]
Enter passphrase for key '/home/avin/keys/id_rsa': 
Last login: Tue Jul 17 11:01:28 2012 from 192.168.1.240
[root@rsh_management ~]# exit
logout

tudo bem, eu estou dentro! mas ...

avin@avin-pc ~/ % sshfs -o ssh_command="ssh -i ~/keys/id_rsa" [email protected]:/ /mnt/201
[email protected]'s password: 
[email protected]'s password: 
[email protected]'s password: 
read: **Connection reset by peer**

e este também

avin@avin-pc ~ % sshfs -o IdentityFile=~/keys/id_rsa [email protected]:/ /mnt/201
Enter passphrase for key '/home/avin/keys/id_rsa': 
read: **Connection reset by peer**

Por que recebo "Conexão redefinida pelo peer"?

    
por carcinogen75 17.07.2012 / 12:02

2 respostas

3

no servidor no arquivo /etc/sshd_config esta linha foi comentada

# Subsystem sftp /usr/libexec/openssh/sftp-server
    
por 20.07.2012 / 10:46
0

Se você obtiver isso do sshfs

read: Connection reset by peer

talvez ajude a definir o arquivo para somente leitura

chmod 400 /{{path_to_your_key}}/keypair.pem

e conecte-se novamente.

    
por 12.05.2016 / 02:46