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

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