home *** CD-ROM | disk | FTP | other *** search
/ ftp.tcs3.com / ftp.tcs3.com.tar / ftp.tcs3.com / DRIVERS / Network / 3COM / 3c90x / Ver2.1 / 3C90XX.exe / DISK1 / NDIS2 / OS2 / PROTOCOL.INI < prev   
Text File  |  1996-07-17  |  3KB  |  59 lines

  1.     DriverName = "EL90X$"
  2. ;
  3. ; below are examples and explanations of some of the keywords supported by
  4. ; the 3C90X NDIS 2.01 driver.  most of the lines are simply comments.  the
  5. ; marked with "-->" are lines that can be edited (removing the ";-->" and
  6. ; lines replacing it with spaces, and modifying the right hand side as
  7. ; appropriate.
  8. ;
  9. ; MAXTRANSMITS=n, n=6..50, specifies the number of transmits which can be
  10. ; queued up by the driver when the TxFIFO is full or the adapter is otherwise
  11. ; busy.  When we run out of queue entries, an OUT_OF_RESOURCES error will be
  12. ; returned to the protocol on a transmit attempt.  Most protocols will handle
  13. ; running out of resources will little performance degradation.  However,
  14. ; some implementations will drop packets and consequently lower performance
  15. ; if OUT_OF_RESOURCES is returned too often.  The default value is 6, which
  16. ; should be sufficient for most cases, and is adequate for window sizes up to
  17. ; about 6 or so.  On a heavily loaded server with a lot of active connections,
  18. ; you may want to increase this number since with large windows on multiple
  19. ; active connections you may need a bigger transmit queue to handle them all.
  20. ; Each queue entry takes about 128 bytes of memory, so increasing this number
  21. ; will increase the resident size of the driver.
  22. ;
  23. MAXTRANSMITS=40
  24. ;
  25. ; NETADDRESS allows the user to configure the network address of the adapter,
  26. ; rather than using the one in EEProm.    If not specified the address on the
  27. ; adapter will be used.  If specified, the right hand side must be exactly
  28. ; 12 hex ASCII characters which will be converted to the network address.
  29. ; The only restrictions we impose is that the address not have the multicast
  30. ; bit set (an odd number in the second digit) and the network address have
  31. ; bit one of the most significant byte of the address set.  This bit
  32. ; signifies a locally administered address.
  33. ;
  34. ;-->NETADDRESS="02608C123456"
  35. ;
  36. ;
  37. ; SLOT=n, n=0..31 specifies the specific slot number to look for a 3C90X
  38. ; adapter.  In the absence of this keyword the driver will search all slots
  39. ; for a 3c90x adapter, so it isn't required unless there are multiple 3C90X
  40. ; adapters in the computer.  For PCI the "SLOT=n" parameter is actually a
  41. ; device number.  Usually device 0 is on the motherboard, and the "slots"
  42. ; start around 8 or so, but this varies from computer to computer.  The best
  43. ; way to determine what number to use is to look at the slot number displayed
  44. ; by the 3C90XCFG.EXE program for a given adapter.  Note: if BUSNO is not
  45. ; specified, but SLOT is, we will search the specified SLOT on all PCI busses
  46. ; (0..7) in turn.
  47. ;
  48. ;-->SLOT=8
  49. ;
  50. ; BUSNO=n, n=0..7 specifies the PCI bus number to search for the 3C90X
  51. ; adapter.  In most computers today there is only a single PCI bus, number 0.
  52. ; However, the PCI architecture allow for multiple PCI busses.    If this
  53. ; keyword isn't specified, the driver will search all busses for a
  54. ; 3C90X adapter, so this keyword isn't required unless there are multiple
  55. ; 3C90X adapters in the computer.
  56. ;
  57. ;-->BUSNO=0
  58.  
  59.