home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / os / mswindo / misc / 6442 < prev    next >
Encoding:
Text File  |  1993-01-21  |  2.9 KB  |  64 lines

  1. Newsgroups: comp.os.ms-windows.misc
  2. Path: sparky!uunet!gatech!usenet.ins.cwru.edu!agate!boulder!ucsu!spot.Colorado.EDU!ushomirs
  3. From: ushomirs@spot.Colorado.EDU (USHOMIRSKIY GRIGORIY)
  4. Subject: Re: Win for Workgroups and WinQV/Net
  5. Message-ID: <ushomirs.727655944@spot.Colorado.EDU>
  6. Keywords: windows network WinQVT/Net
  7. Sender: news@ucsu.Colorado.EDU (USENET News System)
  8. Nntp-Posting-Host: spot.colorado.edu
  9. Organization: University of Colorado, Boulder
  10. References: <jkramer.727636944@worms.cmsbio.nwu.edu> <C17vqx.2ro@news.iastate.edu>
  11. Date: Thu, 21 Jan 1993 22:39:04 GMT
  12. Lines: 50
  13.  
  14. rjhoffma@iastate.edu (R. J. Hoffmann) writes:
  15.  
  16. >--
  17.  
  18. >In article <jkramer.727636944@worms.cmsbio.nwu.edu> jkramer@.cmsbio.nwu.edu (James M. Kramer) writes:
  19. >>I would like to run both Windows for Workgroups and WinQVT/Net together.  >Either one runs fine alone, but WFW doesn't work when the Ethenet 3c503 >driver and pktint are loaded.  Can anyone tell if and how to get them to >coexist.  Thanks.
  20.  
  21. >I can't promise this is the answer, since I haven't run Windows for Workgroups, but have you tried pktmux, the packet multiplexer?  If Windows has control of your ethernet driver, I doubt WinQVT/Net could get access (or vice versa).
  22.  
  23. >Dick Hoffmann
  24.  
  25. Nope, pktmux won't work.  The reason is the following: 
  26. pktmux runs *on top* of the packet driver (PD) and makes it look like several
  27. PD's are loaded and correspond to several net cards. WfWg uses an
  28. NDIS driver which *will severely conflict* with a PD.  The reason is simple: 
  29. philosophy of both NDIS and PD's is that instead of grabbing the net card and
  30. writing to it directly a network program has to ask a driver to pass a packet
  31. through the card.  This way if there is only one program (NDIS or PD) that
  32. owns the card and accepts requests from other programs to pass stuff to the 
  33. net all conflicts are eliminated.  Thus if you load an NDIS driver (for WfWg)
  34. and a PD for Qvt/Net they will fight for the network card untill your system
  35. locks up.
  36.  
  37. What you've got to do (I have actually done it and am running Qvt/NET 
  38. as well as an X-Window server under WfWg without any problems) is the
  39. following. Find the dis_pkt.gup program that converts NDIS to PD (it should 
  40. be on cica in Novell directory -- I don't remember the path).  In your 
  41. config.sys file you should have the following lines:
  42.  
  43. device=protoman.dos    These 3 are installed by WfWg.  
  44. device=workgrp.sys
  45. device=smcmac.dos    You might have a different net driver here.
  46.  
  47. Add device=dis_pkt.gup after the above lines.  Also add the following section
  48. to protocol.ini file (it's either in c:\ or in your windows dir.):
  49.  
  50. [PKTDRV]
  51. DriverName=PKTDRV$
  52. Bindings=MS$W13EW
  53. Intvec=0x6d
  54. Chainvec=0x6e
  55.  
  56. The name in the Bindings line should be same as from the corresponding line from
  57. MS$NETBEUI section.
  58.  
  59. Once you've made these changes and rebooted you should be able to load pktint
  60. and run QVT/NET inside WfWg.  It coexists with NEtware as well,BTW.
  61.  
  62. Greg
  63.  
  64.