xref: /OK3568_Linux_fs/buildroot/board/rockchip/rk3566_rk3568/fs-overlay/etc/vsftpd.conf (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun# Example config file /etc/vsftpd.conf
2*4882a593Smuzhiyun#
3*4882a593Smuzhiyun# The default compiled in settings are fairly paranoid. This sample file
4*4882a593Smuzhiyun# loosens things up a bit, to make the ftp daemon more usable.
5*4882a593Smuzhiyun# Please see vsftpd.conf.5 for all compiled in defaults.
6*4882a593Smuzhiyun#
7*4882a593Smuzhiyun# READ THIS: This example file is NOT an exhaustive list of vsftpd options.
8*4882a593Smuzhiyun# Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
9*4882a593Smuzhiyun# capabilities.
10*4882a593Smuzhiyun#
11*4882a593Smuzhiyun# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
12*4882a593Smuzhiyunanonymous_enable=YES
13*4882a593Smuzhiyun#
14*4882a593Smuzhiyun# Uncomment this to allow local users to log in.
15*4882a593Smuzhiyunlocal_enable=YES
16*4882a593Smuzhiyun#
17*4882a593Smuzhiyun# Uncomment this to enable any form of FTP write command.
18*4882a593Smuzhiyunwrite_enable=YES
19*4882a593Smuzhiyun#
20*4882a593Smuzhiyun# Default umask for local users is 077. You may wish to change this to 022,
21*4882a593Smuzhiyun# if your users expect that (022 is used by most other ftpd's)
22*4882a593Smuzhiyunlocal_umask=022
23*4882a593Smuzhiyun#
24*4882a593Smuzhiyun# Uncomment this to allow the anonymous FTP user to upload files. This only
25*4882a593Smuzhiyun# has an effect if the above global write enable is activated. Also, you will
26*4882a593Smuzhiyun# obviously need to create a directory writable by the FTP user.
27*4882a593Smuzhiyunanon_upload_enable=YES
28*4882a593Smuzhiyun#
29*4882a593Smuzhiyun# Uncomment this if you want the anonymous FTP user to be able to create
30*4882a593Smuzhiyun# new directories.
31*4882a593Smuzhiyunanon_mkdir_write_enable=YES
32*4882a593Smuzhiyun#
33*4882a593Smuzhiyun# Activate directory messages - messages given to remote users when they
34*4882a593Smuzhiyun# go into a certain directory.
35*4882a593Smuzhiyundirmessage_enable=YES
36*4882a593Smuzhiyun#
37*4882a593Smuzhiyun# Activate logging of uploads/downloads.
38*4882a593Smuzhiyunxferlog_enable=YES
39*4882a593Smuzhiyun#
40*4882a593Smuzhiyun# Make sure PORT transfer connections originate from port 20 (ftp-data).
41*4882a593Smuzhiyunconnect_from_port_20=YES
42*4882a593Smuzhiyun#
43*4882a593Smuzhiyun# If you want, you can arrange for uploaded anonymous files to be owned by
44*4882a593Smuzhiyun# a different user. Note! Using "root" for uploaded files is not
45*4882a593Smuzhiyun# recommended!
46*4882a593Smuzhiyun#chown_uploads=YES
47*4882a593Smuzhiyun#chown_username=whoever
48*4882a593Smuzhiyun#
49*4882a593Smuzhiyun# You may override where the log file goes if you like. The default is shown
50*4882a593Smuzhiyun# below.
51*4882a593Smuzhiyun#xferlog_file=/var/log/vsftpd.log
52*4882a593Smuzhiyun#
53*4882a593Smuzhiyun# If you want, you can have your log file in standard ftpd xferlog format.
54*4882a593Smuzhiyun# Note that the default log file location is /var/log/xferlog in this case.
55*4882a593Smuzhiyunxferlog_std_format=YES
56*4882a593Smuzhiyun#
57*4882a593Smuzhiyun# You may change the default value for timing out an idle session.
58*4882a593Smuzhiyun#idle_session_timeout=600
59*4882a593Smuzhiyun#
60*4882a593Smuzhiyun# You may change the default value for timing out a data connection.
61*4882a593Smuzhiyun#data_connection_timeout=120
62*4882a593Smuzhiyun#
63*4882a593Smuzhiyun# It is recommended that you define on your system a unique user which the
64*4882a593Smuzhiyun# ftp server can use as a totally isolated and unprivileged user.
65*4882a593Smuzhiyun#nopriv_user=ftpsecure
66*4882a593Smuzhiyun#
67*4882a593Smuzhiyun# Enable this and the server will recognise asynchronous ABOR requests. Not
68*4882a593Smuzhiyun# recommended for security (the code is non-trivial). Not enabling it,
69*4882a593Smuzhiyun# however, may confuse older FTP clients.
70*4882a593Smuzhiyun#async_abor_enable=YES
71*4882a593Smuzhiyun#
72*4882a593Smuzhiyun# By default the server will pretend to allow ASCII mode but in fact ignore
73*4882a593Smuzhiyun# the request. Turn on the below options to have the server actually do ASCII
74*4882a593Smuzhiyun# mangling on files when in ASCII mode.
75*4882a593Smuzhiyun# Beware that on some FTP servers, ASCII support allows a denial of service
76*4882a593Smuzhiyun# attack (DoS) via the command "SIZE /big/file" in ASCII mode. vsftpd
77*4882a593Smuzhiyun# predicted this attack and has always been safe, reporting the size of the
78*4882a593Smuzhiyun# raw file.
79*4882a593Smuzhiyun# ASCII mangling is a horrible feature of the protocol.
80*4882a593Smuzhiyun#ascii_upload_enable=YES
81*4882a593Smuzhiyun#ascii_download_enable=YES
82*4882a593Smuzhiyun#
83*4882a593Smuzhiyun# You may fully customise the login banner string:
84*4882a593Smuzhiyun#ftpd_banner=Welcome to blah FTP service.
85*4882a593Smuzhiyun#
86*4882a593Smuzhiyun# You may specify a file of disallowed anonymous e-mail addresses. Apparently
87*4882a593Smuzhiyun# useful for combatting certain DoS attacks.
88*4882a593Smuzhiyun#deny_email_enable=YES
89*4882a593Smuzhiyun# (default follows)
90*4882a593Smuzhiyun#banned_email_file=/etc/vsftpd.banned_emails
91*4882a593Smuzhiyun#
92*4882a593Smuzhiyun# You may specify an explicit list of local users to chroot() to their home
93*4882a593Smuzhiyun# directory. If chroot_local_user is YES, then this list becomes a list of
94*4882a593Smuzhiyun# users to NOT chroot().
95*4882a593Smuzhiyun# (Warning! chroot'ing can be very dangerous. If using chroot, make sure that
96*4882a593Smuzhiyun# the user does not have write access to the top level directory within the
97*4882a593Smuzhiyun# chroot)
98*4882a593Smuzhiyunchroot_local_user=YES
99*4882a593Smuzhiyun#chroot_list_enable=YES
100*4882a593Smuzhiyun# (default follows)
101*4882a593Smuzhiyun#chroot_list_file=/etc/vsftpd.chroot_list
102*4882a593Smuzhiyun#
103*4882a593Smuzhiyun# You may activate the "-R" option to the builtin ls. This is disabled by
104*4882a593Smuzhiyun# default to avoid remote users being able to cause excessive I/O on large
105*4882a593Smuzhiyun# sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
106*4882a593Smuzhiyun# the presence of the "-R" option, so there is a strong case for enabling it.
107*4882a593Smuzhiyun#ls_recurse_enable=YES
108*4882a593Smuzhiyun#
109*4882a593Smuzhiyun# When "listen" directive is enabled, vsftpd runs in standalone mode and
110*4882a593Smuzhiyun# listens on IPv4 sockets. This directive cannot be used in conjunction
111*4882a593Smuzhiyun# with the listen_ipv6 directive.
112*4882a593Smuzhiyunlisten=YES
113*4882a593Smuzhiyun#
114*4882a593Smuzhiyun# This directive enables listening on IPv6 sockets. To listen on IPv4 and IPv6
115*4882a593Smuzhiyun# sockets, you must run two copies of vsftpd with two configuration files.
116*4882a593Smuzhiyun# Make sure, that one of the listen options is commented !!
117*4882a593Smuzhiyun#listen_ipv6=YES
118*4882a593Smuzhiyun
119*4882a593Smuzhiyunpam_service_name=vsftpd
120*4882a593Smuzhiyunuse_localtime=YES
121*4882a593Smuzhiyunallow_writeable_chroot=YES
122*4882a593Smuzhiyunanon_root=/
123*4882a593Smuzhiyunlocal_root=/
124*4882a593Smuzhiyun
125