Problema de conexão do servidor Ubuntu 14.04 vsftpd

Problema de conexão do servidor Ubuntu 14.04 vsftpd

Instalei recentemente o vsftpd de acordo com este tutorial:http://www.krizna.com/ubuntu/setup-ftp-server-on-ubuntu-14-04-vsftpd/. Consigo fazer login no FTP, mas depois obtenho os seguintes resultados do FileZilla:

Answer: 230 Login successful.
Commando:   OPTS UTF8 ON
Answer: 200 Always in UTF8 mode.
Status: Connected
Status: Folder list
Commando:   PWD
Answer: 257 "/"
Commando:   TYPE I
Answer: 200 Switching to Binary mode.
Commando:   PASV
Answer: 227 Entering Passive Mode (192,168,000,00,000,000). (I replaced the 0's)
Status: Server generated a passive answer with an untracable address. Uses the serveraddress instead
Commando:   LIST
Error:  Connection lost
Error:  Receiving folder list failed

(eu traduzi o texto acima)

Em /etc/vsftpd.conftenho as seguintes linhas comentadas:

listen=YES
anonymouse_enable=NO
local_enable=YES
write_enable=YES
local_unmask=022
dirmessage_enable=YES
use_localtime=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_file=/var/log/vsftpd.log
chroot_local_user=YES (line #120)
secure_chroot_dir=/var/run/vsftpd/empty
pam_service_name=vsftpd
rsa_cert_file=/etc/ssl/private/ssl-cert-snakeoil.pem
rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key

allow_writeable_chroot=YES
ssl_ciphers=HIGH
pasv_enable=YES
pasv_max_port=40000
pasv_min_port=40100

Também encaminhei as seguintes portas para o servidor:

80 protocol both: TCP UDP
21 protocol both: TCP UDP
22 protocol both: TCP UDP

Eu também fiz 22 porque instalei o openssh

Espero que alguém possa me ajudar a descobrir por que recebo essa mensagem de erro. desde já, obrigado

Responder1

Você provavelmente precisará abrir suas portas passivas

iptables -I INPUT -p tcp --destination-port 40000:40100 -j ACCEPT

Então

service iptables save

informação relacionada