home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1998 October / VPR9810B.BIN / DRIVER / asus / L101V109 / INFO / NETWARE / NW311.TXT next >
Text File  |  1997-06-25  |  5KB  |  153 lines

  1.    3 Server: NetWare 3.11 server
  2.                                                                     v1.07
  3.  
  4.  
  5. NetWare* 3.11 Server Driver Installation Notes for Intel's
  6. EtherExpress(TM) PRO/100+ adapter
  7. ==========================================================
  8.  
  9. Location of driver: \NWSERVER\311LAN\100BLAN.EXE (self-extracting
  10.             archive containing ODI 3.2 Assembly Specification
  11.             driver)
  12.  
  13. Location of NLM's:  On Novell's automated services.
  14.    
  15.    ETHERTSM.NLM  04-18-95
  16.    LSLENH.NLM    12-21-94
  17.    PATCHMAN.NLM  01-22-96
  18.    MSM31X.NLM    11-23-94
  19.    MONITOR.NLM   10-26-92 (v1.75 or higher, otherwise abends will occur)
  20.       
  21.       Note: NetWare 3.1x needs MSM31X.NLM renamed to MSM.NLM.
  22.  
  23.  
  24.  
  25. Overview
  26. --------
  27. NetWare 3.11 requires an ODI 3.2 Assembly Specification driver.  This
  28. driver is in a self-extracting archive named 100BLAN.EXE contained on
  29. the \NWSERVER\311LAN\ directory of the Configuration and Drivers disk.
  30. To unpack the archive copy it to a blank floppy disk or other directory
  31. that has at least 60K bytes of free disk space and type E100BLAN on the
  32. command line.  The archive contains the following files:
  33.  
  34.      E100B.LAN (3.2 spec server driver)
  35.      E100B.LDI (Installation file)
  36.      NW311.TXT (This file)
  37.  
  38.  
  39. Sample load commands
  40. --------------------
  41. LOAD C:<PATH>\PATCHMAN
  42. LOAD C:<PATH>\LSLENH
  43. LOAD C:<PATH>\MSM
  44. LOAD C:<PATH>\ETHERTSM
  45. LOAD C:<PATH>\E100B SLOT=n FRAME=ETHERNET_802.3
  46. BIND IPX TO E100B NET=xxxxxxxx
  47.  
  48.  
  49. General instructions
  50. --------------------
  51.  
  52. 1  Install NetWare 3.11 according to the NetWare 3.11 installation
  53.    manual.
  54.  
  55. 2  Copy the E100B.LAN server driver, that you unpacked from the archive
  56.    100BLAN.EXE, and any updated NLMs to the NetWare server's hard drive.
  57.  
  58.    If you can't log in to the server (before starting the server) copy
  59.    the E100B.LAN driver to the root directory of the server's hard drive.
  60.  
  61.    If you can log into the server, copy the files to the SYSTEM
  62.    subdirectory. If you do this, you won't need to specify a path on the
  63.    load line. If you copy it to another directory, make sure the LOAD
  64.    statement includes the correct path.
  65.  
  66. 3  Modify the server's STARTUP.NCF to preallocate server buffers with the
  67.    following:
  68.       
  69.       SET MAXIMUM PHYSICAL RECEIVE PACKET SIZE = 2048 (or larger)
  70.  
  71. 4  Start the server. At the server console, issue the load and bind
  72.    statement.
  73.       
  74.       LOAD C:<PATH>\PATCHMAN
  75.       LOAD C:<PATH>\LSLENH
  76.       LOAD C:<PATH>\MSM
  77.       LOAD C:<PATH>\ETHERTSM
  78.       LOAD C:<PATH>\E100B SLOT=x FRAME=ETHERNET_802.3
  79.       BIND IPX TO E100B NET=xxxxxxxx
  80.  
  81.    Where:
  82.  
  83.    SLOT=x specifies the PCI device number. Substitute x with the valid
  84.    value for the adapter. You will be prompted if you don't specify a
  85.    slot number.
  86.  
  87.    NET=xxxxxxxx is the unique network address for that LAN segment.
  88.  
  89.    The default frame type is 802.2.  If your workstations needs to use
  90.    the 802.3 frame type, see the section later in this document about
  91.    using multiple frame types on one adapter.
  92.  
  93. 5  Add the load and bind statements you need to the server's AUTOEXEC.NCF
  94.    file so the EtherExpress PRO/100+ adapter driver loads automatically
  95.    each time the server starts.
  96.  
  97.  
  98. Hints and tips
  99. ==============
  100.  
  101.  
  102. 1  Installing multiple adapters:
  103.  
  104.    If you have multiple adapters in a single server, each adapter must
  105.    have a different NET number and SLOT number. Also, you may want to
  106.    name each adapter. For example:
  107.       
  108.       LOAD C:\E100B SLOT=3 NAME=LAN_A
  109.       BIND IPX TO LAN_A NET=222
  110.       LOAD C:\E100B SLOT=4 NAME=LAN_B
  111.       BIND IPX TO LAN_B NET=333
  112.  
  113. 2  If you have problems loading the driver on multiple adapters and the
  114.    initialization fails due to "Insufficient RCBs," increase the number
  115.    of buffers allocated to the server.
  116.  
  117.    Add the following to STARTUP.NCF:
  118.    
  119.    SET MINIMUM PACKET RECEIVE BUFFERS = 100 (or larger)
  120.    SET MAXIMUM PACKET RECEIVE BUFFERS = 500 (or larger)
  121.  
  122.    The MINIMUM value you specify must be at least 30 times the number of
  123.    EtherExpress PRO/100+ adapters in the computer.
  124.  
  125.    Recommended settings:
  126.    
  127.    1-3 adapters:  100
  128.    4 adapters:    150
  129.  
  130.    The MAXIMUM you can specify depends on the amount of memory in the
  131.    server, but it must be greater than the MINIMUM.
  132.  
  133. 3  Installing one adapter with multiple frame types:
  134.    
  135.    When binding multiple frame types to one adapter, enter a LOAD and
  136.    BIND statement for each frame type. Each LOAD statement uses the same
  137.    SLOT number, but each BIND statement needs a unique network number.
  138.    You must also include a name on each load line to avoid being prompted
  139.    for the board to bind IPX to.
  140.       
  141.       Example:
  142.       
  143.       LOAD C:\E100B SLOT=3 FRAME=ETHERNET_802.3 NAME=LAN8023
  144.       BIND IPX TO LAN8023 NET=77777
  145.       LOAD C:\E100B SLOT=3 FRAME=ETHERNET_802.2 NAME=LAN8022
  146.       BIND IPX TO LAN8022 NET=88888
  147.  
  148. 4  Optional LOAD line parameters.
  149.         See readme NWPARAM.TXT titled NetWare Server Parameters for
  150.         additional information.
  151.  
  152. *  Third-party trademarks are the property of their respective owners.
  153.