home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / ncsatlnt / packets.inf < prev    next >
Text File  |  1994-03-07  |  2KB  |  55 lines

  1.  
  2.           Supplemental User documentation for the packet driver collection
  3.                                    Heeren Pathak
  4.                   National Center for Supercomputing Applications 
  5.                                  Champaign, IL 61820
  6.                        pathak@ncsa.uiuc.edu 
  7.  
  8.  
  9. Here at NCSA, we have had a lot of questions on how to correctly install
  10. packet drivers.  Most of the questions occur because people have failed
  11. to recognize that the PACKET DRIVERS PARAMETERS ARE ASSUMED TO BE IN DECIMAL.
  12. Below is an example on installing the 3C501 packet driver.  The other drivers
  13. are installed in a similar fashion.
  14.  
  15. The packet driver usage for the 3C501 is:
  16.     3C501 <packet_int_no> <int_no> <io_addr>
  17.  
  18. I want to install the packet driver at software interrupt 60h (hex).
  19. The relationship between the settings and packet driver parameters is:
  20.  
  21. Setting                           |               Parameter 
  22. ----------------------------------+------------------------------------
  23. HARDWARE INTERRUPT=3h (hex)       |               <int_no>
  24. BASE IO ADDRESS=360h (hex)        |               <io_addr>
  25. SHARED MEMORY ADDRESS=d800h (hex) |               <base_addr>
  26. SOFTWARE INTERRUPT 60h (hex)      |               <packet_int_no> 
  27.  
  28.  
  29. Note the Ethernet card uses a hardware interrupt while the packet driver
  30. uses a software interrupt.
  31.  
  32. The 3C501 packet drivers needs the software interrupt, hardware interrupt, 
  33. and base io address.  It does NOT need the shared memory address.  Also note 
  34. that each of the parameters are hex numbers, not decimal numbers.  If 
  35. decimal numbers are going to be used the hex numbers need to be converted
  36. to decimal.  
  37.  
  38. To install the driver with the above settings, the following is entered 
  39. at the DOS command line:
  40.  
  41. 3C501 0x60 0x3 0x360
  42.  
  43. Note the "0x" in front of each parameter signifies a hex number.  
  44. To use decimal numbers, the following would have been entered:
  45.  
  46. 3C501 96 3 864
  47.  
  48. The hex numbers were converted to decimal and then used.
  49.  
  50.  
  51. This document is only a supplement to "drivers.doc".  For the parameters 
  52. required by each packet driver, refer to "drivers.doc" file.
  53.  
  54.  
  55.