-2

I'm use Linux server with vsftpd connection created successfully but i can't retrieve the files

where is problem here ?

Roufail
  • 551
  • 1
  • 8
  • 23

2 Answers2

1

Your screenshot shows that the connection timed out when trying to transfer something (LIST) after switching to Passive Mode (PASV). In my opinion, probably your firewall is not correctly configured for Passive Mode and therefore is blocking the connection.

Try allowing incoming (inbound) connections on port 40000 to 50000 for all IP address or the IP address of your FTP client. Configuring firewall is firewall-specific, therefore, I cannot give you detailed instruction on how to do this.

ChenZheChina
  • 149
  • 6
1

sudo ufw allow 40000:50000/tcp

sudo service vsftpd restart

Roufail
  • 551
  • 1
  • 8
  • 23