# Example config file /etc/vsftpd/vsftpd.conf
#
# The default compiled in settings are fairly paranoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
# Please see vsftpd.conf.5 for all compiled in defaults.
#
# READ THIS: This example file is NOT an exhaustive list of vsftpd options.
# Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
# capabilities.
#
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=NO #关闭匿名用户
#
# Uncomment this to allow local users to log in.
local_enable=YES #支持本地系统账户
#
# Uncomment this to enable any form of FTP write command.
write_enable=YES #允许使用任何可以修改文件系统的FTP的指令
#
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
local_umask=022 #屏蔽权限即本地用户上传的文件的默认权限,实际权限755
#
# Uncomment this to allow the anonymous FTP user to upload files. This only
# has an effect if the above global write enable is activated. Also, you will
# obviously need to create a directory writable by the FTP user.
#anon_upload_enable=YES 允许匿名用户上传文件
#
# Uncomment this if you want the anonymous FTP user to be able to create
# new directories.
#anon_mkdir_write_enable=YES 允许匿名用户创建新目录
#
# Activate directory messages - messages given to remote users when they
# go into a certain directory.
dirmessage_enable=YES #允许为目录配置显示信息,显示每个目录下面的message_file文件的内容
#
# The target log file can be vsftpd_log_file or xferlog_file.
# This depends on setting xferlog_std_format parameter
xferlog_enable=YES #使用标准的日志格式
#
# Make sure PORT transfer connections originate from port 20 (ftp-data).
connect_from_port_20=YES #使用标准的20端口来连接ftp
#
# If you want, you can arrange for uploaded anonymous files to be owned by
# a different user. Note! Using "root" for uploaded files is not
# recommended!
#chown_uploads=YES 所有匿名上传的文件的所属用户将会被更改成chown_username
#chown_username=lzh 匿名上传文件所属用户名
#
# The name of log file when xferlog_enable=YES and xferlog_std_format=YES
# WARNING - changing this filename affects /etc/logrotate.d/vsftpd.log
xferlog_file=/var/log/vsftp.log
#
# Switches between logging into vsftpd_log_file and xferlog_file files.
# NO writes to vsftpd_log_file, YES to xferlog_file
xferlog_std_format=YES 日志文件位置
#
# You may change the default value for timing out an idle session.
#idle_session_timeout=600 空闲连接超时
#
# You may change the default value for timing out a data connection.
#data_connection_timeout=120 数据传输超时
#
# It is recommended that you define on your system a unique user which the
# ftp server can use as a totally isolated and unprivileged user.
#nopriv_user=ftpsecure 当服务器运行于最底层时使用的用户名
#
# Enable this and the server will recognise asynchronous ABOR requests. Not
# recommended for security (the code is non-trivial). Not enabling it,
(责任编辑:liangzh) |