ECONNREFUSED vsftpd 在 ubuntu 14.04 上

ECONNREFUSED vsftpd 在 ubuntu 14.04 上

我在 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

相關內容