.ftp+tls.
This is how I configured proftpd to support TLS.
proftpd from 1.2.8.. is supplied with mod_tls as a contrib module.
I Basically put this in proftpd.conf:
---
# TLS Support!
TLSEngine on
TLSRequired off
TLSVerifyClient off
TLSCipherSuite ALL:!ADH
TLSCACertificatePath /etc/proftpd/ca/
TLSCARevocationPath /etc/proftpd/crl/
TLSRSACertificateFile /etc/proftpd/certs/ftp.pem
TLSRandomSeed /etc/proftpd/.rnd
TLSOptions NoCertRequest
---
And of course you'll have to make the required directories,
certificates etc.
Everything is explained in the proftpd README.
(So, if you're reading this you're probably one of the
lazy bastards trying to find a conf file you can copy.)
More info:
proftpd project
TJ Saunders - mod_tls
Paul Ford-Hutchinsons ftps info site, list of clients, servers, etc.
confs
contact