|
VSFTPD Directory Failed to open
I can log on to my VSFTPD service, but the error reported is:
transfer done, but failed to open directory
Below is my vsftpd.conf file. I have the firewall turned off. I am trying to send the user directly to the home directory so that they are limited to the home directory. I only want to allow local users.
VSFTPD.CONF
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=022
anon_upload_enable=NO
anon_mkdir_write_enable=NO
anon_other_write_enable=NO
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
hide_ids=YES
pasv_min_port=50000
pasv_max_port=60000
# recommended!
#chown_uploads=YES
#chown_username=whoever
xferlog_std_format=YES
#nopriv_user=ftpsecure
#async_abor_enable=YES
ascii_upload_enable=NO
ascii_download_enable=NO
#deny_email_enable=YES
#banned_email_file=/etc/vsftpd/banned_emails
chroot_local_user=YES
#chroot_list_enable=YES
#chroot_list_file=/etc/vsftpd/chroot_list
ls_recurse_enable=NO
pam_service_name=vsftpd
userlist_enable=YES
listen=YES
tcp_wrappers=YES
|