Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.32 KB | None | 0 0
  1. GNU nano 2.7.4 File: vsftpd.conf Modified
  2.  
  3. # Example config file /etc/vsftpd.conf
  4. #
  5. # The default compiled in settings are fairly paranoid. This sample file
  6. # loosens things up a bit, to make the ftp daemon more usable.
  7. # Please see vsftpd.conf.5 for all compiled in defaults.
  8. #
  9. # READ THIS: This example file is NOT an exhaustive list of vsftpd options.
  10. # Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
  11. # capabilities.
  12. #
  13. #
  14. # Run standalone? vsftpd can run either from an inetd or as a standalone
  15. # daemon started from an initscript.
  16. listen=NO
  17. #
  18. # This directive enables listening on IPv6 sockets. By default, listening
  19. # on the IPv6 "any" address (::) will accept connections from both IPv6
  20. # and IPv4 clients. It is not necessary to listen on *both* IPv4 and IPv6
  21. # sockets. If you want that (perhaps because you want to listen on specific
  22. # addresses) then you must run two copies of vsftpd with two configuration
  23. # files.
  24. listen_ipv6=YES
  25. #
  26. # Allow anonymous FTP? (Disabled by default).
  27. anonymous_enable=NO
  28. #
  29. # Uncomment this to allow local users to log in.
  30. local_enable=YES
  31. #
  32. # Uncomment this to enable any form of FTP write command.
  33. write_enable=YES
  34. #
  35. # Default umask for local users is 077. You may wish to change this to 022,
  36. # if your users expect that (022 is used by most other ftpd's)
  37. #local_umask=022
  38. #
  39. # Uncomment this to allow the anonymous FTP user to upload files. This only
  40. # has an effect if the above global write enable is activated. Also, you will
  41. # obviously need to create a directory writable by the FTP user.
  42. #anon_upload_enable=YES
  43. #
  44. # Uncomment this if you want the anonymous FTP user to be able to create
  45. # new directories.
  46. #anon_mkdir_write_enable=YES
  47. #
  48. # Activate directory messages - messages given to remote users when they
  49. # go into a certain directory.
  50. dirmessage_enable=YES
  51. #
  52. # If enabled, vsftpd will display directory listings with the time
  53. # in your local time zone. The default is to display GMT. The
  54. # times returned by the MDTM FTP command are also affected by this
  55. # option.
  56. use_localtime=YES
  57. #
  58. # Activate logging of uploads/downloads.
  59. xferlog_enable=YES
  60. #
  61. # Make sure PORT transfer connections originate from port 20 (ftp-data).
  62. connect_from_port_20=YES
  63. #
  64. # If you want, you can arrange for uploaded anonymous files to be owned by
  65. # a different user. Note! Using "root" for uploaded files is not
  66. # recommended!
  67. #chown_uploads=YES
  68. #chown_username=whoever
  69. #
  70. [ Read 160 lines ]
  71. ^G Get Help ^O Write Out ^W Where Is ^K Cut Text ^J Justify ^C Cur Pos ^Y Prev Page M-\ First Line M-W WhereIs Next ^^ Mark Text M-} Indent Text M-U Undo ^B Back ^Left Prev Word ^A Home
  72. ^X Exit ^R Read File ^\ Replace ^U Uncut Text ^T To Spell ^_ Go To Line ^V Next Page M-/ Last Line M-] To Bracket M-^ Copy Text M-{ Unindent Text M-E Redo ^F Forward ^Right Next Word ^E End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement