<code># Example config file /etc/vsftpd/vsftpd.conf</code>
<code>#</code>
<code># The default compiled in settings are fairly paranoid. This sample file</code>
<code># loosens things up a bit, to make the ftp daemon more usable.</code>
<code># Please see vsftpd.conf.5 for all compiled in defaults.</code>
<code># READ THIS: This example file is NOT an exhaustive list of vsftpd options.</code>
<code># Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's</code>
<code># capabilities.</code>
<code># Allow anonymous FTP? (Beware - allowed by default if you comment this out).</code>
<code>anonymous_enable=NO</code>
<code>#允許匿名ftp使用者登入</code>
<code># Uncomment this to allow local users to log in.</code>
<code>local_enable=YES</code>
<code>#允許本地使用者登入</code>
<code># Uncomment this to enable any form of FTP write command.</code>
<code>write_enable=YES</code>
<code>#允許本地使用者上傳</code>
<code># Default umask for local users is 077. You may wish to change this to 022,</code>
<code># if your users expect that (022 is used by most other ftpd's)</code>
<code>local_umask=022</code>
<code>#本地使用者上傳umask值</code>
<code>#local_root=/tmp/test</code>
<code># Uncomment this to allow the anonymous FTP user to upload files. This only</code>
<code># has an effect if the above global write enable is activated. Also, you will</code>
<code># obviously need to create a directory writable by the FTP user.</code>
<code>anon_upload_enable=YES</code>
<code>#允許匿名使用者建立檔案也就是上傳</code>
<code># Uncomment this if you want the anonymous FTP user to be able to create</code>
<code># new directories.</code>
<code>anon_mkdir_write_enable=YES</code>
<code>#允許匿名使用者建立目錄</code>
<code>anon_other_write_enable=YES</code>
<code># Activate directory messages - messages given to remote users when they</code>
<code># go into a certain directory.</code>
<code>dirmessage_enable=YES</code>
<code>#使用者進入目錄時,顯示.message檔案中資訊</code>
<code># The target log file can be vsftpd_log_file or xferlog_file.</code>
<code># This depends on setting xferlog_std_format parameter</code>
<code>xferlog_enable=YES</code>
<code>#激活記錄日志</code>
<code># Make sure PORT transfer connections originate from port 20 (ftp-data).</code>
<code>connect_from_port_20=YES</code>
<code>#主動模式資料傳輸接口</code>
<code># If you want, you can arrange for uploaded anonymous files to be owned by</code>
<code># a different user. Note! Using "root" for uploaded files is not</code>
<code># recommended!</code>
<code>#chown_uploads=YES</code>
<code>#chown_username=whoever</code>
<code># The name of log file when xferlog_enable=YES and xferlog_std_format=YES</code>
<code># WARNING - changing this filename affects /etc/logrotate.d/vsftpd.log</code>
<code>#xferlog_file=/var/log/xferlog</code>
<code># Switches between logging into vsftpd_log_file and xferlog_file files.</code>
<code># NO writes to vsftpd_log_file, YES to xferlog_file</code>
<code>xferlog_std_format=YES</code>
<code>#使用标準的ftp日志格式</code>
<code># You may change the default value for timing out an idle session.</code>
<code>idle_session_timeout=600</code>
<code># You may change the default value for timing out a data connection.</code>
<code>#data_connection_timeout=120</code>
<code># It is recommended that you define on your system a unique user which the</code>
<code># ftp server can use as a totally isolated and unprivileged user.</code>
<code>#nopriv_user=ftpsecure</code>
<code># Enable this and the server will recognise asynchronous ABOR requests. Not</code>
<code># recommended for security (the code is non-trivial). Not enabling it,</code>
<code># however, may confuse older FTP clients.</code>
<code>#async_abor_enable=YES</code>
<code># By default the server will pretend to allow ASCII mode but in fact ignore</code>
<code># the request. Turn on the below options to have the server actually do ASCII</code>
<code># mangling on files when in ASCII mode.</code>
<code># Beware that on some FTP servers, ASCII support allows a denial of service</code>
<code># attack (DoS) via the command "SIZE /big/file" in ASCII mode. vsftpd</code>
<code># predicted this attack and has always been safe, reporting the size of the</code>
<code># raw file.</code>
<code># ASCII mangling is a horrible feature of the protocol.</code>
<code>#ascii_upload_enable=YES</code>
<code>#ascii_download_enable=YES</code>
<code># You may fully customise the login banner string:</code>
<code>#ftpd_banner=Welcome to blah FTP service.</code>
<code># You may specify a file of disallowed anonymous e-mail addresses. Apparently</code>
<code># useful for combatting certain DoS attacks.</code>
<code>#deny_email_enable=YES</code>
<code># (default follows)</code>
<code>#banned_email_file=/etc/vsftpd/banned_emails</code>
<code># You may specify an explicit list of local users to chroot() to their home</code>
<code># directory. If chroot_local_user is YES, then this list becomes a list of</code>
<code># users to NOT chroot().</code>
<code>chroot_local_user=YES</code>
<code>#YES的話(把所有使用者都限制在使用者主目錄中),NO的話不限制使用者在他們的主目錄中</code>
<code>chroot_list_enable=YES</code>
<code>開啟使用者清單功能</code>
<code>#chroot_list_file=/etc/vsftpd/chroot_list</code>
<code>若chroot_local_user=YES,則是建立不被chroot的使用帳号清單;否則建立被chroot的使用帳号清單</code>
<code># You may activate the "-R" option to the builtin ls. This is disabled by</code>
<code># default to avoid remote users being able to cause excessive I/O on large</code>
<code># sites. However, some broken FTP clients such as "ncftp" and "mirror" assume</code>
<code># the presence of the "-R" option, so there is a strong case for enabling it.</code>
<code>#ls_recurse_enable=YES</code>
<code># When "listen" directive is enabled, vsftpd runs in standalone mode and</code>
<code># listens on IPv4 sockets. This directive cannot be used in conjunction</code>
<code># with the listen_ipv6 directive.</code>
<code>listen=YES</code>
<code>#允許被監聽</code>
<code># This directive enables listening on IPv6 sockets. To listen on IPv4 and IPv6</code>
<code># sockets, you must run two copies of vsftpd with two configuration files.</code>
<code># Make sure, that one of the listen options is commented !!</code>
<code>#listen_ipv6=YES</code>
<code>guest_enable=YES</code>
<code>#開啟虛拟使用者</code>
<code>guest_username=vuser</code>
<code>#ftp虛拟使用者對應的系統使用者</code>
<code>pam_service_name=vsftpd</code>
<code>#設定PAM外挂子產品提供的認證服務所使用的配置檔案名</code>
<code>#,即/etc/pam.d/vsftpd檔案</code>
<code>userlist_enable=YES</code>
<code>#使用者登入限制</code>
<code>#userlist_deny=NO</code>
使用者白名單,yes的話就是黑名單
<code>#userlist_file=/etc/vsftpd/user_list</code>
<code>記錄系統帳号,一行一個</code>
<code></code>
<code>tcp_wrappers=YES</code>
<code>#是否使用tcp_wrappers作為主機通路控制方式</code>
<code>本文轉自飛奔的小GUI部落格51CTO部落格,原文連結http://blog.51cto.com/9237101/1909403如需轉載請自行聯系原作者 ziwenzhou</code>