我在 Ubuntu 14.04 服务器上运行 vsftpd。当我在同一网络上时,我可以轻松连接到 ftp 服务器并使用其本地 IP 进行连接。我过去可以使用网络的外部 IP 从任何地方连接到它,但最近就停止工作了。我已将端口 20 和 21 正确转发到服务器,因此这不是问题。我在线使用端口检查器来查看我的 ISP 是否阻止了端口 21,但它是开放的。我已经测试了 sftp,它可以使用我的外部 IP 运行。但我也想设置 ftp。
错误代码
Status: Connecting to [EXTERNAL-IP]:21...
Status: Connection established, waiting for welcome message...
Status: Insecure server, it does not support FTP over TLS.
Status: Logged in
Status: Retrieving directory listing...
Command: PWD
Response: 257 "/home/braden"
Command: TYPE I
Response: 200 Switching to Binary mode.
Command: PASV
Response: 227 Entering Passive Mode ([EXTERNAL-IP],203,132)
Command: LIST
Error: The data connection could not be established: ECONNREFUSED - Connection refused by server
vsftpd.conf
listen=YES
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=007
dirmessage_enable=YES
use_localtime=YES
xferlog_enable=YES
connect_from_port_20=YES
secure_chroot_dir=/var/run/vsftpd/empty
pam_service_name=vsftpd
rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key