Ubuntu 14.04 上の ECONNREFUSED vsftpd

Ubuntu 14.04 上の ECONNREFUSED vsftpd

Ubuntu 14.04 サーバーで vsftpd を実行しています。同じネットワーク上にいるときは、ローカル IP を使用して FTP サーバーに簡単に接続できます。以前は、どこからでもネットワークの外部 IP を使用して接続できましたが、最近になって機能しなくなりました。ポート 20 と 21 はサーバーに適切に転送されているので、これが問題ではありません。オンラインのポート チェッカーを使用して、ISP がポート 21 をブロックしているかどうかを確認しましたが、ポート 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

関連情報