Guest User

Untitled

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