Only TLSv1.2 in ProFTPd connection

Royal Flash

Verified User
Joined
Aug 19, 2012
Messages
25
I want to prohibit everything cipher in ProFTPd and dictate to user use only TLS v1.2 FTP.
Please, check My config proftpd.conf:

Code:
<IfModule mod_tls.c>
        TLSEngine               on
        TLSLog                  /var/log/proftpd/proftpd.tls.log
        TLSProtocol             TLSv1.2
        TLSVerifyClient         off

        #Certificates
        TLSRSACertificateFile           /etc/exim.cert
        TLSRSACertificateKeyFile        /etc/exim.key
        #TLSCACertificateFile           /etc/ftpd/root.cert.pem

        TLSCipherSuite          TLSv1.2

        TLSRequired             on
         
        # For some clients, if not set NoSessionReuseRequired receve error "425 Unable to build data connection: Operation not permitted"
        TLSOptions              NoSessionReuseRequired
</IfModule>

Test, everything works. Are there any errors in my config which I did not notice?
 
Back
Top