home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / protocol / nfs / 2794 < prev    next >
Encoding:
Internet Message Format  |  1992-11-19  |  2.8 KB

  1. Path: sparky!uunet!elroy.jpl.nasa.gov!news.claremont.edu!ucivax!news.service.uci.edu!unogate!mvb.saic.com!cpva!turnerj
  2. From: turnerj@cpva.saic.com
  3. Newsgroups: comp.protocols.nfs
  4. Subject: Re: Problem: PC-MFS + Kermit
  5. Message-ID: <12932.2b0b32c9@cpva.saic.com>
  6. Date: 19 Nov 92 06:23:04 PST
  7. References: <Bxu9J3.u0@access.digex.com>
  8. Organization: Science Applications Int'l Corp./San Diego
  9. Lines: 83
  10.  
  11. In article <Bxu9J3.u0@access.digex.com>, tstark@access.digex.com (Timothy M. Stark) writes:
  12. .
  13. .
  14. .
  15. >       Okay. I hold it for sending this message to this newsgroup. I decided to
  16. > add DIS_PKT9 packet driver to this NDIS system under C:\LANMAN directory. 
  17. > I edited PROTOCOL.INI by inserting instructions with starting [PKTDRV]
  18. > statement. I set intvec to 0x60 and bindings to wd8003e (MACID). I rebooted
  19. > it and it worked fine but there still is the problem with initializing NFS
  20. > drives. I saw the DIS_PKT9 welcome message normally. 
  21. >       Okay, I put Kermit 3.12 software into my other directory. I set up
  22. > tcp commands in mskermit.ini. I tried to connect any host but it complaint 
  23. > that a gateway is needed or a host is down. I checked with PC MFS's
  24. > telnet but it worked fine. Kermit does not. See more information in
  25. > info-kermit mailing list that I sent complete details to info-kermit.
  26. .
  27. .
  28. .
  29.  
  30. I have a very similar problem.  I feel like I must be missing something really
  31. basic, but when I load a shim like Doupnick's DIS_PKT9.DOS or PKTD40a.SYS and
  32. use an NDIS driver (ELNK16.DOS), I can never get a packet driver application up
  33. and running concurrently with PCNFS.  I have been able to load just the shim
  34. (sans the PCNFS drivers) and successfully launch packet driver applications.
  35.  
  36. Below are my AUTOEXEC.BAT, CONFIG.SYS, and PROTOCOL.INI files.  Any help in
  37. solving this puzzle (which has caused me many hours of frustration) would be
  38. greatly appreciated.
  39.  
  40. - James Turner
  41.  
  42. ***** AUTOEXEC.BAT *****
  43. @ECHO OFF
  44. C:\WINDOWS\SMARTDRV.EXE
  45. PROMPT $p$g
  46. c:\dos\mode com1 96,n,8,1,p
  47. c:\dos\mode lpt1=com1
  48. c:\mouse\mouse
  49. c:\dos\doskey
  50. PATH C:\WINDOWS;c:\;c:\dos;c:\utils;C:\NFS
  51. SET TEMP=C:\WINDOWS\TEMP
  52. VERIFY=OFF
  53. C:\LANMAN\NETBIND
  54. set TZ=EST5EDT
  55. SET NFSDRIVE=C
  56. SET NFSPATH=C:\NFS
  57. rem C:\NFS\PRT *
  58. rem C:\NFS\NET INIT
  59. call c:\nfs\network.bat
  60. call c:\nfs\drives.bat
  61.  
  62. ***** CONFIG.SYS *****
  63. DEVICE=C:\DOS\HIMEM.SYS
  64. FILES=50
  65. BUFFERS=30
  66. STACKS=9,256
  67. FCBS=1
  68. DEVICE=C:\LANMAN\PROTMAN.SYS
  69. DEVICE=C:\LANMAN\ELNK16.DOS
  70. DEVICE=C:\LANMAN\DIS_PKT9D.DOS
  71. DEVICE=C:\LANMAN\NFS-NDIS.SYS
  72. DEVICE=C:\NFS\PCNFS.SYS  /v /c$
  73. DEVICE=C:\NFS\SOCKDRV.SYS
  74. LASTDRIVE=H
  75. DOS=HIGH
  76.  
  77. ***** PROTOCOL.INI *****
  78. [protocol manager]
  79.       drivername = PROTMAN$
  80.  
  81. [ELNK16]
  82.       drivername = ELNK16$
  83.  
  84. [NFS-NDIS]
  85.       drivername = NFSLINK$
  86.       bindings   = ELNK16
  87.  
  88. [PKTDRV]
  89.       drivername = PKTDRV$
  90.       bindings   = ELNK16
  91.       intvec     = 0x7E
  92.  
  93.