vsftpd allow anonymous log-in
- by user1817081
I'm setting up a ftp server, that will allow anonymous to READ/WRITE to the server. Here is my configuration.
anonymous_enable=YES
local_enable=YES
write_enable=YES
anon_upload_enable=YES
anon_mkdir_write_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_file=/var/log/xferlog
xferlog_std_format=YES
ftpd_banner=Welcome to blah FTP service.
listen=YES
pam_service_name=vsftpd
userlist_enable=NO
tcp_wrappers=YES
no_anon_password=YES
In my /var/ftp/ i set the permission to 755. When I tried to set it to 777 i got the following error, when i tried to log in.
500 OOPS: vsftpd: refusing to run with writeable anonymous root login failed.
Do i need to set up anything else to allow READ/WRITE for anonymous?