Ver Mensaje Individual
  #1 (permalink)  
Antiguo 16/02/2010, 05:44
Avatar de Kai_Rainer
Kai_Rainer
 
Fecha de Ingreso: abril-2008
Ubicación: 1 de las 7 islas
Mensajes: 37
Antigüedad: 16 años
Puntos: 1
como se configura el PROFtpd para que funciones con SSL?

Hola!

he intentado poder conectarme por SSL por FTP... y me da el siguiente error (el cliente de FileZilla):
Código HTML:
Error:	GnuTLS error -9: A TLS packet with unexpected length was received.
Estado:	El servidor no respondió adecuadamente, cierre de conexión TLS
Error:	Could not read from transfer socket: ECONNABORTED - Connection aborted
Respuesta:	226-Transfer complete
Respuesta:	226 Quotas off
Error:	Error al recuperar el listado del directorio
Tengo esto puesto en el servidor (en el archivo de conf del proftpd):
Código HTML:
<IfModule mod_tls.c>
    TLSEngine on
    TLSLog /var/log/proftpd/tls.log
    TLSProtocol SSLv3
    TLSRequired off
    TLSRSACertificateFile /usr/local/psa/admin/conf/httpsd.pem
    TLSRSACertificateKeyFile /usr/local/psa/admin/conf/httpsd.pem
    TLSVerifyClient off
    TLSRenegotiate required off
  </IfModule> 
Y en el log me sale:
Código HTML:
Feb 16 12:37:50 mod_tls/2.1.2[8459]: using default OpenSSL verification locations (see $SSL_CERT_DIR environment variable)
Feb 16 12:37:50 mod_tls/2.1.2[8459]: TLS/TLS-C requested, starting TLS handshake
Feb 16 12:37:50 mod_tls/2.1.2[8459]: TLSv1/SSLv3 connection accepted, using cipher DHE-RSA-AES128-SHA (128 bits)
Feb 16 12:37:51 mod_tls/2.1.2[8459]: Protection set to Private
Feb 16 12:37:51 mod_tls/2.1.2[8459]: starting TLS negotiation on data connection
Feb 16 12:37:52 mod_tls/2.1.2[8459]: TLSv1/SSLv3 data connection accepted, using cipher DHE-RSA-AES128-SHA (128 bits)
no se si me falta algo, o tengo algun parametro mal...(linux no es mi punto fuerte :( )