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