vsftpd - Lỗi GnuTLS -15: Đã nhận được gói TLS không mong muốn


11

Làm cách nào để khắc phục lỗi này khi tôi thử kết nối với máy chủ ftp trên filezila:

GnuTLS error -15: An unexpected TLS packet was received.

Và lỗi này trên plugin ftpsync siêu phàm:

ssl.SSLError: [SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1515)

Đây là cài đặt vsftpd của tôi:

listen=YES
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=022
nopriv_user=vsftpd
virtual_use_local_privs=YES
guest_enable=YES
user_sub_token=$USER
local_root=/var/www/$USER
chroot_local_user=YES
hide_ids=YES
guest_username=vsftpd

rsa_cert_file=/etc/ssl/private/vsftpd.pem
rsa_private_key_file=/etc/ssl/private/vsftpd.pem

ssl_enable=YES
allow_anon_ssl=NO
force_local_data_ssl=YES
force_local_logins_ssl=YES

ssl_tlsv1=YES
ssl_sslv2=NO
ssl_sslv3=NO

require_ssl_reuse=NO
ssl_ciphers=HIGH

Câu trả lời:


11

Tôi đã thử thêm một dòng vào tập tin cấu hình của tôi. Mở cấu hình ở đây:

sudo nano /etc/vsftpd.conf

Và đặt dòng này ở dưới cùng:

allow_writeable_chroot=YES

Sau đó, khởi động lại dịch vụ:

sudo service vsftpd restart

Điều đó sửa chữa nó cho tôi.


Điều này cũng hoạt động cho Centos7 và vsftpd 3.0.2.
Putnik

4

Có thể bạn có một lỗi không liên quan đến SSL.

  1. Cố gắng hủy kích hoạt SSL ( ssl_enable=NO)
  2. Kết nối với máy khách FTP yêu thích của bạn.

Sau đó, bạn có thể thấy lỗi thực sự.

Đó là lý do tại sao câu trả lời của Francisc IB không liên quan đến SSL.


Đó là cho tôi câu trả lời tốt nhất: cấu hình xấu dẫn đến lỗi GnuTLS -15và việc vô hiệu hóa TLS mang lại thông tin phù hợp hơn nhiều
lauhub

0

Điều kỳ lạ đối với tôi là vấn đề này đã bị cắt khi cố gắng lsđăng nhập.

Hóa ra là tôi đã gỡ cài đặt httpdđể ủng hộ nginxvà thư mục tôi đang sử dụng đã được sở hữu apache:apachevà người dùng đã bị xóa khi tôi xóa httpd. Tôi chconlà các thư mục nginx:nginxvà sau đó thay thế người dùng trong các dòng này trong tệp cấu hình của tôi: guest_username=nginx nopriv_user=nginx

Hy vọng rằng điều này sẽ giúp được ai đó ngoài kia vì các thông báo lỗi không hữu ích chút nào.


0

Tôi tìm thấy rất nhiều câu trả lời khó hiểu. Tôi sẽ đăng một

/etc/vsftpd.conf

đã hoạt động hoàn hảo đối với tôi trong Ubuntu 18.04 khi sử dụng fileZilla làm máy khách vào 2019-09-04. FTPS được triển khai trong một phiên bản EC2 được quy định bởi một nhóm bảo mật rất nghiêm ngặt chỉ cho phép IPS công khai cụ thể truy cập.

