Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hello,
This might be a problem with the related rules of a firewall between you and the server. What kind of firewall are you using on your Ubuntu server?
The problem is that, conntrack_ftp module, which on the fly allows ftp data connections to pass through firewall even if they were to be dropped because of rules, cannot analyze the encrypted stream for PASV/PORT commands. The same applies to not being able to use active mode from behind a firewall/nat with encrypted control connection.So you need to set static ports for passive mode (or if client is not behind firewall/nat use an active mode) and add a firewall rule to accept incoming connections on these ports. Ports for passive mode are set through PassivePorts directive.
Edit the ProFTPd config
nano /etc/proftpd.conf
edit line 47; uncomment the rule and change the ports to anything you like. Change
# PassivePorts 49152 65534
to
PassivePorts 50000 50500
Now save the file and restart ProFTPd
service proftpd restart
Modify your firewall You need to allow the passive ports needed for FTP. How depends on the type of firewall you are running. For IPTables use the following command:
iptables -I INPUT 2 -p tcp --dport 50000:50500 -j ACCEPT
For UFW use the following:
ufw allow 50000:50500/tcp
Now try to connect once more! If you still got problems, please change your FileZilla language to english (so I can understand) and post the FULL log
Show! Thank you for your help it worked , it worked just right . So the problem was the firewall? I’m using the standard with iptables I use to modify … I am beginner to these things yet. Thanks a lot for the help.
Hi friend, I could help with One more thing, quería exchange a 21 subparagraph standard port 3510. How do I like to proceed ?
I gave the command:
sudo iptables -A INPUT -p tcp --dport 1234 -j ACCEPT
AND
iptables -I INPUT -p tcp --dport 587 -j ACCEPT
But still closed. I’m using nmap to View the status of the door.
Thank you