FTP: permission denied -


my ftp configuration following:

# cat /etc/vsftpd.conf listen=no anonymous_enable=yes anon_upload_enable=yes anon_mkdir_write_enable=no anon_other_write_enable=no anon_world_readable_only=no  chroot_local_user=no chroot_list_enable=yes  chroot_list_file=/etc/vsftpd/chroot.list  dual_log_enable=yes xferlog_file=/var/log/vsftpd.xfer.log vsftpd_log_file=/var/log/vsftpd.log #allow_writeable_chroot=yes 

i can anonymously connect shared directory /home/ftp created directory /tmp has permissions:

ls -l /home/ftp/ drwxrwxrwx    2 root     root           224 aug 21 08:47 tmp 

but still can't upload file in tmp directory, got response filezilla:

550 permission denied 

any idea wrong configuration? thanks.


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -