home *** CD-ROM | disk | FTP | other *** search
/ PC World 2004 March / PCWorld_2004-03_cd.bin / Hardware / VIAeth / NETWARE / SRVRODI.311 / Nw311.txt < prev    next >
Text File  |  2003-02-12  |  6KB  |  146 lines

  1. **
  2. **
  3. **                                                                           
  4. **  VIA Rhine Family Fast Ethernet Adapter
  5. **                                                                           
  6. **  ODI Driver for NetWare 3.11 Servers           
  7. **                                                                           
  8. **  v4.16    Feb. 2003
  9. **
  10. **
  11.  
  12. Introduction:
  13. =============
  14.  
  15.   The Fast Ethernet 10M/100M ODI Driver for NetWare 3.11 Servers confirms to the
  16.   Novell Open Data-Link Interface (ODI) specification. This document shows you
  17.   how to setup the driver and how to use the enhanced functions by setting the
  18.   custom keywords.
  19.  
  20.  
  21. Contents of the Subdirectory:
  22. =============================
  23.  
  24.     NW311.TXT           This file.
  25.     FETNWSA.LAN         The ODI driver for NetWare 3.11 Server.
  26.     ETHERTSM.NLM        Patch file for Netware 3.11 Server.
  27.     LSLENH.NLM          Patch file for Netware 3.11 Server.
  28.     MONITOR.NLM         Patch file for Netware 3.11 Server.
  29.     MSM31X.NLM          Patch file for Netware 3.11 Server.
  30.     PATCHMAN.NLM        Patch file for Netware 3.11 Server.
  31.  
  32. Installation:
  33. =============
  34.  
  35.   Before starting with the installation process, make sure that the adapter
  36.   is properly installed and configured. You can use the diagnostic program
  37.   (A:\SETUP.EXE) in DOS mode to make sure your connection with the network is
  38.   correct.
  39.  
  40.   Using Server Install utility:
  41.   -----------------------------
  42.     1) On the server console, execute the INSTALL.NLM program:
  43.  
  44.                 LOAD INSTALL <Enter>
  45.  
  46.     2) Choose "Driver Option/System Options".
  47.  
  48.     3) You can add the LOAD and BIND command lines to the AUTOEXEC.NCF file so
  49.        that the LAN driver will be loaded automatically while the server
  50.        is starting up. You should load LSLENH.NLM first before you load driver.
  51.  
  52.  
  53.   Loading Driver Manually:
  54.   ------------------------
  55.     1) On the server console, load LSLENH.NLM first, for example:
  56.  
  57.           LOAD A:\NETWARE\NWSERVER.311\LSLENH
  58.  
  59.     2) On the server console, load the driver directly, for example:
  60.  
  61.           LOAD A:\NETWARE\NWSERVER.311\FETNWSA.LAN FRAME=Ethernet_802.2 name=tt
  62.  
  63.     3) Bind with IPX:
  64.  
  65.           BIND IPX tt
  66.  
  67.     4) You can login the server from a workstation, and then copy FETNWSA.LAN to
  68.        the directory SYS:\SYSTEM on server. Add the LOAD and BIND command lines
  69.        to AUTOEXEC.NCF file so that the lan driver will be loaded automatically
  70.        while the server starting up next time.
  71.  
  72.  
  73.   NOTE:
  74.   -----
  75.     1) Multiple Lan Adapters in a system:
  76.         If you want to install mutiple lan adapters in a server, you have to use
  77.         the keyword, SLOT, to let driver locate the right adapter.
  78.         For example:
  79.  
  80.         LOAD FETNWSA.LAN SLOT=10 FRAME=Ethernet_802.2 NAME=Lan_1
  81.         BIND IPX TO Lan_1 NET=2001
  82.         LOAD FETNWSA.LAN SLOT=11 FRAME=Ethernet_802.2 NAME=Lan_2
  83.         BIND IPX TO Lan_2 NET=2002
  84.  
  85.     2) Tagging ability :
  86.         If keyword "TAG" is supported, the transmited packets
  87.         will be tagged packets. It's only supportted by management adapter.
  88.         
  89.     3) VLAN support :
  90.         For now, we only support one VID value setting. It's only supportted by 
  91.         management adapter.
  92.         
  93.     4) The original keywords "FULLDUPLE", "HALFDUPLE", "SPEED" and "AUTO" are still
  94.        supported.
  95.         
  96.         
  97. Configuration Parameters:
  98. =========================
  99.  
  100.     Custom Keywords:
  101.     ----------------
  102.     
  103.         FULLDUPLEX                      This keyword is used to force full
  104.                                         duplex mode.
  105.                                         (suggest use CONNECTIONTYPE instead of this keyword)
  106.  
  107.         HALFDUPLEX                      This keyword is used to force half
  108.                                         duplex mode.
  109.                                         (suggest use CONNECTIONTYPE instead of this keyword)
  110.  
  111.         SPEED                           This keyword is used to force Line
  112.                                         Speed at 10 or 100 Mbps.
  113.                                         (suggest use CONNECTIONTYPE instead of this keyword)
  114.  
  115.         AUTO                            This keyword is used to force the
  116.                                         chip at Auto-Negotiation mode.
  117.                                         (suggest use CONNECTIONTYPE instead of this keyword)
  118.  
  119.         CONNECTIONTYPE                  This keyword is used to specify media type.
  120.         
  121.             CONNECTIONTYPE=AutoSense
  122.             CONNECTIONTYPE=10BASET
  123.             CONNECTIONTYPE=10BASETFD
  124.             CONNECTIONTYPE=100BASETX
  125.             CONNECTIONTYPE=100BASETXFD
  126.             
  127.         FLOW_CONTROL                    This keyword is used to specify flow control
  128.                                         ability.
  129.             FLOW_CONTROL=DISABLE
  130.             FLOW_CONTROL=ENABLE
  131.             FLOW_CONTROL=HARDWARE_DEFAULT   (default)
  132.             
  133.         TAG                             This keyword is used to enable TX tagging.
  134.                                         It's combined with VID keyword for transmitting
  135.                                         tagged packet. Only be supported by management 
  136.                                         adapter.
  137.             TAG=ENABLE
  138.             TAG=DISABLE                 (default)
  139.             
  140.         VID                             This keyword is used to support VLAN's VID.
  141.                                         It's only worked when TAG keyword is enabled.
  142.                                         Only be supported by management adapter.
  143.         
  144.             VID=1~4094
  145.  
  146.