README
上传用户:ig0539
上传日期:2022-05-21
资源大小:181k
文件大小:4k
源码类别:

Ftp客户端

开发平台:

C/C++

  1. This example shows how you might set up a (possibly large) internet facing
  2. FTP site.
  3. The emphasis will be on security and performance.
  4. We will see how by integrating vsftpd with xinetd, we get a powerful
  5. combination.
  6. Step 1) Set up your xinetd configuration file.
  7. An example xinetd configuration file "vsftpd.xinetd" is supplied.
  8. To install it:
  9. cp vsftpd.xinetd /etc/xinetd.d/vsftpd
  10. Let's look at the important content in this file and see what it does:
  11. disable                 = no
  12. socket_type             = stream
  13. wait                    = no
  14. This says that the service is active, and it is using standard TCP sockets.
  15. user                    = root
  16. server                  = /usr/local/sbin/vsftpd
  17. The server program /usr/local/sbin/vsftpd is used to handle incoming FTP
  18. requests, and the program is started as root (vsftpd will of course quickly
  19. drop as much privilege as possible). NOTE! Make sure that you have the vsftpd
  20. binary installed in /usr/local/sbin (or change the file path in the xinetd
  21. file).
  22. per_source              = 5
  23. instances               = 200
  24. For security, the maximum allowed connections from a single IP address is 5.
  25. The total maximum concurrent connections is 200.
  26. no_access               = 192.168.1.3
  27. As an example of how to ban certain sites from connecting, 192.168.1.3 will
  28. be denied access.
  29. banner_fail             = /etc/vsftpd.busy_banner
  30. This is the file to display to users if the connection is refused for whatever
  31. reason (too many users, IP banned).
  32. Example of how to populate it:
  33. echo "421 Server busy, please try later." > /etc/vsftpd.busy_banner
  34. log_on_success          += PID HOST DURATION
  35. log_on_failure          += HOST
  36. This will log the IP address of all connection attempts - successful or not,
  37. along with the time. If an FTP server is launched for the connection, it's
  38. process ID and usage duration will be logged too. If you are using RedHat
  39. like me, this log information will appear in /var/log/secure.
  40. Step 2) Set up your vsftpd configuration file.
  41. An example file is supplied. Install it like this:
  42. cp vsftpd.conf /etc
  43. Let's example the contents of the file:
  44. # Access rights
  45. anonymous_enable=YES
  46. local_enable=NO
  47. write_enable=NO
  48. anon_upload_enable=NO
  49. anon_mkdir_write_enable=NO
  50. anon_other_write_enable=NO
  51. This makes sure the FTP server is in anonymous-only mode and that all write
  52. and upload permissions are disabled. Note that most of these settings are
  53. the same as the default values anyway - but where security is concerned, it
  54. is good to be clear.
  55. # Security
  56. anon_world_readable_only=YES
  57. connect_from_port_20=YES
  58. hide_ids=YES
  59. pasv_min_port=50000
  60. pasv_max_port=60000
  61. These settings, in order
  62. - Make sure only world-readable files and directories are served.
  63. - Originates FTP port connections from a secure port - so users on the FTP
  64. server cannot try and fake file content.
  65. - Hide the FTP server user IDs and just display "ftp" in directory listings.
  66. This is also a performance boost.
  67. - Set a 50000-60000 port range for passive connections - may enable easier
  68. firewall setup!
  69. # Features
  70. xferlog_enable=YES
  71. ls_recurse_enable=NO
  72. ascii_download_enable=NO
  73. async_abor_enable=YES
  74. In order,
  75. - Enables recording of transfer stats to /var/log/vsftpd.log
  76. - Disables "ls -R", to prevent it being used as a DoS attack. Note - sites
  77. wanting to be copied via the "mirror" program might need to enable this.
  78. - Disables downloading in ASCII mode, to prevent it being used as a DoS
  79. attack (ASCII downloads are CPU heavy).
  80. - Enables older FTP clients to cancel in-progress transfers.
  81. # Performance
  82. one_process_model=YES
  83. idle_session_timeout=120
  84. data_connection_timeout=300
  85. accept_timeout=60
  86. connect_timeout=60
  87. anon_max_rate=50000
  88. In order,
  89. - Activates a faster "one process per connection" model. Note! To maintain
  90. security, this feature is only available on systems with capabilities - e.g.
  91. Linux kernel 2.4.
  92. - Boots off idle users after 2 minutes.
  93. - Boots off idle downloads after 5 minutes.
  94. - Boots off hung passive connects after 1 minute.
  95. - Boots off hung active connects after 1 minute.
  96. - Limits a single client to ~50kbytes / sec download speed.
  97. Step 3) Restart xinetd.
  98. (on RedHat)
  99. /etc/rc.d/init.d/xinetd restart
  100. If you run into problems, check:
  101. 1) Your /etc/xinetd.d directory only has one FTP service.