# FTPS Shim TLS configuration /etc/vsftpd.conf
# Run standalone?  vsftpd can run either from an inetd or as a standalone
# daemon started from an initscript.
# This directive enables listening on IPv6 sockets. By default, listening
# on the IPv6 "any" address (::) will accept connections from both IPv6
# and IPv4 clients. It is not necessary to listen on *both* IPv4 and IPv6
# sockets. If you want that (perhaps because you want to listen on specific
# addresses) then you must run two copies of vsftpd with two configuration
# files.
listen=YES
# Make sure PORT transfer connections originate from port 20 (ftp-data).
connect_from_port_20=NO
listen_port=38250
ftp_data_port=38255
# Allow anonymous FTP? (Disabled by default).
anonymous_enable=NO
# Uncomment this to allow local users to log in.
local_enable=YES
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
local_umask=022
# Activate directory messages - messages given to remote users when they
# go into a certain directory.
dirmessage_enable=YES
# If enabled, vsftpd will display directory listings with the time
# in  your  local  time  zone.  The default is to display GMT. The
# times returned by the MDTM FTP command are also affected by this
# option.
use_localtime=YES
# Activate logging of uploads/downloads.
xferlog_enable=YES
# If you want, you can have your log file in standard ftpd xferlog format.
# Note that the default log file location is /var/log/xferlog in this case.
xferlog_std_format=NO
# You may override where the log file goes if you like. The default is shown below.
xferlog_file=/var/log/vsftpd.log
log_ftp_protocol=YES
debug_ssl=YES
# You may change the default value for timing out an idle session.
idle_session_timeout=600
# You may change the default value for timing out a data connection.
data_connection_timeout=120
# You may fully customise the login banner string:
ftpd_banner=Welcome to Read-Only FTPS Shim service.
# You may restrict local users to their home directories.  See the FAQ for
# the possible risks in this before using chroot_local_user or
# chroot_list_enable below.
chroot_local_user=YES
allow_writeable_chroot=YES
# This option should be the name of a directory which is empty.  Also, the
# directory should not be writable by the ftp user. This directory is used
# as a secure chroot() jail at times vsftpd does not require filesystem
# access.
secure_chroot_dir=/var/run/vsftpd/empty
# This string is the name of the PAM service vsftpd will use.
pam_service_name=ftp
# FTPS Passive Mode. -Define port range for passive mode connections
pasv_enable=Yes
pasv_min_port=10100
pasv_max_port=10110
ssl_enable=YES
# force client to use TLS when logging in
allow_anon_ssl=NO
force_local_data_ssl=YES
force_local_logins_ssl=YES
ssl_tlsv1=YES
ssl_sslv2=NO
ssl_sslv3=NO
require_ssl_reuse=NO
ssl_ciphers=HIGH
# specify TSL certificate/private key
rsa_cert_file=/etc/ssl/certs/fullchain.pem
rsa_private_key_file=/etc/ssl/private/privkey.pem
force_local_logins_ssl=YES
force_anon_logins_ssl=YES
# Uncomment this to indicate that vsftpd use a utf8 filesystem.
utf8_filesystem=YES
# Users
userlist_enable=YES
userlist_file=/etc/vsftpd.user_list
userlist_deny=NO

0

Tôi gặp vấn đề tương tự. Một chủ đề khác khuyên không nên thiết lập allow_writitable_chroot = CÓ vì lý do bảo mật, cụ thể là giảm thiểu "ROARING BEAST ATTACK".

Đặt allow_writitable_chroot = YES có nghĩa là vsftpd sẽ cho phép tình huống trong đó thư mục chính của người dùng có thể ghi được bởi người dùng đó. Thay vào đó vì lý do bảo mật, tôi đã thay đổi quyền trên thư mục gốc của người dùng từ 777 thành 555.

Bản gốc: drwxrwxrwx / home / ftpuser /

Thay đổi thành: dr-xr-xr-x / home / ftpuser /

Điều này làm cho thư mục nhà của người dùng KHÔNG thể ghi được bởi người dùng và do đó tôi không phải sử dụng tham số allow_writizable_chroot = YES . Điều này là tốt (và an toàn hơn) cho tình huống của tôi vì tôi có cấu trúc thư mục cài sẵn và không muốn người dùng tạo các tệp hoặc thư mục mới trong thư mục gốc của họ.

Tôi đã tìm ra điều này khi tôi chuyển thư mục chính sang / var / ftp thông qua tham số local_root = [path] cho vsftpd và nó hoạt động mà không phải đặt allow_writitable_chroot = YES . Thư mục / var / ftp này là (755) nhưng được sở hữu bởi root và do đó không thể ghi được bởi ftpuser.

Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.