home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s038 / 5.ddi / 002.LIF / README.RDR < prev    next >
Encoding:
Text File  |  1992-07-02  |  3.8 KB  |  114 lines

  1.                         NetBIOS Driver running on DOS
  2.  
  3.                                  Version 1.0
  4.                            Dated December 20, 1990
  5.  
  6. 1.    Introduction
  7.  
  8.     A NetBIOS Driver called PCNET implements IBM's NetBIOS using iNA960
  9. Transport and Datalink Layer functions.  The NetBIOS driver is implemented as
  10. a Terminate and Stay Resident (TSR) program hooked onto NetBIOS interrupt
  11. 5Ch.
  12.  
  13.     NetBIOS applications produce Network Control Blocks (NCBs) at the
  14. software interrupt 5Ch with ES:BX pointing to NCB.  The NetBIOS driver
  15. translates NCBs into iNA960 Request Blocks and issues a software interrupt
  16. 5Bh with ES:BX pointing to iNA960 Request block.
  17.  
  18.     The iRMX Network Redirector takes over the interrupt 5Bh for sending and
  19. receiving Request Blocks between the NetBIOS driver and iNA 960 running under
  20. the control of iRMX III operating system.
  21.  
  22. 2.    PCNET Configuration with MS-NET
  23.  
  24.     MS-NET software provides a configuration file namely MSNET.INI for
  25. automatic startup of commands.  To this configuration file, two new commands
  26. have to be added to make the MSNET redirector and MSNET server to work with
  27. the NetBIOS driver.
  28.  
  29. Commands for starting MS-NET Redirector
  30.  
  31.     net start netrdr $1
  32.         pcnet
  33.         minses
  34.         redir /l:10 /s:10
  35.         setname $1
  36.  
  37. Commands for starting MS-NET Server
  38.  
  39.     net start netsrv $1
  40.         pcnet
  41.         minses
  42.         setname $1
  43.         psprint 
  44.         server /i: /s: /n:-1 /mb:-1 /f:-1 /o:-1 /c:-1 /l:-1
  45.  
  46.     After the file MS-NET is updated, every invocation of the Redirector or
  47. Server install the NetBIOS driver.
  48.  
  49. To start the MS-NET Redirector, issue the following command:
  50.     net start netrdr <nodename> <Enter> 
  51.  
  52. To start the MS-NET Server, issue the following command:
  53.     net start netsrv <nodename> <Enter>
  54.  
  55. 3.    NetBIOS Configuration Options 
  56.  
  57.     PCNET provides the following invocation options which indicate the
  58. NetBIOS configuration parameters.
  59.  
  60.     /s:<sessions>    
  61.         where sessions denotes the number of NetBIOS sessions supported.
  62.  
  63.     /c:<commands>
  64.         where commands denotes the number of NetBIOS commands that can be queued to the NetBIOS driver simultaneously.
  65.  
  66.     If PCNET is invoked with no options, the following default values are
  67. used by the driver.  The default values for these options (defined by NetBIOS
  68. Specs.) are as below:
  69.  
  70.         No.of NetBIOS Sessions = 6
  71.         No.of NetBIOS Commands = 12
  72.  
  73. The maximum values for both these options are 32.
  74.  
  75.     Note: The option letters ('s' or 'c') are case insensitive.  Typing
  76. invalid options displays a usage message.
  77.  
  78. 4.    Supported Hardware Configurations
  79.  
  80.     PC-AT with PCL2/2A 
  81.     386/PC16 on Multibus II with 186/530.
  82.     iSBC 386SX/00/02 with iSBX 586 
  83.  
  84. 5.    Supported NetBIOS Applications
  85.  
  86.     a. MS-NET File Consumer talking to DOS, iRMX, UNIX File Servers.
  87.     b. MS-NET File Server talking to DOS, UNIX File consumers.
  88.     c. Microsoft VT Consumer talking to iRMX, UNIX VT server.
  89.     d. WinTERM terminal emulator operating with UNIX and iRMX III
  90.  
  91. 6.    Programmatic Interface Installation Check
  92.  
  93.     For developing applications using NetBIOS interface provided by the
  94. driver, the applications are provided with a mechanism to detect the
  95. installation of NetBIOS driver.
  96.  
  97.     The verification of NetBIOS driver installation is obtained by issuing an
  98. INT2FH software interrupt, with a value of B951H in the AX register and 0H in
  99. the BX register.  If the NetBIOS driver is installed, the BX register will
  100. change to a value of 1H; otherwise, the value remains unchanged.
  101.  
  102. 7.    Known Bugs 
  103.  
  104.     On Multibus II and Multibus I systems, NetBIOS receive datagrams does
  105. not work.
  106.  
  107. 8.    Unsupported Features as of this version
  108.  
  109.     a.    Getting adapter status of a remote node.
  110.     b.    Canceling of datagrams in out of order than posted.
  111.     c.    Posting receive datagrams with a Name number = FFH.
  112.     d.    No asynchronous support for Adapter status and session status commands.
  113.      
  114.