• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • Our UX team believes in the in the power of direct feedback and would like to invite you to participate in interviews, tests, and surveys.
    To stay in the loop and never miss an opportunity to share your thoughts, please subscribe to our UX research program. If you were previously part of the Plesk UX research program, please re-subscribe to continue receiving our invitations.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Issue ftp issue filezilla can't connect

pml_orion

New Pleskian
Server operating system version
Debian 11.11
Plesk version and microupdate number
Plesk Obsidian v18.0.64_build1800241008.13 os_Debian 11.0
I can't connect by ftp in filezilla or other ftp client.
 

Attachments

  • 2024-11-20 07_55_10-Window.png
    2024-11-20 07_55_10-Window.png
    19 KB · Views: 11
What is the output of the following command? (it shows the current rules loaded into the INPUT firewall table )
Code:
iptables -S INPUT
 
Just another idea that makes sense to check: if the VM is deployed somewhere in a cloud, does the cloud have a cloud firewall with its own rules? If yes, maybe it blocks ftp traffic.
 
Interesting. All the required ports are open. It should work.

Can you try with an additional ftp user? Can you try from a different computer?
 
Check if there are any other PassivePorts directives
Code:
grep -ir PassivePorts /etc/proftp*
 
What do you see in /var/log/auth.log when you conect via ftp?
Code:
tail -f /var/log/auth.log
As AYamshanov said, is the public IP set on the server?
Code:
hostname -I
 
Interesting. It should work. Can you try with a newer Filezilla version or with a different FTP client?

FTP modules are loaded?
Code:
lsmod | grep ftp
I have
nf_nat_ftp 20480 0
nf_nat 57344 4 nf_nat_ftp,nft_chain_nat,iptable_nat,xt_REDIRECT
nf_conntrack_ftp 24576 1 nf_nat_ftp
nf_conntrack 176128 5 xt_conntrack,nf_nat,nf_nat_ftp,nf_conntrack_ftp,xt_REDIRECT
 
Back
Top