home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / hardware / ovladace / Sit / 3com / edisk / 3c562x.exe / HELP / LANTASTK.TXT < prev    next >
Text File  |  1996-11-11  |  5KB  |  231 lines

  1. 3Com Corporation
  2. NDIS 2.01 Drivers Installation Notes
  3.  
  4.  
  5. This procedure describes how to install Artisoft LANtastic 6.0
  6. using the 3Com NDIS 2.01 driver ELPC3X.DOS.  The install
  7. information files are designed for MicroSoft's install utility 
  8. and must be edited for LANtastic's INSTALL program.  
  9. Edit the ELPC3.NIF file, which is located in the
  10. \MSLANMAN.DOS\DRIVERS\NIF subdirectory.  Comment 
  11. out line 3 by putting a semicolon at the beginning of the line.
  12. For example:
  13.  
  14.     ;DeviceDriver = 3CELCM.EXE
  15.  
  16. To install LANtastic from the DOS 
  17. prompt or from Windows, follow these steps:
  18.  
  19.  
  20. Installing from the DOS Prompt
  21.  
  22.  1. Insert Artisoft's LANtastic Install Disk 1 of 4 
  23.     in the diskette drive.
  24.  
  25.  2. Type:
  26.  
  27.     INSTALL
  28.  
  29.     This launches Windows and starts the installation of 
  30.     LANtastic.
  31.  
  32.  3. Go to step 4 under the "Installing from Windows" procedure
  33.     and continue with the remaining steps.  
  34.  
  35. Installing from Windows
  36.  
  37.  1. Launch Windows, if it is not already opened.  
  38.  
  39.  2. Select Run from the Windows File menu.
  40.  
  41.  3. Type:  
  42.  
  43.     A:\INSTALL
  44.  
  45.     If you are using a different drive, use the letter for 
  46.     that drive.
  47.  
  48.  4. Follow the instructions and answer the questions that appear. 
  49.  
  50.  5. Select NDIS Support for Network Adapters in the 
  51.     Select Network Adapter window.  
  52.  
  53.  6. When prompted, remove the LANtastic diskette, insert 
  54.     the EtherDisk diskette provided with the 3C562 PC Card, 
  55.     and press [Enter].  
  56.  
  57.     The NDIS driver is copied to your hard drive. 
  58.  
  59.  7. When prompted, reinsert the LANtastic Install 
  60.     Disk 1 in the drive.
  61.  
  62.  8. Answer the questions concerning your PC name 
  63.     and drives based on your configuration. 
  64.  
  65.  9. After installation is complete, copy 3CELCM.EXE from the
  66.     root directory of the EtherDisk on to the directory 
  67.     of the hard drive where LANTASTIC resides  (the default 
  68.     is \LANTASTI).
  69.  
  70. 10. Edit the CONFIG.SYS file and add the 3CELCM.EXE entry right
  71.     before the ELPC3X.DOS driver entry, so that that the 
  72.     entries look somewhat as follows:
  73.  
  74.        ....
  75.        DEVICE=C:\LANTASTI\3CELCM.EXE      <--- Add this
  76.        DEVICE=C:\LANTASTI\ELPC3X.DOS
  77.        ....
  78.  
  79. 11. See SYSTEM.INI information below. 
  80.  
  81.  
  82.  
  83. Changes and Additions to PC Startup Files
  84. -----------------------------------------
  85.  
  86. The following lines are added or changed in 
  87. these PC startup files:  
  88.  
  89. AUTOEXEC.BAT File 
  90.  
  91. call C:\LANTASTI\STARTNET.BAT
  92.  
  93.  
  94. CONFIG.SYS File 
  95.  
  96. DEVICE=C:\LANTASTI\PROTMAN.DOS /I:C:\LANTASTI
  97. DEVICE=C:\LANTASTI\3CELCM.EXE
  98. DEVICE=C:\LANTASTI\ELPC3X.DOS     
  99.  
  100. PROTOCOL.INI File 
  101.  
  102. [PROTMAN]
  103.   DRIVERNAME = PROTMAN$
  104.   DYNAMIC = YES
  105.  
  106. [3CELCM_NIF]     
  107.   DRIVERNAME = ELPC3$ 
  108.  
  109.  
  110. STARTNET.BAT File 
  111.  
  112. C:
  113. cd C:\LANTASTI
  114.  
  115. SET LAN_CFG=C:\LANTASTI
  116.  
  117. rem If LANtastic is disabled, skip everything.
  118. IF EXIST DISABLED GOTO :STARTNET_DONE
  119.  
  120. @echo ===== Begin LANtastic configuration =====
  121.  
  122. PATH C:\LANTASTI;C:\LANTASTI\NW;%PATH%
  123. SET LAN_DIR=C:\LANTASTI.NET
  124. SET NWDBPATH=C:\LANTASTI\NW
  125.  
  126. LOADHIGH AI-NDIS BIND_TO=ELPC3X_NIF
  127.  
  128. AILANBIO @STARTNET.CFG
  129.  
  130. REDIR TOSHIBA4800CT @STARTNET.CF ======> Just an example !!!
  131.  
  132. IF EXIST NOSHARE GOTO :NOSHARE
  133. SERVER C:\LANTASTI.NET @STARTNET.CFG
  134. NET LOGIN \\TOSHIBA4800CT ======> Just an example !!!
  135. GOTO :CONTINUE
  136.  
  137. :NOSHARE
  138. @echo LANtastic server was installed but turned off.
  139.  
  140. :CONTINUE
  141.  
  142. rem If CONNECT.BAT exists, run it to set up connections.
  143. IF EXIST CONNECT.BAT GOTO :CONNECT
  144.  
  145. rem Otherwise set up connections specified 
  146. rem  during install.
  147.  
  148. NET LOGIN/wait \\ABC        ======> Just an example !!!
  149. NET USE D: \\ABC\C-DRIVE    ======> Just an example !!!
  150. NET LPT TIMEOUT 10
  151. GOTO :CONNECT_DONE
  152.  
  153. :CONNECT
  154. @echo Setting up LANtastic connections from CONNECT.BAT
  155. rem Build CONNECT.BAT like this: 
  156. rem        "NET SHOW/BATCH > C:\LANTASTI\CONNECT.BAT"
  157. rem   (or run the batch file SETNET.BAT)
  158. call CONNECT.BAT
  159.  
  160. :CONNECT_DONE
  161. NET POSTBOX
  162.  
  163. @echo ===== End LANtastic configuration =====
  164.  
  165. :STARTNET_DONE
  166. cd \
  167.  
  168.  
  169. SYSTEM.INI File (Windows)
  170.  
  171. [boot]
  172. shell=progman.exe
  173. network.drv=C:\LANTASTI\LANTNET.DRV
  174.  
  175. [boot.description]
  176. network.drv=LANtastic for Windows Version 6.00
  177.  
  178. [386Enh]
  179. +network=*vnetbios,C:\LANTASTI\LANTASTI.386
  180.  
  181. [network drivers]
  182. netcard=elpc3.dos 
  183.  
  184. [LANtastic]
  185. Comment=Add 1 Network_IRQ per adapter, specify correct Irq values.
  186. Network_IRQ=15           
  187.  
  188.  
  189. WIN.INI  File (Windows)
  190.  
  191. [windows]
  192. spooler=no
  193. load=NWPOPUP.EXE C:\LANTASTI\WNET.EXE
  194. run=C:\LANTASTI\MKWGROUP.EXE
  195.  
  196.  
  197.  
  198.  
  199. =========================================================
  200. SYSTEM.INI information
  201. =======================
  202.    In order for the modem to function correctly 
  203. in MS Windows, add the following commands to your 
  204. Window's  SYSTEM.INI file under the [386Enh] category:   
  205. (In case they are not there already)
  206.  
  207. [386Enh]
  208.      :
  209.      :
  210. COM1Base=3F8
  211. COM1Irq=4
  212. COM2Base=2F8
  213. COM2Irq=3
  214. COM3Base=3E8
  215. COM3Irq=4
  216. COM4Base=2E8
  217. COM4Irq=3
  218.  
  219. =========================================================
  220.  
  221. =========================================================
  222. Please Note
  223. ============
  224.  
  225.  Although the driver name is ELPC3X.DOS, the internal 
  226.  driver name (used in PROTOCOL.INI) is ELPC3$                                  
  227. =========================================================
  228.  
  229.                                 
  230. (%VER NDIS - Artisoft Lantastik v2.0g)
  231.