home *** CD-ROM | disk | FTP | other *** search
/ PC World 2004 March / PCWorld_2004-03_cd.bin / Hardware / VIAeth / PKTDRVR / packet.txt < prev   
Text File  |  2003-02-14  |  5KB  |  122 lines

  1. **
  2. **
  3. **  VIA Rhine Family Fast Ethernet Adapter                                   
  4. **
  5. **  Packet Driver for DOS Workstations
  6. **
  7. **  v4.16    Feb , 2003
  8. **
  9. **
  10.  
  11. Introduction:
  12. =============
  13.  
  14.   The Packet Driver for DOS workstations confirms to the PC/TCP version 1.09
  15.   Packet driver specification. This document shows you how to setup the driver
  16.   and how to use the enhanced functions by setting the custom keywords in
  17.   configuration file.
  18.  
  19.  
  20. Contents of the Subdirectory:
  21. =============================
  22.  
  23.     FETPKT.COM          The Packet driver for DOS workstations.
  24.     FETPKT.SYS          The Packet driver for DOS workstations.
  25.     PACKET.TXT          This file.
  26.  
  27. Installation:
  28. =============
  29.  
  30.   Before starting with the installation process, make sure that the adapter
  31.   is properly installed and configured. You can use the diagnostic program
  32.   (A:\SETUP.EXE) to make sure your connection with the network is correct.
  33.  
  34.   Installation Packet Driver:
  35.   ---------------------------------------------------------
  36.    
  37.    Install fetpkt.exe
  38.    ******************
  39.     1) Copy the Packet driver to your HardDisk, suppose you copy it to
  40.        C:\PACKET directory.
  41.        EX: copy  a:\packet\fetpkt.com  c:\packet\fetpkt.com
  42.  
  43.     2) Add the following line to C:\AUTOEXEC.BAT
  44.            C:\PACKET\FETPKT -n 0x60 
  45.  
  46.    Install fetpkt.sys
  47.    *******************
  48.     1) Copy the Packet driver to your HardDisk, suppose you copy it to
  49.        C:\PACKET directory.
  50.        EX: copy  a:\packet\FETPKT.sys  c:\packet\FETPKT.sys
  51.  
  52.     2) Add the following line to C:\CONFIG.SYS
  53.            DEVICE=C:\PACKET\FETPKT.SYS -n 0x60 
  54.  
  55. Configuration Files:
  56. ====================
  57.  
  58.     Sample of configuration file:
  59.     -----------------------------
  60.     (Suppose PACKET driver is copied to C:\PACKET directory)
  61.  
  62.     For fetpkt.exe
  63.     **************
  64.  
  65.     File Name:          C:\AUTOEXEC.BAT
  66.     ----------
  67.         C:\PACKET\FETPKT  -n  -w  0x60   
  68.  
  69.       0x60 is software vector number this driver uses.
  70.       -n means Novell packets can be transmitted across this driver
  71.       -w means Window compatible.
  72.      
  73.      
  74.        if you want to link to N-way Device and use auto mode, you can add parameter as follow:         
  75.        C:\PACKET\FETPKT -a -n0x60
  76.  
  77.        if you want to force assigning linespeed equal 100Mbs or 10Mbs,halfduplex or fullduplex,
  78.        you can add parameter as follow:
  79.        C:\PACKET\FETPKT -s100 -f -n 0x60  (speed=100Mbs fullduplex)
  80.        C:\PACKET\FETPKT -s10 -h -n 0x60   (speed=10Mbs halfduplex) 
  81.        (suggest use CONNECTIONTYPE instead of this keyword)
  82.        
  83.        if you want to force assigning pci slot number you can add parameter as follow:
  84.        
  85.        C:\PACKET\FETPKT -l10  -n 0x60  (pci slot number=10) 
  86.        
  87.        if you want to set up your connection type, you can add parameter as follow:
  88.        
  89.        C:\PACKET\FETPKT -connectiontype=autosense 0x60 (Auto mode, default value)
  90.        C:\PACKET\FETPKT -connectiontype=10baset 0x60 (speed=10Mbs, halfduplex)
  91.        C:\PACKET\FETPKT -connectiontype=10basetfd 0x60 (speed=10Mbs, fullduplex)
  92.        C:\PACKET\FETPKT -connectiontype=100basetx 0x60 (speed=100Mbs, halfduplex)
  93.        C:\PACKET\FETPKT -connectiontype=100basetxfd 0x60 (speed=100Mbs, fullduplex)
  94.       
  95.        if you want to set up your flow control ability, you can add parameter as follow:
  96.        
  97.        C:\PACKET\FETPKT -flow_control=hardware_default 0x60 (use hardware value, default)
  98.        C:\PACKET\FETPKT -flow_control=enable 0x60 (enable flow control)
  99.        C:\PACKET\FETPKT -flow_control=disable 0x60 (disable flow control)
  100.        
  101.  
  102.     For fetpkt.sys
  103.     **************
  104.    
  105.     NOTE: All parameters of fetpkt.exe are also used by the same style here!
  106.  
  107.     File Name:          C:\CONFIG.SYS
  108.     ----------
  109.         DEVICE=C:\PACKET\FETPKT.SYS  -n  -w  0x60   
  110.  
  111.       0x60 is software vector number this driver uses.
  112.       -n means Novell packets can be transmitted across this driver
  113.       -w means Window compatible.
  114.  
  115.        if you want to set up your connection type, you can add parameter as follow:
  116.        
  117.        DEVICE=C:\PACKET\FETPKT.SYS -connectiontype=autosense 0x60 (Auto mode, default value)
  118.        DEVICE=C:\PACKET\FETPKT.SYS -connectiontype=10baset 0x60 (speed=10Mbs, halfduplex)
  119.        DEVICE=C:\PACKET\FETPKT.SYS -connectiontype=10basetfd 0x60 (speed=10Mbs, fullduplex)
  120.        DEVICE=C:\PACKET\FETPKT.SYS -connectiontype=100basetx 0x60 (speed=100Mbs, halfduplex)
  121.        DEVICE=C:\PACKET\FETPKT.SYS -connectiontype=100basetxfd 0x60 (speed=100Mbs, fullduplex)
  122.