centos 6 搭建ftp服务器支持匿名读写
Posted 凌云物网智科实验室
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos 6 搭建ftp服务器支持匿名读写相关的知识,希望对你有一定的参考价值。
转载请注明: 凌云物网智科嵌入式实验室: http://iot-yun.com/ 郭文学<[email protected]>
vsftpd在运行时一定要关闭SELinux,否则ftp用户登录的时候会出问题
vsftpd的配置文件:
[[email protected] vsftpd]$ pwd /etc/vsftpd [[email protected] vsftpd]$ sudo cat vsftpd.conf anonymous_enable=YES anon_world_readable_only=NO anon_upload_enable=YES anon_mkdir_write_enable=YES anon_other_write_enable=YES no_anon_password=YES chown_uploads=YES chown_username=lingyun delete_failed_uploads=YES local_enable=YES local_root=/var/ftp/ anon_root=/var/ftp/pub write_enable=YES local_umask=022 xferlog_enable=YES xferlog_file=/var/log/vsftpd.log #connect_from_port_20=YES ftpd_banner=Welcome to my FTP service. listen=YES # Ban user leave the home directory chroot_local_user=YES pam_service_name=vsftpd userlist_enable=YES userlist_deny=NO listen_port=21 connect_from_port_20=YES
允许登录的用户列表:
[[email protected] vsftpd]$ sudo cat user_list anonymous lingyun
不允许登录的用户列表:
[[email protected] vsftpd]$ sudo cat ftpusers # Users that are not allowed to login via ftp root bin daemon adm lp sync shutdown halt mail news uucp operator games nobody
以上是关于centos 6 搭建ftp服务器支持匿名读写的主要内容,如果未能解决你的问题,请参考以下文章