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

Ftp客户端

开发平台:

C/C++

  1. This example shows how you might set up virtual hosts. Virtual hosting is
  2. where different clients access your machine on different IP addresses (virtual
  3. IPs) and get redirected to different ftp sites.
  4. For example, if your machine responds to two IPs - 127.0.0.1 and 127.0.0.2,
  5. you could have the two different IPs represent two totally different FTP sites.
  6. For this example, we are going to build on the "INTERNET_SITE" example.
  7. Step 1) Set up a virtual IP address.
  8. ifconfig eth0:1 192.168.1.10 up
  9. (the standard IP address is 192.168.1.2)
  10. (note - this isn't quite complete, the route for local connects hasn't been
  11. added, but it will do for now)
  12. Step 2) Create a user / location for the new virtual site.
  13. useradd -d /var/ftp_site2 ftp_site2
  14. chown root.root /var/ftp_site2
  15. chmod a+rx /var/ftp_site2
  16. umask 022
  17. mkdir /var/ftp_site2/pub
  18. echo "test" > /var/ftp_site2/pub/content
  19. Step 3) Modify the existing site to respond to the primary IP.
  20. Edit /etc/xinetd.d/vsftpd, and add the config line:
  21. bind = 192.168.1.2
  22. Step 4) Create the new site, responding on the virtual IP.
  23. cp /etc/xinetd.d/vsftpd /etc/xinetd.d/vsftpd2
  24. Edit vsftpd2, and change
  25. - The bind line to refer to the IP address 192.168.1.10
  26. - Add the line
  27. server_args = /etc/vsftpd_site2.conf
  28. This launches this FTP site with a different vsftpd configuration file.
  29. cp /etc/vsftpd.conf /etc/vsftpd_site2.conf
  30. Add two lines:
  31. ftp_username=ftp_site2
  32. ftpd_banner=This is the alternative FTP site.
  33. Step 5) Restart xinetd and test!
  34. /etc/rc.d/init.d/xinetd restart
  35. [chris@localhost vsftpd]$ ftp 192.168.1.2
  36. Connected to 192.168.1.2 (192.168.1.2).
  37. 220 ready, dude (vsFTPd 1.1.0: beat me, break me)
  38. Name (192.168.1.2:chris): [chris@localhost vsftpd]$
  39. [chris@localhost vsftpd]$ ftp 192.168.1.2
  40. Connected to 192.168.1.2 (192.168.1.2).
  41. 220 ready, dude (vsFTPd 1.1.0: beat me, break me)
  42. Name (192.168.1.2:chris):
  43. 530 This FTP server is anonymous only.
  44. Login failed.
  45. ftp> quit
  46. 221 Goodbye.
  47. [chris@localhost vsftpd]$ ftp 192.168.1.10
  48. Connected to 192.168.1.10 (192.168.1.10).
  49. 220 This is the alternative FTP site.
  50. Name (192.168.1.10:chris):
  51. 530 This FTP server is anonymous only.
  52. Login failed.
  53. ftp>