Não é possível SFTP no meu servidor Ubuntu no Virtualbox, o SSH funciona bem

1

Eu tenho um servidor Ubuntu 10.10 em execução no VirtualBox com o OpenSSH instalado. Encaminhei a porta 8888 no host para 80 no convidado e 2222 no host para 22 no convidado. Por alguma razão, eu posso SSH para este servidor usando localhost: 2222 muito bem, mas quando eu tento SFTP com WinSCP também em localhost: 2222 eu recebo um erro "conexão recusada". Este é o meu arquivo sshd_config, se isso ajudar:

# Package generated configuration file
# See the sshd_config(5) manpage for details

# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes

# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 768

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile     %h/.ssh/authorized_keys

# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes

# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no

# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no

# Change to no to disable tunnelled clear text passwords
#PasswordAuthentication yes

# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no

#MaxStartups 10:30:60
#Banner /etc/issue.net

# Allow client to pass locale environment variables
AcceptEnv LANG LC_*

Subsystem sftp /usr/lib/openssh/sftp-server

# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication.  Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM yes

Atualização: Por curiosidade, eu instalei o FileZilla e tentei me conectar com ele. Funcionou perfeitamente bem. Aparentemente, o problema está no final do WinSCP, não no servidor. Eu vou olhar mais um pouco.

    
por Omega192 04.04.2011 / 23:59

7 respostas

1

Hmm, não sei como fazer isso, então acho que vou responder minha própria pergunta. Eu publiquei uma atualização para a pergunta, mas parece que as pessoas a perderam.

Por curiosidade, eu instalei o FileZilla e tentei me conectar com ele. Funcionou perfeitamente bem. Aparentemente, o problema está no final do WinSCP, não no servidor.

    
por 09.06.2011 / 15:16
1

Eu não acho que o sftp permita que você coloque :port no final de um nome de host. Você pode tentar

sftp -o Port=2222 localhost

em vez

    
por 05.04.2011 / 00:55
1

O seguinte funciona para mim: psftp.exe localhost -P 2222 isto está assumindo que o encaminhamento de porta é o convidado 2222 para o host 22

    
por 23.05.2012 / 02:08
0

Por que você tenta se conectar ao SFTP? Você tem um servidor FTP em execução? Eu assumo não porque você não mencionou isso.

Tente o SCP em vez disso. Isso deve funcionar. Seu problema pode estar relacionado aos modos FTP ativo / passivo.

    
por 05.04.2011 / 00:04
0

Verifique se o seu IPS / IPS está bloqueando o openssh-challenge-response-bo.

    
por 08.06.2011 / 21:26
0

O SSHD possui um protocolo interno FTP via SFTP que não requer que um servidor FTP esteja sendo executado na máquina do servidor. Um cliente SCP ou talvez o Bitvise Tunnelier deve conectá-lo para transferir arquivos.

    
por 08.06.2011 / 22:17
0

Alguns clientes SFTP / SCP ficam muito confusos se o shell que eles usam no lado remoto arrota mensagens de banner no login, especialmente se houver escapes de terminal, etc. envolvidos.

    
por 23.05.2012 / 03:20