Hi guys, some time ago, when I was using Ubuntu Server, I created this topic due to some issues with FTP, Filezilla showed me not compatible with FTP over TLS, at that time that was solved by installing proftpd-mod-crypto.
here is old topic: Help in regards FTP, SFTP, Backups and Ubuntu version
I have now same issue with on v 1.10.4 and Debian 13, I talked in private with @sahsanu about this old topic and new issues and here is the solution.
ALL CREDITS AND KUDOS for @sahsanu for this workaround:
-
Install crypto mod by:
sudo apt install proftpd-mod-crypto -
Edit
/etc/proftpd/proftpd.conf -
Add
Include /etc/proftpd/modules.confjust before tls.conf include leaving the file similar to:ServerName "FTP" ServerIdent on "FTP Server ready." ServerAdmin root@localhost DefaultServer on DefaultRoot ~ !adm Include /etc/proftpd/modules.conf Include /etc/proftpd/tls.conf <IfModule mod_vroot.c> VRootEngine on VRootAlias /etc/security/pam_env.conf etc/security/pam_env.conf </IfModule> -
Restart and confirm status
systemctl restart proftpd
systemctl status proftpd --no-pager -l -
Confirm everything else is working properly just in case.