home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / incpam09.zip / INCPAM09.DOC < prev    next >
Text File  |  1995-05-07  |  3KB  |  83 lines

  1.                    OS/2  INCPAM     beta     Ver. 0.9
  2.                     a FrontEnd  For  IBM  PPP driver
  3.                    (c) Copyright 1995 Jean-Louis Noel
  4.  
  5. This is the first beta release of INCPAM. It requires IBM PPP driver.
  6. It receive com port OPEN with online a user for the PPP driver.
  7. If you would a stand-alone version, try INCPPP09.ZIP.
  8. It is released to public domain as a freeware for non-commercial use.
  9.  
  10. This software is released "AS IS". You are on own risk of using this
  11. software. The author is not liable to any damage. If you have any
  12. question, bug report or sugestion, please address them to
  13. <jln@habcnx.interpac.be> or 2:293/2602.
  14.  
  15. Installation
  16. ============
  17. Put the INCPPP09.EXE in your path. It is desigend to run with a CMD
  18. file like that:
  19.         
  20.         :begin
  21.         incppp09 2 com2
  22.         REM 2 is task number com2 is communication port
  23.         
  24.         if errorlevel 3 goto begin
  25.         REM error 3 = carrier lost
  26.         
  27.         if errorlevel 2 goto end
  28.         REM TRUSERS or PPP2.CFG file missing in etc directory.
  29.         
  30.         if errorlevel 1 goto end
  31.         REM general error
  32.         
  33.         goto begin
  34.         :end
  35.  
  36. INCPPP _MUST_ find the files TRUSERS and PPPx.CFG (x = task number) 
  37. in the ETC path. The TRUSERS file is created by the TCP/IP notepad, it
  38. looks like this:
  39.  
  40.         user: name password
  41.         rd: d:\pb\files
  42.         wr: d:\pb\files\incoming
  43.  
  44.         user: otuser otpwd
  45.         rd: d:\pb\files
  46.         wr: d:\pb\files\specd
  47.  
  48.         ......
  49.  
  50. INCPPP only takes care of the user line. The PPPx.cfg is the option
  51. file passed to the PPP driver, it looks like this:
  52.  
  53.         com2
  54.         19200
  55.         192.168.11.6:192.168.11.9
  56.         defaultroute
  57.         rtscts
  58.  
  59. INCPPP can also read INCPPPx.CFG and HEADER files in ETC directory.
  60. The INCPPPx.CFG allow you to modify user and password prompts and
  61. modem strings, it looks like this:
  62.  
  63.            Login:
  64.         Password:
  65.         AT&FE0
  66.         ATS0=0
  67.         ATV1Q0
  68.         ATA
  69.         ATH
  70.  
  71. The 3th to 5th lines string transmited to modem for initialisation,
  72. S0=0 please I find a ring to pick up the modem!
  73. The 6th is the hangup string and the last one the hangup string.
  74. The HEADER file is your banner in plain ASCII text, if none then it
  75. displays mine! :-)
  76.  
  77. ===================================================================
  78. If someone knows how to start PPP.EXE with predefined pppx attach,
  79. drop me a line! Thanks.
  80. ===================================================================
  81.  
  82.  
  83.