home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / mag&info / ndis.zip / AEXNDIS.DOC next >
Text File  |  1992-10-08  |  4KB  |  125 lines

  1.                   AEXNDIS Information File (AEXNDIS.DOC)
  2.             --------------------------------------------------
  3.                       (C) Copyright 1992 Artisoft, Inc.
  4.                                 Edition 1.0
  5.  
  6. Introduction
  7. ============
  8. AEXNDIS.DOS is Artisoft's DOS Network Driver Interface Specification
  9. (NDIS) driver.  AEXNDIS.OS2 is Artisoft's NDIS driver for computers
  10. running OS2.  These Media Access Control (MAC) layer drivers allow you to
  11. use Artisoft Ethernet adapters with network operating systems and
  12. applications that support NDIS.  These drivers can be used with any
  13. Artisoft Ethernet adapter except Artisoft Central Station.
  14.  
  15. A Word About NDIS
  16. =================
  17. The NDIS protocol, established by Microsoft(R), uses a MAC layer driver
  18. to communicate with the adapter and a protocol level driver to provide
  19. reliable communications between network nodes.  These two layers make up
  20. the transport layer.  A protocol manager program such as Microsoft's
  21. PROTMAN.DOS allows communications between these two programs and also
  22. between any other protocol drivers that need to communicate with the MAC
  23. layer driver.  Once this is done, the computer can communicate
  24. with other network computers.
  25.  
  26. Software settings for the drivers are stored in the PROTOCOL.INI file.
  27. Here any optional parameters for the drivers can be specified.  For more
  28. information, refer to your network operating system manuals.
  29.  
  30. Typical network operating systems that support NDIS include:
  31.  
  32.      Microsoft LAN Manager(Tm)
  33.      Banyan(R) VINES(Tm)
  34.      IBM(R) PC LAN Server(Tm) and Requestor(Tm)
  35.  
  36.  
  37. AEXNDIS Installation in a LAN Manager Network
  38. =============================================
  39. Complete the following steps:
  40.  
  41. 1. Install the adapter in your PC as instructed in your hardware manual.
  42.  
  43. 2. Begin the LAN Manager installation by running SETUP.  Refer to your
  44.    LAN Manager manuals for more information.
  45.  
  46. 3. When prompted to select a network adapter, select Other.
  47.  
  48. 4. When prompted, insert the Artisoft driver diskette and specify the
  49.    drive where you placed the diskette.
  50.  
  51. 5. Proceed with the installation as instructed by SETUP and your user
  52.    manuals.
  53.  
  54. AEXNDIS General Installation Steps
  55. ==================================
  56. Complete the following steps to install the AEXNDIS driver if your network
  57. operating system does not have an automated software installation
  58. procedure such as LAN Manager's.
  59.  
  60. 1. Install the adapter in your PC as instructed in your hardware manual.
  61.  
  62. 2. Install your network operating software.  Refer to your network
  63.    operating system documentation for more information.
  64.  
  65. 3. Insert the Artisoft driver diskette and copy the software to the
  66.    drive where you installed the network operating system software.  Copy
  67.    AEXNDIS.DOS if your computer is running DOS.  Copy AEXNDIS.OS2 if your
  68.    machine is running OS/2.
  69.  
  70. 4. Edit your CONFIG.SYS to include the commands loading the protocol
  71.    manager and AEXNDIS driver.  Below is a sample CONFIG.SYS:
  72.  
  73.      FILES=50
  74.      BUFFERS=32
  75.      LASTDRIVE=Z
  76.      FCBS=16,8
  77.      DEVICE=C:\NETWORK\PROTMAN.DOS /i:C:\NETWORK
  78.      DEVICE=C:\NETWORK\AEXNDIS.DOS
  79.  
  80.      where "PROTMAN.DOS" refers to the protocol manager provided by your
  81.      network operating system.
  82.  
  83. 5. Edit the AUTOEXEC.BAT to include commands loading the rest of the
  84.    network TSRs.  For example:
  85.  
  86.      @echo off
  87.      prompt $p$g
  88.      PATH C:\:C:\WINDOWS;C:\DOS;C:\UTIL;
  89.      LOAD NETBEUI
  90.  
  91.      where "NETBEUI" refers to the protocol driver programs for your
  92.      network operating system.
  93.  
  94. 6. In your installation directory, create a PROTOCOL.INI file to store the
  95.    settings for the protocol manager, protocol driver and the AEXNDIS
  96.    driver.  Here is a sample PROTOCOL.INI:
  97.  
  98.      [PROTMAN_XIF]
  99.        DRIVERNAME = PROTMAN$
  100.        DYNAMIC = YES
  101.        PRIORITY = NETBEUI
  102.  
  103.      [NETBEUI_NIF]
  104.        Drivername = NETBEUI$
  105.        SESSIONS = 6
  106.        NCBS = 12
  107.        BINDINGS = "AEXNDIS_NIF"
  108.        LANABASE = 0
  109.  
  110.      [AEXNDIS_NIF]
  111.        IOBASE = 0x300
  112.        INTERRUPT = 3
  113.        DRIVERNAME = AEXNDS$
  114.  
  115.   Refer to your network operating system software documentation for
  116.   information on the valid protocol manager and protocol driver
  117.   parameters.
  118.  
  119. 7. Refer to your network operating system manuals for information on using
  120.    your network.
  121.  
  122.  
  123.  
  124.  
  125.