Proftpd + SSL [Demarre pas]

MaO -  
 MaO -
Bonjour,

Voila je suis entrin d'installer un serveur FTP avec une sécurisation SSL.

Le FTP en configuration simple sans sécurisation marche nikel ;)
Mais lorsque je met les lignes de protection SSL protpd ne demarre plus.

 TLSEngine on
   TLSRequired on
  TLSRSACertificateFile               /usr/share/ssl/certs/Proftpd-rsa.pem
  TLSRSACertificateKeyFile       /usr/share/ssl/certs/Proftpd-key.pem


Merci d'avance... ;p

1 réponse

MaO
 
Desormais le FTP se lance avec la sécurisation.
Mais depuis le clients il met: '500 AUTH not understood'

TransferLog /var/log/proftpd/proftpd.log
SystemLog   /var/log/proftpd/proftpd.log

<IfModule mod_tls.c>
  TLSEngine on
  TLSRequired on
  TLSRSACertificateFile               /usr/share/ssl/certs/proftpd-rsa.pem
  TLSRSACertificateKeyFile       /usr/share/ssl/certs/proftpd-key.pem
</IfModule>

<IfModule mod_quota.c>
    QuotaEngine on
</IfModule>

<IfModule mod_ratio.c>
    Ratios on
</IfModule>

# Delay engine reduces impact of the so-called Timing Attack described in
# http://security.lss.hr/index.php?page=details&ID=LSS-2004-10-02
# It is on by default.
<IfModule mod_delay.c>
    DelayEngine on
</IfModule>
0