FTP (vsftpd) for CentOS7
1 install [root@CentOS7-01 ~] # yum-y install vsftpd2 vsftpd service common configuration # main profile / etc/vsftpd/vsftpd.conf2.1 command port listen_port=port # defaults to 21. If you need to expose the vsftpd service on the public network, it is recommended to modify it to other port 2.2 anonymous user login 2.2.1 support anonymous user anonymous_enable=YES # default to YES2.2.2 anonymous user skip password check, default is before NO modification
After modification # add the following configuration at the end of the configuration file, and then restart vsftpdno_anon_password= YES [root @ CentOS7-01 ~] # systemctl restart vsftpd