vsftpd - GnuTLS ত্রুটি -15: একটি অপ্রত্যাশিত টিএলএস প্যাকেট প্রাপ্ত হয়েছিল


11

আমি যখন ফাইলজিলায় ftp সার্ভারে সংযোগ দেওয়ার চেষ্টা করব তখন এই ত্রুটিটি আমি কীভাবে সমাধান করতে পারি:

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

এবং এই ত্রুটি sublime ftpsync প্লাগইন:

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

এটি আমার vsftpd সেটিংস:

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

উত্তর:


11

আমি আমার কনফিগারেশন ফাইলটিতে একটি লাইন যুক্ত করার চেষ্টা করেছি। কনফিগারেশনটি এখানে খুলুন:

sudo nano /etc/vsftpd.conf

এবং এই রেখাটি নীচে রাখুন:

allow_writeable_chroot=YES

এরপরে, পরিষেবাটি পুনরায় চালু করুন:

sudo service vsftpd restart

এটা আমার জন্য এটি ঠিক করুন।


এটি Centos7 এবং vsftpd 3.0.2 এর জন্যও কাজ করে।
পুতনিক

4

আপনার কোনও ত্রুটি হতে পারে যার এসএসএলের সাথে কোনও সম্পর্ক নেই।

  1. এসএসএল ( ssl_enable=NO) নিষ্ক্রিয় করার চেষ্টা করুন
  2. আপনার প্রিয় এফটিপি ক্লায়েন্টের সাথে সংযুক্ত হন।

তাহলে আপনি সম্ভবত আসল ত্রুটি দেখতে পাবেন।

এই কারণেই ফ্রান্সিসক আইবি উত্তরটির এসএসএলের সাথে কোনও সম্পর্ক নেই।


এটি আমার পক্ষে সর্বোত্তম জবাব: খারাপ কনফিগারেশন GnuTLS -15ভুলত্রুটির দিকে পরিচালিত করে , এবং টিএলএস অক্ষম করা আরও অনেক উপযুক্ত তথ্য দেয়
লুহব

0

অদ্ভুতভাবে আমার জন্য lsলগ ইন করার পরে চেষ্টা করার সময় এই সমস্যাটি ক্রপ হয়েছিল।

দেখা গেল যে আমি httpdপক্ষে আনইনস্টল করেছি এবং আমি যে nginxফোল্ডারটি ব্যবহার করছি তার মালিকানাধীন ছিল apache:apacheএবং আমি অপসারণ করলে ব্যবহারকারী মুছে ফেলা হবে httpd। আমি chconডিরেক্টরিগুলিতে যাব nginx:nginxএবং তারপরে আমার কনফিগার ফাইলে এই লাইনে ব্যবহারকারীকে প্রতিস্থাপন করব: guest_username=nginx nopriv_user=nginx

আশা করি এটি কারও পক্ষে সহায়তা করবে কারণ ত্রুটি বার্তাগুলি মোটেই সহায়ক ছিল না।


0

আমি অনেক বিভ্রান্তিকর উত্তর পেয়েছি। আমি একটি পোস্ট করব

/etc/vsftpd.conf

2019-09-04 এ ক্লায়েন্ট হিসাবে ফাইলজিলা ব্যবহার করে উবুন্টু 18.04 এ আমার জন্য নির্দ্বিধায় কাজ করেছিল। খুব কঠোর সুরক্ষা গোষ্ঠী দ্বারা নিয়ন্ত্রিত একটি ইসি 2 ইভেন্টে এফটিপিএস মোতায়েন করা হয়েছে যা কেবলমাত্র নির্দিষ্ট পাবলিক আইপিএসকে অ্যাক্সেস করতে দেয়।

# 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

আমি এই একই ইস্যু মধ্যে দৌড়ে। অন্য একটি থ্রেড সুরক্ষার কারণে অনুমতি_লিখনযোগ্য_ক্রুট = ইয়েস সেট করার বিরুদ্ধে পরামর্শ দেয় , যথা একটি "গর্জন বিস্ট আক্রমণ" প্রশমিত করা।

অনুমতি_writable_chroot = YES নির্ধারণের অর্থ হ'ল vsftpd এমন পরিস্থিতিতে অনুমতি দেওয়া উচিত যেখানে ব্যবহারকারীর হোম ডিরেক্টরিটি সেই ব্যবহারকারীর দ্বারা লেখার যোগ্য । সুরক্ষার কারণে পরিবর্তে আমি ব্যবহারকারীর রুট ফোল্ডারে অনুমতিগুলি 777 থেকে 555 এ পরিবর্তন করেছি।

আসল: drwxrwxrwx / বাড়ি / ftpuser /

এতে পরিবর্তিত হয়েছে: dr-xr-xr-x / home / ftpuser /

এটি ব্যবহারকারীর হোম ডিরেক্টরিটি ব্যবহারকারীর দ্বারা লিখনযোগ্য নয় এবং এভাবে আমাকে অনুমতি_writable_chroot = YES পরামিতি ব্যবহার করতে হবে না । এটি আমার পরিস্থিতির জন্য সূক্ষ্ম (এবং আরও সুরক্ষিত) কারণ আমার একটি প্রিসেট ডিরেক্টরি কাঠামো আছে এবং ব্যবহারকারীটি যেভাবেই হোক না কেন তাদের মূল ফোল্ডারে নতুন ফাইল বা ডিরেক্টরি তৈরি করতে চায় না।

আমি যখন ভেরফটিপিডি-র জন্য স্থানীয়_রূট = [পাথ] পরামিতিটির মাধ্যমে হোম ডিরেক্টরিটি / var / ftp- এ স্যুইচ করেছিলাম তখন এটি আবিষ্কার করেছি এবং অনুমতি_writable_chroot = YES সেট না করেই এটি কাজ করে । এই ফোল্ডারটি / var / ftp (755) তবে মূলের মালিকানাধীন এবং এটি ftpuser দ্বারা লেখার যোগ্য নয়।

আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.