home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / os / mswindo / setup / 2438 < prev    next >
Encoding:
Internet Message Format  |  1992-12-22  |  3.6 KB

  1. Xref: sparky comp.os.ms-windows.setup:2438 comp.os.ms-windows.misc:5682
  2. Newsgroups: comp.os.ms-windows.setup,comp.os.ms-windows.misc
  3. Path: sparky!uunet!pipex!warwick!mrccrc!mniven
  4. From: mniven@crc.ac.uk (Dr. M.J. Niven)
  5. Subject: Windows for Workgroups/Novell Netware/Packet Drivers
  6. Message-ID: <1992Dec22.130141.22540@crc.ac.uk>
  7. Followup-To: comp.os.ms-windows.setup
  8. Keywords: Windows Novell Netware Packet Protocols
  9. Sender: news@crc.ac.uk
  10. Nntp-Posting-Host: tin
  11. Organization: MRC Human Genome Resource Centre
  12. Date: Tue, 22 Dec 1992 13:01:41 GMT
  13. Lines: 99
  14.  
  15.  
  16. Thanks to all who helped with my query about Windows for Workgroups
  17. and packet drivers. As promised, a summary of the info I received.
  18.  
  19. W4W installs its own driver for the network board, called an NDIS
  20. driver. This seems to be conceptually similar to a packet driver in
  21. that it allows multiple protocols to plug into it, governed by a
  22. separate driver/program called the protocol manager.
  23.  
  24. To use packet driver programs you have to get the "packet driver shim"
  25. which plugs-in in such a way to provide the packet interface. The
  26. current version is dis_pkt9.dos, which is available from a large number
  27. of ftp sites (do an archie search to find your nearest) as dis_pkt9.zip,
  28. which also includes documentation and source. This then needs to be
  29. loaded after the NDIS driver in config.sys, and the protocol.ini file
  30. needs to be edited to include it. I've included samples of the modified
  31. files below.
  32.  
  33. Once it is all loaded you have to start it all up by running
  34. "net start" before anything else will see the drivers - I had a fair
  35. amount of frustration before I realised this.
  36.  
  37. I would add that we have been somewhat disappointed by the level of
  38. support for Novell Netware. This was obviously a commercial decision
  39. by Microsoft to provide better support for their own LAN Manager, but
  40. in view of the number of Netware users somewhat more should have been
  41. done for them.
  42.  
  43. Good luck!
  44.  
  45. Mark Niven
  46. _____________________________________________________________________
  47. The London Hospital Medical College  |    Internet M.Niven@lhmc.ac.uk
  48. Whitechapel                          |    Janet    M.Niven@uk.ac.lhmc
  49. London                               |
  50. E1 1BB                               |    Voice    + 44 71 377 7111
  51. England                              |    Fax      + 44 71 377 7636
  52. _____________________________________|_______________________________
  53.  
  54.  
  55. Sample Configuration files
  56. ==========================
  57.  
  58. CONFIG.SYS
  59. ==========
  60. rem It's useful to load high if you can
  61. rem as it uses quite a lot of RAM
  62. devicehigh=C:\Windows\protman.dos /i:C:\Windows
  63. rem directory for protocol.ini file -^^^^^^^^^^                    
  64. devicehigh=c:\Windows\dis_pkt9.dos
  65. devicehigh=C:\Windows\workgrp.sys
  66. devicehigh=C:\Windows\ne2000.dos
  67. devicehigh=C:\W4WKGP\msipx.sys
  68.  
  69. AUTOEXEC.BAT
  70. ============
  71. C:\Windows\net start
  72. rem next two lines provide support for packet driver progs
  73. rem under Windows
  74. lh winpkt 0x61 0x62
  75. lh pktint
  76. lh C:\Windows\msipx
  77. c:\Windows\netx
  78.  
  79. PROTOCOL.INI
  80. ============
  81. [network.setup]
  82. version=0x3100
  83. netcard=ms$ne2clone,1,MS$NE2CLONE
  84. transport=ms$netbeui,MS$NETBEUI
  85. transport=ms$ipx,MS$IPX
  86. lana0=ms$ne2clone,1,ms$ipx
  87. lana1=ms$ne2clone,1,ms$netbeui
  88.  
  89. [protman]
  90. DriverName=PROTMAN$
  91. PRIORITY=MS$NETBEUI
  92.  
  93. [MS$NE2CLONE]
  94. DriverName=MS2000$
  95. IOBASE=0x300
  96. INTERRUPT=10
  97.  
  98. [pktdrv]                ;||
  99. drivername=dis_pkt9$    ;|| add these lines to tell
  100. bindings=MS$ne2clone    ;|| the protocol manager about
  101. intvec=0x62             ;|| the packet driver shim
  102.  
  103. [MS$NETBEUI]
  104. DriverName=netbeui$
  105. SESSIONS=10
  106. NCBS=32
  107. BINDINGS=MS$NE2CLONE
  108. LANABASE=1
  109.  
  110. [MS$IPX]
  111. DriverName=IPX$
  112. MediaType=Ethernet_II (DIX)
  113. BINDINGS=MS$NE2CLONE
  114.