home *** CD-ROM | disk | FTP | other *** search
/ Mega CD-ROM 1 / megacd_rom_1.zip / megacd_rom_1 / NETWORK / NOS_SLFP.ZIP / KA9Q.DOC < prev    next >
Text File  |  1991-06-18  |  3KB  |  67 lines

  1. A typical net session:
  2.  
  3. a dos batch file:
  4.         slfp /s 2400 /d atdt764-4800
  5.         if errorlevel 1 goto end
  6.         net -d c:\net
  7.     termin 0x60
  8.         :end
  9.  
  10. a 4dos alias:
  11.         slfp /s 2400 /d atdt764-4800 ^
  12.         iff errorlevel 1 then ^
  13.         net -d c:\net ^
  14.         termin 0x60 ^
  15.         endiff
  16.  
  17. Try running STAT.EXE to get statistics on loaded
  18. packet drivers. TERMIN unloads the packet driver from memory, (and resets
  19. the COM port). The AUTOEXEC.NET file must be in the directory that the
  20. NET command points at, or in the root directory.
  21.  
  22. SLFP packet driver info:
  23.  
  24.     param    default     description
  25.     -----    -------     -----------
  26.     /p    0x60        Packet driver interrupt number
  27.     /i    4        IRQ for com port. Use 4 for COM1 and 3 for COM2.
  28.     /b    0x3F8        I/O base address for com port. Use 0x3F8 for
  29.                 COM1 and 0x2F8 for COM2.
  30.     /s    2400        Line speed bit rate.
  31.     /d    -none-        Dial sequence. Use atdt764-4800 for local dial.
  32.     /t    60        Initial timeout. Amount of time to wait for
  33.                 the dialup and initial handshake with Merit.
  34.         /h      1               Initial SLFP handshake. This can be turned off
  35.                                 with value 0. This allows one to make the
  36.                                 initial connection with a terminal emulator
  37.                                 like kermit, and enter PCIP at the TERMINAL=
  38.                                 prompt. This is useful if you have problems
  39.                                 with the SCP training up into SLFP protocol
  40.                                 mode.
  41.          /f     1               Initial FIFO check value. If set to one,
  42.                                 slfp checks for a 16550a UART for the COM
  43.                                 port. This allows the high performence FIFO
  44.                                 on chip to be used. If set to zero, slfp
  45.                                 assumes a normal 8250 chip set.
  46.         /q      0               Quit parameter. If set to one, a soft hangup
  47.                                 is performed when the terminate function is
  48.                                 called. This only works with hayes-compatable
  49.                                 modems, as this sends "+++" and "ATH0".
  50.                                 If set to zero, a hardware hangup is performed
  51.                                 by dropping DTR.
  52.  
  53. NET program command line:
  54.  
  55.        net [-d directory] [-s #sockets] [-b] [startupfile]
  56.  
  57.        -d   The root directory for NET files. This defaults to the root 
  58.             directory of the logged in drive. This is where autoexec.net, 
  59.             domain.txt, and the ftp and spool directories are rooted. 
  60.        -s   Number of sockets. Defaults to 40. You might need to 
  61.             increase this if you're running a bunch of sessions.
  62.        -b   Use the BIOS for all writes to video.
  63.  
  64.        none The startup file. Defaults to autoexec.net. Found in the 
  65.             net directory root if a relative file name, but you may 
  66.             specify an absolute path. 
  67.