1. Configure the/etc//vsftpd/vsftpd.conf file as follows:
Open the file, change the following options, if the file does not have this option, you need to manually write this option
Write_enable=yes
Anonymous_enable=yes
Anon_other_write_enable=yes
Anon_mkdir_write_enable=yes
Anon_upload_enable=yes
2. The above configuration is only to complete the vsftp.conf ftp allow anonymous upload settings, but also for the corresponding FTP upload folder settings:
[Email protected] root]# mkdir-p/var/ftp/upload (1. New folder for read and write functions)
[[email protected] root]# chown ftp/var/ftp/upload (2. Folder Holder properties)
The/upload is limited to 777 (3. Settings can read and write properties, you can click the right button in the Properties button operation)
3. Restart the command:
[Email protected] root]# service vsftpd restart
Complete the above three steps to achieve FTP anonymous user upload
Upload and download files for FTP anonymous users under Linux