Cliente Filezilla e VSFTPD: erro GnuTLS -12: um alerta fatal TLS foi recebido

3

então agora eu estou tentando configurar o servidor vsftpd para FTP (e) S. Parece que estou encontrando problemas com clientes diferentes. FTPD seguro funciona bem para mim. Filezilla não.

A saída do Filezilla

tatus:  Connecting to foo:21...
Status: Connection established, waiting for welcome message...
Trace:  CFtpControlSocket::OnReceive() 
Response:   220 "Welcome to FTP!"
Trace:  CFtpControlSocket::SendNextCommand()
Command:    AUTH TLS
Trace:  CFtpControlSocket::OnReceive()
Response:   234 Proceed with negotiation.
Status: Initializing TLS...
Trace:  CTlsSocket::Handshake()
Trace:  CTlsSocket::ContinueHandshake()
Trace:  CTlsSocket::OnSend()
Trace:  CTlsSocket::OnRead()
Trace:  CTlsSocket::ContinueHandshake()
Trace:  CTlsSocket::Failure(-12, 53)
Trace:  GnuTLS alert 40: Handshake failed
Error:  GnuTLS error -12: A TLS fatal alert has been received.

Colar de vsftpd:

# Could be whatever you like, or 990 if you want to use the now-deprecated ftps port.
listen_port=21

# Limit passive ports to this range to assis firewalling
pasv_min_port=30000
pasv_max_port=30003

#May be needed to help packets through some NAT/firewall setups. The address
# is the external ip of the machine, assuming it is a static one.
pasv_address= "foo" ---> we NAT everything so this has the EXTERNAL IP

# Set to ssl_enable=YES if you want to enable SSL
ssl_enable=YES
anon_mkdir_write_enable=NO
anon_root=/srv/ftp
anon_upload_enable=NO
idle_session_timeout=900
log_ftp_protocol=YES
pasv_enable=YES
ssl_sslv2=NO
ssl_sslv3=NO
ssl_tlsv1=YES

# Path to the certificate and key files (which should be the same file)
rsa_cert_file=/etc/vsftpd2.pem
rsa_private_key_file=/etc/vsftpd2.pem

# No ssl for bad boys
#allow_anon_ssl=NO

# All local logins (i.e. non-anonymous) are forced to use ssl.
force_local_data_ssl=NO
#force_local_logins_ssl=YES
#dsa_cert_file=/etc/vsftpd.pem
require_ssl_reuse=NO

Então, a questão é: o que está errado aqui? BTW: Além disso, não tenho certeza absoluta da diferença entre ftps e ftpEs

Obrigado

    
por user1092608 02.05.2012 / 15:46

2 respostas

7

ok, achei. Aparentemente, há algum comportamento estranho entre o cliente mais recente do filezilla 3.5 e o ftps.

para o vsftpd, a solução era simplesmente adicionar: ssl_ciphers = HIGH no arquivo vsftpd.conf

Eu não tenho certeza se estou autorizado a postar isso também, mas há uma ameaça sobre isso nos fóruns do filezilla.

link

    
por 03.05.2012 / 10:31
0

Se chroot_local_user=yes for usado, então ssl_ciphers=HIGH não funcionará.

    
por 28.01.2013 / 11:12

Tags