Advertisement
Guest User

Untitled

a guest
Jun 26th, 2014
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.68 KB | None | 0 0
  1. # Example config file /etc/vsftpd/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=NO
  13. #
  14. # Uncomment this to allow local users to log in.
  15. local_enable=YES
  16. #
  17. # Uncomment this to enable any form of FTP write command.
  18. write_enable=YES
  19. #
  20. # Default umask for local users is 077. You may wish to change this to 022,
  21. # if your users expect that (022 is used by most other ftpd's)
  22. local_umask=0002
  23. file_open_mode=664
  24. pasv_enable=yes
  25. pasv_max_port=10090
  26. pasv_min_port=10100
  27. #
  28. # Uncomment this to allow the anonymous FTP user to upload files. This only
  29. # has an effect if the above global write enable is activated. Also, you will
  30. # obviously need to create a directory writable by the FTP user.
  31. #anon_upload_enable=YES
  32. #
  33. # Uncomment this if you want the anonymous FTP user to be able to create
  34. # new directories.
  35. #anon_mkdir_write_enable=YES
  36. #
  37. # Activate directory messages - messages given to remote users when they
  38. # go into a certain directory.
  39. dirmessage_enable=YES
  40. #
  41. # The target log file can be vsftpd_log_file or xferlog_file.
  42. # This depends on setting xferlog_std_format parameter
  43. xferlog_enable=YES
  44. #
  45. # Make sure PORT transfer connections originate from port 20 (ftp-data).
  46. connect_from_port_20=YES
  47. #
  48. # If you want, you can arrange for uploaded anonymous files to be owned by
  49. # a different user. Note! Using "root" for uploaded files is not
  50. # recommended!
  51. #chown_uploads=YES
  52. #chown_username=whoever
  53. #
  54. # The name of log file when xferlog_enable=YES and xferlog_std_format=YES
  55. # WARNING - changing this filename affects /etc/logrotate.d/vsftpd.log
  56. #xferlog_file=/var/log/xferlog
  57. #
  58. # Switches between logging into vsftpd_log_file and xferlog_file files.
  59. # NO writes to vsftpd_log_file, YES to xferlog_file
  60. xferlog_std_format=YES
  61. #
  62. # You may change the default value for timing out an idle session.
  63. #idle_session_timeout=600
  64. #
  65. # You may change the default value for timing out a data connection.
  66. #data_connection_timeout=120
  67. #
  68. # It is recommended that you define on your system a unique user which the
  69. # ftp server can use as a totally isolated and unprivileged user.
  70. #nopriv_user=ftpsecure
  71. #
  72. # Enable this and the server will recognise asynchronous ABOR requests. Not
  73. # recommended for security (the code is non-trivial). Not enabling it,
  74. # however, may confuse older FTP clients.
  75. #async_abor_enable=YES
  76. #
  77. # By default the server will pretend to allow ASCII mode but in fact ignore
  78. # the request. Turn on the below options to have the server actually do ASCII
  79. # mangling on files when in ASCII mode.
  80. # Beware that on some FTP servers, ASCII support allows a denial of service
  81. # attack (DoS) via the command "SIZE /big/file" in ASCII mode. vsftpd
  82. # predicted this attack and has always been safe, reporting the size of the
  83. # raw file.
  84. # ASCII mangling is a horrible feature of the protocol.
  85. #ascii_upload_enable=YES
  86. #ascii_download_enable=YES
  87. #
  88. # You may fully customise the login banner string:
  89. #ftpd_banner=Welcome to blah FTP service.
  90. #
  91. # You may specify a file of disallowed anonymous e-mail addresses. Apparently
  92. # useful for combatting certain DoS attacks.
  93. #deny_email_enable=YES
  94. # (default follows)
  95. #banned_email_file=/etc/vsftpd/banned_emails
  96. #
  97. # You may specify an explicit list of local users to chroot() to their home
  98. # directory. If chroot_local_user is YES, then this list becomes a list of
  99. # users to NOT chroot().
  100. chroot_local_user=YES
  101. #chroot_list_enable=YES
  102. # (default follows)
  103. #chroot_list_file=/etc/vsftpd/chroot_list
  104. #
  105. # You may activate the "-R" option to the builtin ls. This is disabled by
  106. # default to avoid remote users being able to cause excessive I/O on large
  107. # sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
  108. # the presence of the "-R" option, so there is a strong case for enabling it.
  109. #ls_recurse_enable=YES
  110. #
  111. # When "listen" directive is enabled, vsftpd runs in standalone mode and
  112. # listens on IPv4 sockets. This directive cannot be used in conjunction
  113. # with the listen_ipv6 directive.
  114. listen=YES
  115. #
  116. # This directive enables listening on IPv6 sockets. To listen on IPv4 and IPv6
  117. # sockets, you must run two copies of vsftpd with two configuration files.
  118. # Make sure, that one of the listen options is commented !!
  119. #listen_ipv6=YES
  120.  
  121. pam_service_name=vsftpd
  122. userlist_enable=YES
  123. tcp_wrappers=YES
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement