vsftpd allow anonymous log-in
Posted
by
user1817081
on Server Fault
See other posts from Server Fault
or by user1817081
Published on 2013-07-01T15:05:51Z
Indexed on
2013/07/01
16:22 UTC
Read the original article
Hit count: 192
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?
© Server Fault or respective owner