Advertisement
Noobyhead99

vsftpdConfig

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