home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / ftpdc2.zip / ftpdc2.doc < prev   
Text File  |  1994-08-12  |  2KB  |  74 lines

  1. FTPDC2 By Albert Crosby
  2. =======================
  3.  
  4. FTPDC2 is a wrapper for OS/2's FTPDC that allows you to display a welcome
  5. message and to limit the number of incoming FTP sessions to your host.
  6.  
  7. Requirements:
  8. -------------
  9.  
  10. *      IBM's TCPIP for OS/2 version 1.2.1 or later
  11. *      OS/2 version 2.0 or later
  12. *      RxSock
  13. *      RxUtil (YDBAUTIL)
  14.  
  15. The last two portions are available from most OS/2 ftp archives.
  16.  
  17. What it CANNOT do:
  18. ------------------
  19.  
  20. FTPDC2 cannot tell you detailed information about incoming FTP sessions.
  21. I also do not know of anyway to have the FTPDC generate trace files for
  22. your incoming FTP sessions.  You cannot have different limits for 
  23. different users.  You can, however, modify the code so that you can have
  24. different user limits for different times of day.
  25.  
  26. Installation:
  27. -------------
  28.  
  29. Install RxSock and RxUtil according to their instructions.
  30.  
  31. Place FTPDC2.CMD in your TCPIP/BIN directory.
  32.  
  33. Edit INETD.LST in your TCPIP/ETC directory, and change the line:
  34.  
  35. ftp tcp ftpdc
  36.  
  37. to:
  38.  
  39. ftp tcp ftpdc2
  40.  
  41. Customization
  42. -------------
  43.  
  44. The FTPDC2.CMD included with this archive 
  45.  
  46. FTPDC2 is customized for MY site.  You will need to do a lot of 
  47. customization to make it reflect your preferences.
  48.  
  49. There are two kinds of messages available: 200- messages and 500-
  50. messages.  200- messages should be informative messages.  500- messages
  51. should be sent before refusing a connection.
  52.  
  53. There are two REXX procedures to deal with messages:
  54.  
  55. send for 200- messages
  56. send500 for 500- messages
  57.  
  58. Use:
  59.  
  60. Call Send "This is a 200 message"
  61.  
  62. or
  63.  
  64. Call Send500 "This is a 500 message"
  65.  
  66. to send a message.
  67.  
  68. The variable MAXUSERS sets the user limit.  You could change the simple
  69. set statement to a computation based on the time of day.
  70.  
  71. Enjoy, and feel free to change this file as you see fit.
  72.  
  73. Albert
  74.