home *** CD-ROM | disk | FTP | other *** search
/ PC World 2004 March / PCWorld_2004-03_cd.bin / Hardware / VIAeth / PCNFS / PCNFS.TXT < prev    next >
Text File  |  2003-01-17  |  5KB  |  137 lines

  1. **
  2. **
  3. **  VIA Rhine Family Fast Ethernet Adapter
  4. **
  5. **  NDIS2 Driver for PCNFS
  6. **
  7. **  v4.17    Jan , 2003
  8. **
  9. **
  10.  
  11. Introduction:
  12. =============
  13.  
  14.   The Ethernet NDIS2 Driver for PCNFS confirms to the Network Driver
  15.   Interface Specification(NDIS2). This document shows you how to setup
  16.   the driver and how to use the enhanced functions by setting the custom
  17.   keywords in configuration file.
  18.  
  19.  
  20. Contents of the Subdirectory:
  21. =============================
  22.  
  23.     PCNFS.TXT           This file.
  24.     FETND.DOS           The NDIS2 driver for PCNFS.
  25.     PROTOCOL.INI        Sample protocol.ini file.
  26.  
  27.  
  28. Installation:
  29. =============
  30.  
  31.   Before starting with the installation process, make sure that the adapter
  32.   is properly installed and configured. You can use the diagnostic program
  33.   (A:\SETUP.EXE) to make sure your connection with the network is correct.
  34.  
  35.   Installation procedure for PCNFS
  36.   --------------------------------
  37.  
  38.     1) Run PCNFS install program and follow screen instructions.
  39.  
  40.     2) When the "Configure an Ethernet network connection" appears, Select
  41.        "Ethernet" and press <Enter>.
  42.  
  43.     3) Choose NE2000 network adapter and select "NDIS" and press <Enter>.
  44.  
  45.     4) Follow the screen instructions to complete the installation.
  46.  
  47.     5) Two subdirectory will be created after installation, default in C:\NFS
  48.        and C:\LANMAN.
  49.  
  50.     6) Copy A:\PCNFS\FETND.DOS to C:\NFS.
  51.  
  52.     7) Edit CONFIG.SYS to replace the line
  53.  
  54.                 DEVICE=C:\LANMAN\NE2000.DOS
  55.        with
  56.                 DEVICE=C:\LANMAN\FETND.DOS
  57.  
  58.     8) Edit PROTOCOL.INI file in C:\LANMAN directory, add the following section
  59.  
  60.        [FETND_NIF]
  61.              Drivername    = FETND$
  62.          
  63.     9) Find [NFS-NDIS] section in PROTOCOL.INI file in C:\LANMAN directory, add
  64.        the following line after "Drivername = NFSLINK$" line:
  65.  
  66.              Bindings   = FETND_NIF
  67.  
  68.    10) Restart the computer.
  69.  
  70.  
  71. Configuration Files:
  72. ====================
  73.  
  74.     Sample of configuration file:
  75.     -----------------------------
  76.  
  77.     File Name:          C:\CONFIG.SYS
  78.     ----------
  79.         DEVICE=C:\LANMAN\PROTMAN.SYS /I:C:\LANMAN
  80.         DEVICE=C:\LANMAN\FETND.DOS
  81.         DEVICE=C:\LANMAN\NFS-NDIS.SYS
  82.         DEVICE=C:\NFS\PCNFS.SYS
  83.         DEVICE=C:\NFS\SOCKDRV.SYS
  84.         DEVICE=C:\DOS\ANSI.SYS
  85.  
  86.     File Name:          C:\AUTOEXEC.BAT
  87.     ----------
  88.         C:\LANMAN\NETBIND
  89.         SET NFSDRIVE=C
  90.         SET NFSPATH=C:\NFS
  91.         PRT *
  92.         CALL C:\NFS\NETWORK
  93.         CALL C:\NFS\DRIVES
  94.         LH C:\DOS\SHARE.EXE /l:500 /f:5100
  95.         RTM
  96.  
  97.     File Name:          C:\LANMAN\PROTOCOL.INI
  98.     ----------
  99.         [protocol manager]
  100.               drivername = PROTMAN$
  101.         [FETND_NIF]
  102.               Drivername    = FETND$
  103.         [NFS-NDIS]
  104.               Drivername = NFSLINK$
  105.               Bindings   = FETND_NIF
  106.  
  107.  
  108.     Custom Keywords:
  109.     ----------------
  110.         FULLDUPLEX                      This keyword is used to enable full
  111.                                         duplex mode.
  112.                                         (suggest use CONNECTIONTYPE instead of this keyword)
  113.  
  114.         SPEED                           This keyword is used to force the
  115.                                         adapter at 10Mbps or 100Mbps speed.
  116.                                         (suggest use CONNECTIONTYPE instead of this keyword)
  117.  
  118.         AUTO                            This keyword is used to force the
  119.                                         chip at Auto-Negotiation mode.
  120.                                         (suggest use CONNECTIONTYPE instead of this keyword)
  121.  
  122.         CONNECTIONTYPE                  This keyword is used to specify duplex 
  123.                                         and speed mode. The strings are :
  124.                                         
  125.                                         AUTOSENSE
  126.                                         _10BaseT  
  127.                                         _10BaseTFD
  128.                                         _100BaseTX   
  129.                                         _100BaseTXFD 
  130.                                         
  131.         FLOW_CONTROL                    This keyword is used to specify flow contro
  132.                                         ability. The strings are :
  133.                                         
  134.                                         HARDWARE_DEFAULT (HD)
  135.                                         ENABLE
  136.                                         DISABLE
  137.