home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / NFS_FAQ.ZIP / PCNFSFAQ.2 < prev    next >
Encoding:
Internet Message Format  |  1993-09-16  |  39.9 KB

  1. Path: nlbbs!jaxsat!pagesat!netsys!agate!howland.reston.ans.ne
  2. !europa.eng.gtefsd.com!uunet!organpipe.uug.arizona.edu!news
  3. From: rawn@lead.aichem.arizona.edu (Rawn Shah)
  4. Newsgroups: comp.answers,news.answers
  5. Subject: (PC)NFS & related topics FAQ [part 02/06]
  6. Summary: This is the FAQ list about PC & Macintosh based NFS & TCP/IPproduct
  7.  for readers of comp.protocols.nfs &comp.protocols.tcp-ip.ibmpc
  8. Message-ID: <278263$rgi@organpipe.uug.arizona.edu>
  9. Date: 15 Sep 1993 21:41:23 GMT
  10. Reply-To: rawn@rtd.com (Rawn Shah)
  11. Followup-To: poster
  12. Organization: University of Arizona UNIX Users Group
  13. Lines: 951
  14. Approved: news-answers-request@MIT.EDU
  15. NNTP-Posting-Host: lead.aichem.arizona.edu
  16.  
  17. Archive-name: pcnfs-faq/part2
  18. Last-modified: 1993/09/06
  19. Version: 1.4
  20.  
  21.  
  22.  
  23. C-4.  How can I test NFS performance?
  24.  
  25. The following information does not contain information on LADDIS which is a
  26. newer test suite for NFS systems. Please look at C-10 for information on
  27. LADDIS. 
  28.  
  29. The following is a post from the archives from a while back which answers
  30. this directly:
  31.  
  32.    As it turns out, there's a surprising amount of software floating around
  33. that looks at NFS.  Such software includes:
  34.  
  35.         nfswatch -- curses-based promiscuous NFS monitor.  This program
  36.                 prints out a running tally of how many of each type of
  37.                 request comes in, and of which file systems are the most
  38.                 heavily used.  Nfswatch can be used to look at traffic to
  39.                 individual files, too.  This is anonymously FTPable from
  40.                 icarus.riacs.edu.
  41.  
  42.         server_stat -- a NFS monitor program that runs on Encore Multimaxes.
  43.                 This shows information on hosts, users, and NFS request
  44.                 types performed.  This is capable of talking to a
  45.                 rpc.srvstatd process on another machine, though I don't know
  46.                 of other machines that support the Encore srvstatd program.
  47.  
  48.         nfsstone -- the Encore NFS benchmark, as presented in:
  49.  
  50.                 Shein, B., Callahan, M., Woodbury, P., NFSSTONE: A Network
  51.                 File Server Performance Benchmark, Usenix Summer 1989
  52.                 conference proceedings, pp 269-275.
  53.  
  54.                 This is a synthetic benchmark load, with an empirically-
  55.                 determined mix of operations.
  56.  
  57.         nhfsstone -- the Legato NFS benchmark.  This is also a synthetic
  58.                 load generator, based again on a particular observed
  59.                 load mix.  You can get this by sending mail like:
  60.  
  61.                         To: request@legato.com
  62.                         Subject: send nhfsstone
  63.  
  64.                         path path_back_to_me
  65.  
  66.                 I had some problems getting this, though I was ultimately
  67.                 successful.
  68.  
  69.         NetMetrix (formerly EtherView) -- 
  70.                 a Sun-based packet spy that is capable of doing some
  71.                 characterization of NFS load and response times.  This is
  72.                 a commercial product.  For more information, contact:
  73.  
  74.                         Hewlett Packard, Network Test Division
  75.                         One Tara Blvd., Suite 403, Nashua NH 03062
  76.                         (603) 888-7000
  77.                         
  78.         LANWatch -- another packet spy, from FTP Software, Inc.  This can
  79.                 filter out NFS traffic; I don't know what can be done with
  80.                 the packets though once they're filtered out.  For more
  81.                 information, call FTP at (800) 282-4FTP, or send mail to
  82.                 info@ftp.com.
  83.  
  84.         [ There's lots of other packet spies, too, and I suspect that most
  85.         of them can do at least a little bit with NFS packets. ]
  86.  
  87.    The problem with most of the programs above (except for the synthetic
  88. loads, to which this just doesn't apply, since they're not NFS monitors) is
  89. that you don't get raw data points which you can then analyze.  You get the
  90. data that the authors thought you might want...  and which might not be what
  91. you really want.  There's much to be said for the approach of dumping traces
  92. and lots of timestamps into a file, then providing (a) programs that analyze
  93. such files, and (b) the format of the files, so that people can write their
  94. own analysis programs.  On a PC-based packet spy, this is a hard thing to
  95. do.
  96.  
  97.    There's a fair number of people (at the major NFS server vendors, Sun,
  98. DEC, and a few universities) who are also poking around at the problem.
  99. Some people are looking at filesystem activity tracers, which (in addition
  100. to being interesting research on its own) could provide still more reams of
  101. interesting statistics when combined with a NFS tracer.
  102.  
  103.    The consensus was that the best way to trace NFS operations is to do so
  104. via a promiscuous packet spy.  Such an approach has many advantages.  First,
  105. if you don't have kernel sources, you can still get useful information.
  106. Second, because you don't instrument the server kernel, you don't have to
  107. worry about influencing the experiment in adverse ways.  However, there's
  108. some chance (depending on your hardware and on how fast you make your
  109. software go) that you'll drop packets.  The 'hack the server kernel'
  110. approach won't drop any requests, but violates the above constraints.  I
  111. suspect that the best way to gather statistics is by using *both* methods of
  112. measurement, then comparing the results.
  113.  
  114.    I was also referred (twice) to the SunOS 4.1 NFS implementation, and in
  115. particular the adaptive NFS retransmission code therein.  These numbers might
  116. be interesting to see, once 4.1 is more easily available.
  117.  
  118.    Of course, the usual Unix file access pattern (i.e., lots of short-lived
  119. files in /tmp, most of which get written, then read once, then deleted)
  120. information applies.  This was mentioned by several people; one reference
  121. given was:
  122.  
  123.         Floyd, Rick, Short-Term File Reference Patterns in a UNIX Environment,
  124.             University of Rochester Department of Computer Science TR 177,
  125.             March 1986.
  126.  
  127.    Another good paper (with not much data on NFS, though) is:
  128.  
  129.         Lazowska et al, "File Access Performance of Diskless Workstations",
  130.             ACM TOCS, volume 4, number 3, August 1986, pp 238-268.
  131.         
  132.    Not a whole lot was said about general models of NFS access.  Most places
  133. that had any models had derived them from some number of studies and from
  134. the output of nfsstat, or so it seemed.  It does seem that there's a few
  135. general trends, however.  There are some sites (including ours, I suspect)
  136. that fall into the low-utilization, few write model, where the server rarely
  137. satisfies more than one client's NFS requests in some given time slot.
  138. There's also the high-utilization, many write model, which is what I'm sure
  139. a lot of sites see.  One responder said that once one's clients have enough
  140. memory, the buffer cache ends up reducing the number of random reads going
  141. on, so one is left with the reads that happen to start up a new process, and
  142. with writes.
  143.  
  144.    Those who talked about models generally said that they think there's
  145. almost as many models as there are networks using NFS.  I suspect that this
  146. is true, but that perhaps some useful information (or at least methods) can
  147. be abstracted out, regardless.
  148.  
  149.    A number of people also suggested that I talk to Legato and to Auspex and
  150. see what they've done in this area.  I have a couple of papers from Auspex;
  151. at a first glance, I don't think they look too closely at NFS load
  152. characterization (at least, not as I define that), but instead concentrate
  153. on what Auspex did to get better speed out of their NFS file server.  The
  154. Auspex paper titled, "Benchmark Methodology and Preliminary Performance
  155. Specifications for the Auspex NS5000 Network Server" (Bruce Nelson, Auspex
  156. TR #2, October 1989) has more load characterization information than do the
  157. other Auspex TRs I have, but it still doesn't have a whole lot.  (By the
  158. way, I'm not implying that Auspex hasn't looked at load characterization,
  159. because they obviously have.  I just don't have the fine details of their
  160. results.)  I also did some talking with people at Legato; their comments and
  161. models show up in the nhfsstone benchmark, or are otherwise repeated above.
  162.  
  163.         -Steve
  164.  
  165. Spoken: Steve Miller    Domain: steve@umiacs.umd.edu    UUCP: uunet!mimsy!stev
  166. Phone: +1-301-454-1808  USPS: UMIACS, Univ. of Maryland, College Park, MD 2074
  167.  
  168. -----------------------------------------------------------------------------
  169.  
  170. C-5.  What is NHFSSTONES? Where can I get it?
  171.  
  172. "Nhfsstone" (pronounced n-f-s-stone, the "h" is silent) is a
  173. copyrighted product of Legato Systems, Incorporated and is provided for
  174. unrestricted use and distribution of the binary program derived from
  175. it.
  176.  
  177. nhfsstone is a NFS load generating program.  It is used on an NFS client
  178. to generate an artificial load with a particular mix of NFS operations.
  179. It reports the average response time of the server in milliseconds per
  180. call and the load in calls per second.  The program adjusts its calling
  181. patterns based on the client's kernel NFS statistics and the elapsed
  182. time.  Load can be generated over a given time or number of NFS calls.
  183. The current version of the program can only be compiled on 4.x BSD
  184. based UNIX systems.
  185.  
  186. To obtain the nhfsstone source shar file, send email to
  187. "request@Legato.COM" or {sun,uunet}!legato!request.  The Subject line
  188. and/or body of the message should have contain the command line:
  189.  
  190.         send unsupported nhfsstone
  191.  
  192. Note the exact spelling of "nhfsstone".  To issue delivery, you should
  193. also add a line of the form:
  194.  
  195.         path <address>
  196.  
  197. where <address> is the preferred email address to use.  Generally,
  198. using a domain-style email address works best.  A uucp path starting
  199. with "sun!" or "uunet!" can also be used.
  200.  
  201.  
  202. Joseph Moran
  203. Legato Systems Inc.
  204. 260 Sheridan Avenue
  205. Palo Alto, CA  94306
  206. (415) 329-7886
  207. mojo@Legato.COM or {sun,uunet}!legato!mojo
  208.  
  209. ------------------------------------------------------------------------------
  210.  
  211. C-7.  How many nfsd's & biod's should I run on my server?
  212.  
  213. Default number of nfsd's & biod's is 8
  214.  
  215. Suggested Equation for nfsd's is:
  216.         [number of disks exported] + [number of network interfaces]
  217.  
  218. Suggested maximum number of nfsd's runinng on a Sun system (SunOS 4.x) withou
  219.  any
  220. accelerators is 22. Any more does not help in performance.
  221.  
  222. ------------------------------------------------------------------------------
  223.  
  224. C-8.  What is asynchronous I/O? How can I modify my NFS server system to use
  225.       asynchronous I/O?
  226.  
  227. Asynchronous I/O (ASYNC) means that information comes and leaves at unannounce
  228. intervals whereas synchronous I/O (SYNC) has a predetermined interval when
  229. I/O can actually pass.
  230.  
  231. NFS has been used both through SYNC and ASYNC communications. The original
  232. specification stated that SYNC I/O should be used although did not bind to
  233. it. This results in slower communications during transfers. ASYNC creates
  234. problems in that, if for some reason communications should fail (eg., your
  235. NFS server crashes), there may be inconsistency in the data. The bright side
  236. of ASYNC is that performance increases by a great deal.
  237.  
  238. Many implementations of NFS using asynchronous I/O are available. Despite
  239. the disadvantage, the number of complaints about data loss due to this are
  240. far fewer than the reports of performance increase. However, be warned that
  241. asynchronous I/O is a direct violation of the NFS specification from X/Open
  242. which states that all procedures of the NFS protocol are synchronous. This
  243. makes such a server no longer compliant to X/Open
  244.  
  245. ------------------------------------------------------------------------------
  246.  
  247. C-9.  What is a good NFS server?
  248.  
  249. Network Appliances Corp have recently come out with a product which they
  250. call an NFS appliance, the FAServer. It is a 486 based system with an EISA
  251. bus, 16 MB RAM, 2 MB NVRAM, and a RAID subsystem. The RAID subsystem keeps
  252. up to 20 logical copies of the entire file system. They have a proprietory
  253. operating system which does only simple management and disk serving. 
  254. The pricing is about $20,000.
  255.  
  256. ------------------------------------------------------------------------------
  257.  
  258. C-10.  What is LADDIS?
  259.  
  260. LADDIS is multi-vendor and vendor neutral SPEC NFS Benchmack designed by
  261. engineers from Leato, Auspex, Data General, DEC, Interphase and Sun [LADDIS
  262. is an abbreviation using their first letters]. This covers local Ethernet or
  263. FDDI nets and not WAN.
  264.  
  265. An excerpt from the LADDIS abstract:
  266. "
  267.         The purpose of the LADDIS benchmark is to give users a credible and
  268.         undisputed test of NFS performance, and to give vendors a publishable
  269.         standard performance measure that customers can use for load planning,
  270.         system configuration, and equipment buying decisions. Toward this end,
  271.         the LADDIS benchmark is being adopted by SPEC (the System Performance
  272.         Evaluation Cooperative, creators of SPECmarks) as the first member of
  273.         SPEC's System-level File Server (SFS) benchmark suite."
  274. "
  275.  
  276. LADDIS is available directly from SPEC. Here is the contact person:
  277.  
  278.         Name:   Dianne Dean (SPEC contact person at NCGA)
  279.         Phone:  703-698-9600 Ext 318
  280.         Fax:    703-560-2752
  281.         Email:  spec-ncga@cup.portal.com
  282.         Mail:   SPEC
  283.                 c/o NCGA
  284.                 2722 Merrilee Drive, Suite 200
  285.                 Fairfax, VA 22031-4499
  286.  
  287.  
  288. There is about a $1000 charge for the distribution tape.
  289.  
  290. ------------------------------------------------------------------------------
  291.  
  292. C-11.  What is XRemote & LBX?
  293.  
  294. These are specifications for running the X11 windows system over lower
  295. bandwidth connections like serial lines.
  296.  
  297. XRemote is a private specification developed by NCD. Inc. It is available in
  298. commercial packages.
  299. LBX (Low-Bandwidth X) is the specification also contributed by NCD to the
  300. X11 standard forthcoming next year, ie. X11R6. You can get information on
  301. LBX via FTP from:
  302.         export.lcs.mit.edu:/contrib/LBX-xconf93-paper.ps.Z
  303.  
  304. This is not a formal document only an informative disclosure.
  305.  
  306. Running a low bandwidth X protocol over something like Ethernet would not be
  307. useful since the compression algorithms involved would incur additional CPU
  308. usage and so you would not get much of a performance advantage at all.
  309.  
  310. ------------------------------------------------------------------------------
  311.  
  312. Section D: Applications
  313. =======================
  314.  
  315. ------------------------------------------------------------------------------
  316.  
  317. D-1.  Where can I get mail with (PC)NFS?
  318.  
  319. POPmail versions 2 and 3 and SMTP are the most common mail protocols for 
  320. (PC)NFS and TCP/IP systems for PCs. Please look at the chart G-3 for mail 
  321. systems.
  322.  
  323. Here are some additional third-party mail packages that work with PC-NFS:
  324.         a. Open Systems Mail by Pinesoft (US) [pinesoft@netcom.com]
  325.  
  326.         b. Mail-It by Unipalm (UK) [tomk@unipalm.co.uk]
  327.                    Tom Kermeen
  328.                    Unipalm Ltd
  329.                    216 Cambridge Science Park
  330.                    Milton Road
  331.                    Cambridge CB4 4WA
  332.                    UK
  333.                    +44 223 420002
  334.                    +44 223 426868 [FAX]
  335.                 [Site license is available for L5000 (five-thousand pounds)]
  336.  
  337.                 Distributed in the US by:
  338.                    Unipress Software
  339.                    2025 Lincoln Highway, 
  340.                    Edison, NJ 08817
  341.                    USA
  342.                    (800) 222-0550
  343.                    info@unipress.com
  344.  
  345.         c. WinELM was written by Peter Churchyard of Imperial College,
  346.            London. It is available for winsock systems from the ftp site
  347.                    ftp.york.ac.uk:/pub/pc-nfs/Mail/winelm.zip
  348.                    lister.cc.ic.ac.uk:/pub/winelm
  349.            There are also DOS, PC-NFS and WinSock API versions there.
  350.  
  351.         d. ECSMail is a commercial package which supports IMAP & MIME
  352.            contact steve@edm.isac.ca. I also supports Macintosh & Unix
  353.            You can get a demo version of ECSMail from
  354.                 ftp.york.ac.uk:/pub/pc-nfs/Mail/ecs.zip
  355.            [The demo requires an IMAP daemon such as in the Pine mailer]
  356.  
  357.         e. Cin'etic Mail Manager works directly with mounted file systems
  358.            and sends mail via different setups like rsh on PC-NFS. Its
  359.            publicaly availble via ftp (cmm21f.zip). You can also contact
  360.            them at:
  361.                 Cinetic@speedy.cam.org 
  362.                 71460,666 (Compuserve)
  363.            This package currently supports PathWay, PC/TCP, PC-NFS, FSUUCP
  364.            by Fubar Systems, UUPC/extended by Drew Derbyshire. Its
  365.            configuarble for other systems as well. 
  366.  
  367. In addition, for mail arrival notifiers, there is WinBiff (version 1.6)
  368. for MS-Windows 3.x that works with PC-NFS, UUPC, Waffle and FSUUCP. This is 
  369. available from:
  370.         ftp.cica.indiana.edu: /pub/pc/win3/mirrors/wnbff16.zip
  371.         wsmr-simtel20.army.mil: PD1:<MSDOS.WINDOWS> WNBFF16.ZIP
  372.  
  373. ------------------------------------------------------------------------------
  374.  
  375. D-2.  Where can I get a news client for (PC)NFS?
  376.  
  377. USENET News (NNTP) clients are available specifically from:
  378.    Super-TCP [Z-16] - Windows version
  379.    WinQVT    [Z-22] - Windows version
  380.    Chameleon [Z-3]  - DOS version.
  381.  
  382. There is a public domain program called WinVN which uses the Winsock API. 
  383. This means that just about any product which has the Winsock.dll should be
  384. able to run it. It is available from:
  385.     sunsite.unc.edu:/pub/micro/pc-stuff/ms-windows/winsock/apps/winvn.zip
  386.  
  387. Trump and WinTrump are other popular packages for news available from
  388.         sunsite.unc.edu:/pub/micro/pc-stuff/ms-windows/winsock/apps/*
  389.  
  390. A simple news client by Stan Barber and a client by Kjettil Otter Olsen
  391. (with source code) are avalable from
  392.     ftp.york.ac.uk:/pub/pc-nfs/news
  393.  
  394. WinVN is a newsreader for Windows 3.x systems publically available from:
  395.         titan.ksc.nasa.gov: [anonymous.pub.win3.winvn]  Its a VAX host
  396.  
  397. Macintosh newsreaders include:
  398.         TheNews
  399.         Newsreader
  400.         MacNews
  401.         Nuntius
  402. All are available from:
  403.         mac.archive.umich.edu:/mac/util/comm/*
  404.  
  405. ------------------------------------------------------------------------------
  406.  
  407. D-3.  Where can I get an FTP server for (PC)NFS?
  408.  
  409. The following systems have FTP servers:
  410.  
  411. BW-TCP, PC-NFS, PC/TCP, Chameleon, PathWay, Super-TCP, IBM TCP/IP, Lanera TCP
  412.  
  413. ------------------------------------------------------------------------------
  414.  
  415. D-4   Where can I get RWALL for my (PC)NFS system?
  416.  
  417. As far as memory serves me there currently are no implementations of the
  418. rwall command as in Sun ONC on (PC)NFS systems, except possibly one for
  419. the Macintosh NFS/Share product from Intercon.
  420.  
  421. Sorry folks. If anyone has information on this one please mail me, there are
  422. people who want to know.
  423.  
  424. Here is what Geoff Arnold had to say about it back in 1989:
  425. "
  426. One of the questions I am often asked about PC-NFS is "how come
  427. there's no way for me to find out when a particular file server
  428. is going down? Unix users get notified." I point out that (at least
  429. on SunOS) the mechanism used is "rwall", which is an RPC service, and that
  430. for size reasons we can't afford to embed a version of rpc.rwalld in 
  431. PC-NFS. This explanation is reasonable, but unsatisfactory. 
  432.  
  433. My reaction was to say "let's ask the NIC for a UDP port so that
  434. we can use it to send unsolicited messages to PCs running PC-NFS."
  435. That would certainly do the trick. However, a moment's thought
  436. reveals that the problem is bigger than just PC-NFS. Surprisingly,
  437. there is at present no simple ubiquitous message protocol to fulfil this
  438. function. rwall is fine for SunOS and other ONC licensees, but
  439. what about other systems? Do I have to rely upon SMTP? That's
  440. incompatible with the idea of broadcasting a simple message
  441. such as "The backbone will be down for five minutes at 12:00
  442. to replace a bridge." 
  443.  
  444. This could be trivially simple or slightly more involved
  445. (but still simple). The trivial approach is to dedicate
  446. a UDP port for unsolicited system messages. Anyone could send one,
  447. in a single datagram, and the listener process would be responsible
  448. for delivering it as seemed appropriate for the system (dialog
  449. box, console message, etc.) A more complete approach would be to
  450. define a formal protocol so that it would be possible to convey
  451. information about the coding of the message, message length (so that
  452. TCP could be used instead) and so forth. [If the spec exceeds
  453. one page, it's too complicated.]
  454.  
  455. Comments?
  456.  
  457. Geoff
  458. "
  459.  
  460. ------------------------------------------------------------------------------
  461.    
  462. D-5.  Where can I get an INT-14 redirector for (PC)NFS?
  463.  
  464. INT-14 redirectors are available with various (PC)NFS products including:
  465.         BW-NFS          [Z-2]
  466.         PC/TCP          [Z-14]
  467.         Chamelon NFS    [Z-3]
  468.         
  469. There is a version for PC-NFS v5.0 (by Geoff Arnold) at:
  470.         ftp.york.ac.uk:/pub/pc-nfs/utils/int14/*
  471.         sorokin.anu.edu.au:/pub/nfs5-addons/int14.zip
  472.  
  473. An INT-14 redirectory for WATTCP is available from:
  474.         dorm.rutgers.edu:/pub/msdos/wattcp/apps.zip
  475.  
  476. ------------------------------------------------------------------------------
  477.  
  478. D-6.  Where can I get YPPASSWD for PC-NFS?
  479.  
  480. There is a version of YPPASSWD for PC-NFS v5.0 at:
  481.       ftp.york.ac.uk:/pub/pc-nfs/utils/yppasswd/yppasswd.zip
  482.  
  483. ------------------------------------------------------------------------------
  484.  
  485. D-7.  Where can I get IBM 3270 terminal for (PC)NFS?
  486.  
  487. Please see chart in section G-1 under TN3270.
  488.  
  489. ------------------------------------------------------------------------------
  490.  
  491. D-8.  Where can I get X-Windows for (PC)NFS?
  492.  
  493. The following X-windows products are available:
  494.  
  495. For DOS:
  496. Product         Cost    Company                 Version
  497. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  498. Xvision         $395    VisionWare Soft, Inc    X11R5
  499. PC-Xware        $545    NCD, Inc.               X11R5
  500. PC DECwindows   ??      DEC                     X11R4
  501. PC Xsight       ??      Locus Computing         X11R4
  502. Micro X-Lite    $75     StarNet Comm. Corp.     X11R4
  503. X Appeal        $350    Xtreme                  X11R5
  504. Xoftware        ??      AGE Logic               X11R4
  505. PC X-Kit        $249    XLink                   X11R5
  506. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  507.  
  508. For MS-Windows:
  509. Product         Cost    Company                 Version
  510. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  511. HCL-eXceed      ??      Hummingbird Software    X11R5
  512. eXcursion       ??      DEC                     X11R5
  513. MultiView/X     ??      JSB Corp.               X11R4
  514. PC-Xview        $445    NCD Inc.                X11R5
  515. Xoftware        ??      AGE Logic               X11R4
  516. eXodus          $295    White Pine Software     X11R5
  517. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  518.  
  519. For Macintosh:
  520. Product         Cost    Company                 Version
  521. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  522. MacX            ??      Apple Computer Corp.    X11R5
  523. eXodus          $295    White Pines Software    X11R5
  524. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  525.  
  526. For OS/2:
  527. Product         Cost    Company                 Version
  528. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  529. X Windows       $150    IBM                     X11R5
  530. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  531.  
  532. ------------------------------------------------------------------------------
  533.  
  534. D-10.  Where can I get a database that works with (PC)NFS?
  535.  
  536. Any database would be able to use the NFS mounted drive as long as it
  537. recognizes it as a local drive. Most network versions of a database however
  538. will not work unless they specifically say they support (PC)NFS & TCP/IP.
  539. DBMS's known to work with (PC)NFS include SQL*Net (Oracle), and Sybase for
  540. DOS. 
  541.  
  542. ------------------------------------------------------------------------------
  543.  
  544. D-11.  Where can I get a WAIS client for (PC)NFS?
  545.  
  546. WAIS Manager 3.0 by Kebin Gamiel (representing MCNC CNIDR and UNC-Chapel
  547. Hill) has recently been announced which is WinSock compliant. Features
  548. include multi-format handling capability, relevance feedback and a new
  549. interface with Toolbar for quicker access.
  550.  
  551. You can get this via ftp from:
  552.   sunsite.unc.edu: /pub/micro/pc-stuff/ms-windows/winsock/apps/waisman3.zip
  553.   ftp.cnidr.org: /pub/NIDR.tools/wais/pc/windows/waisman3.zip
  554.  
  555. There is a WAIS client for PC/TCP at:
  556.         calvin.sfasu.edu: /pub/dos/network/pc-tcp/wais.zip
  557.  
  558. WinWAIS is another winsock version of WAIS (written in Visual Basic) which
  559. is available from:
  560.   sunsite.unc.edu:/pub/micro/pc-stuff/ms-windows/winsock/apps
  561.  
  562. ------------------------------------------------------------------------------
  563.  
  564. D-12.  Where can I get an archie client for (PC)NFS?
  565.  
  566. A ported version of c-archie is available for PC-NFS at the ftp sites:
  567.         bcm.tmc.edu: /nfs/archie.exe
  568.         ftp.york.ac.uk:/pub/pc-nfs/utils/archie.exe
  569. This version works for PC-NFS v4.0a
  570.  
  571. There is a version for PC/TCP at:
  572.         calvin.sfasu.edu:/pub/dos/network/ftp-pctcp/archie.zip
  573.  
  574. ------------------------------------------------------------------------------
  575.  
  576. D-13.  Where can I get a gopher client for (PC)NFS?
  577.  
  578. nfsgopher is available from bcm.tmc.edu in /nfs which will work with PC-NFS
  579. gopher for MS-Windows is available for PC-NFS systems in an alpha release
  580. from the ftp site:
  581.         lister.cc.ic.ac.uk: pub/wingopher/{readme.txt,gopher.exe}
  582.         ftp.york.ac.uk:/pub/pc-nfs/utils/gophersfx.exe
  583.  
  584. HGopher (Hampson's Gopher) is a new client for gopher systems. The following
  585. version has been tested at ANU:
  586.         sorokin.anu.edu.au: /pub/nfs5-addons/hgopher.exe
  587. It is originally distributed from:
  588.         lister.cc.ic.ac.uk: /pub/wingopher
  589.  
  590. There is a gopher client for PC/TCP at the following site:
  591.         calvin.sfasu.edu:/pub/dos/network/ftp-pctcp/goph1_05.exe
  592.  
  593. gophbook from UNC is an Asymetrix Toolbox application which uses winsock.dll
  594. and is available from the ftp site:
  595.   sunsite.unc.edu: /pub/micro/pc-stuff/ms-windows/winsock/apps/gophbook.zip
  596.  
  597. ------------------------------------------------------------------------------
  598.  
  599. D-14.  Where can I get a WWW (World Wide Web) client for (PC)NFS?
  600.  
  601. There is a version of such a client for PC-NFS at
  602.         ftp.york.ac.uk:/pub/pc-nfs/utils/wwwpcnfs.zip
  603.  
  604. ------------------------------------------------------------------------------
  605.  
  606. D-15 Where can I get X25 for (PC)NFS ?
  607.  
  608. The Software Forge developed a PC/TCP-IP adapter for X25, which is a hardware/
  609. software bundle that :
  610.  
  611. - conforms to PDS specification 1.09
  612. - conforms to RFC 877/1356 (TCP-IP over X25)
  613. - supports PC/TCP and PC-NFS (probably any PDS-compliant software)
  614. - does address resolution of 100 Internet adresses (expandable)
  615. - can have up to 20 simultaneous sessions
  616.  
  617. For more information, contact UniPalm (+44(0)223250100) o
  618.  unipalm@unipalm.co.uk
  619.  
  620. The Software Group Ltd also makes X.25 software for PC systems. They can be
  621. contacted at: 
  622.         2 Director Court, Suite 201
  623.         Woodbridge, Ontario, 
  624.         Canada L4L 3Z5
  625.         (418) 856-238
  626.         (418) 856-0242 
  627.  
  628.         or email scott@group.com
  629.  
  630. There is also an X.25 package available with Super-TCP from Frontier
  631. Technologies [Z-16].
  632.  
  633. -----------------------------------------------------------------------------
  634.  
  635. D-16 Where can I get NEWGRP.EXE for PC-NFS ?
  636.  
  637. NEWGRP.EXE is a utility written by Geoff Arnold that does the equivalent of
  638. the Unix newgrp command. See man newgrp if you are really interested. It can
  639. be ftp-ed from some of the ftp sites found in C-2.
  640.  
  641. -----------------------------------------------------------------------------
  642.  
  643. D-17 Where can I get AUTOCONF for PC-NFS ?
  644.  
  645. AUTOCONF is a shareware utility designed and implementes by Henk Swaters that
  646. allows system administrators to define an NIS map (pcnfs.config) that holds
  647. the equivalent of DRIVES.BAT. The NIS map works on a user-basis and th
  648.  mounting
  649. and unmounting of existing resources is performed trough a single .EXE file.
  650.  
  651. AUTOCONF.ZIP is available on ftp.york.ac.uk in /pub/pc-nfs. You do need a
  652.  least
  653. PKUNZIP 2.04G to unzip it. What follows is the README.
  654.  
  655.  
  656. AUTOCONF                                                           14-06-93
  657.                         autoconf utility for pcnfs
  658.                         ==========================
  659.  
  660. NAME
  661.         autoconf.exe - configure PCNFS-client network drives and printers
  662.  
  663.  
  664. DISCRIPTION
  665.         This program is made to configure the network drives and printers
  666.         of a PCNFS-client from the NIS database. The name of the NIS-map
  667.         is pcnfs.config. Each line of the pcnfs.config file defines user
  668.         or group information and has the format
  669.  
  670.                 username/groupname list-of-drives/printdevices
  671.  
  672.         where list-of-drives/printdevices is either another username/
  673.         groupname, or a network drive/printdevice: 
  674.         
  675.                 (drive:,hostname:/path,/option,option..)
  676.                 or
  677.                 (printdevice:,hostname:printername,/option,option..)
  678.  
  679.         example:
  680.         ----------------------------------------------------------------
  681.         all\
  682.                 (g:,calibra:/export/MSDOS/WinEnv)
  683.         printer_staff\
  684.                 (lpt1:,pslw1:lw1,/fmt=raw)
  685.         smith\
  686.                 all (f:,calibra:/export/MSDOS/DosEnv)\
  687.                 printer_staff
  688.         ----------------------------------------------------------------
  689.  
  690.         When user smith executes autoconf.exe he mounts the following
  691.         environment:
  692.  
  693.                 g:      calibra:/export/MSDOS/WinEnv
  694.                 f:      calibra:/export/MSDOS/DosEnv
  695.                 lpt1:   pslw1:lw1       /fmt=raw
  696.  
  697. USAGE
  698.         A known user has to be logged in, otherwise the program
  699.         terminates. If the program is executed without any options
  700.         the username is used as keyvalue. It is possible to give
  701.         one or more keyvalues as argument of the program. These
  702.         arguments can be either usernames or groupnames. By Default
  703.         the program unmounts a drive before mounting a new drive on the
  704.         same device. The argument /n or /nounmount switches this 
  705.         option off. The argument /h or /help prints out a help screen
  706.         and terminates the program. There will be no mount or unmount
  707.         command.
  708.  
  709.         example with the same auto.config as above:
  710.  
  711.                 autoconf printer_staff /n 
  712.                 or 
  713.                 autoconf /nounmount printer_staff
  714.  
  715.         These equivalent commands try to mount:
  716.  
  717.                 lpt1:   pslw1:lw1       /fmt=raw
  718.  
  719.         There will be no unmount command and if there is already
  720.         a network device on lpt1: there are no changes made.
  721.  
  722.  
  723. AUTHOR
  724.         Henk Swaters Dept. of Computer Science University of Twente.
  725.         swaters@cs.utwente.nl
  726.         
  727. HISTORY
  728.         autoconf.exe 
  729.         -------------
  730.         14-06-1993      verion 1.0 
  731.  
  732. ------------------------------------------------------------------------------
  733.  
  734. D-18. Where can I get a remote backup utility for (PC)NFS?
  735.  
  736. WATTCP has a backup utility called "rtar" with its applications
  737. distribution. 
  738.  
  739. The following commercial packages have similar facilities:
  740. PC/TCP, Super-TCP, BW-TCP, Lanera TCPOpen, XLink PC-Link 
  741.  
  742. ------------------------------------------------------------------------------
  743.  
  744. D-19.  Which (PC)NFS packages support DNS [named]?
  745.  
  746. Please see the chart Z-3.
  747.  
  748. ------------------------------------------------------------------------------
  749.  
  750. D-20.  Where can I get a traceroute program?
  751.  
  752. BW-TCP [Z-X] has a traceroute program with their package.
  753.  
  754. There is a traceroute program available for WATTCP at:
  755.         polysla.calpoly.edu:/pub/mdurkin/trtb91b.zip
  756.  
  757. This is for an older version of WATTCP but is being converted to the new
  758. version currently.
  759.  
  760. ------------------------------------------------------------------------------
  761.  
  762. D-21.  Where can I get an LPD program?
  763.  
  764. For commercial and some PD packages which have an LPD program please look at
  765. the chart G-4. 
  766.  
  767. There's a Winsock-compliant LPD called NLPD available via ftp from:
  768.         sunsite.unc.edu:/pub/micro/pc-stuff/ms-windows/winsock/apps/wslpd.exe
  769.  
  770.  
  771. ------------------------------------------------------------------------------
  772.  
  773. Section E: Problems & General Q&A
  774. =================================
  775.  
  776. ------------------------------------------------------------------------------
  777.  
  778. E-2.  Can I use DNS instead of NIS with PC-NFS?
  779.  
  780. No. PC-NFS currently only supports the Sun ONC NIS product. (Even NIS+ is
  781. not fully compatible).
  782.  
  783. DNS is available with other packages.
  784.  
  785. ------------------------------------------------------------------------------
  786.  
  787. E-3.  Why do versions of (PC)NFS not follow symbolic links?
  788.  
  789. This is because according to the NFS definition, filenames are handled by
  790. the NFS client. In some (PC)NFS if the files in the symbolic links may not
  791. be in the same exported directory as the directory the link is in. NFS
  792. mounted files appear as drives on the clients and the clients cannot parse
  793. any files which appear higher up on the tree or on a different tree segment
  794. than that of the NFS exported drive (from the server).
  795.  
  796. Certain versions can be clever enough to counter this problem by their own
  797. methods but it is generally accepted that (PC)NFS systems do not support
  798. symbolically linked files.
  799.  
  800. ------------------------------------------------------------------------------
  801.  
  802. E-4.  PC-NFS v4.0 has trouble with Cntl-S, Cntl-Q.
  803.  
  804. This has been fixed in release 4.0a and 5.0. For 4.0a please look at the ftp
  805. sites [H-5]
  806.  
  807. ------------------------------------------------------------------------------
  808.  
  809. E-5.  PC-NFS v4.0 has trouble with redrawing windows.
  810.  
  811. This has been fixed in release 4.0a and 5.0. For 4.0a please look at the ftp
  812. sites [H-5]
  813.  
  814. ------------------------------------------------------------------------------
  815.  
  816. E-6.   PC-NFS v4.0 doesn't allow me to access the local printer when I have
  817.        network printers.
  818.  
  819. This is because the default setup for printers in PC-NFS v4.0 is as a
  820. network printer. In the print manager choose the printer and change the
  821. setup. At the bottom of the setup screen for the printer should be a
  822. checkbox indicating that it is a network printer. Uncheck this box.
  823.  
  824. ------------------------------------------------------------------------------
  825.  
  826. E-7.  I cannot delete any file that PC-NFS makes with a ~ (tilde) in it.
  827.  
  828. To get rid of the problem, in your config.sys, run pcnfs.sys as:
  829.  
  830. C:\NFS\PCNFS.SYS /c^
  831.  
  832. where c reassign the immediately following character. [In this case to the
  833. character '^']
  834.  
  835. ------------------------------------------------------------------------------
  836.  
  837. E-8.  PC-NFS says that it cannot open any more files even when the limit in 
  838.       autoexec.bat is set higher.
  839.  
  840. PC-NFS uses its open own file limit and not the DOS system open file limit. To
  841. modify this limit use the /f flag as such in the config.sys:
  842.  
  843. C:\NFS\PCNFS.SYS /f50
  844.  
  845. The limit here is set to 50. The maximum is 64.
  846.  
  847. ------------------------------------------------------------------------------
  848.  
  849. E-9.  Can (PC)NFS mount file systems which are bigger than 2 GB?
  850.  
  851. Most server file systems do not handle such large file systems, but this is
  852. possible with various software enhancements like Disk-Suite for Sun systems.
  853.  
  854. NFS clients on the other need not know how big the actual remote file system
  855. is. It only receives information on how big the individual files are and not
  856. the file system itself.
  857.  
  858. The Network Appliance server has one partition under which all drives can be
  859. mounted for NFS exportation.
  860.  
  861. ------------------------------------------------------------------------------
  862.  
  863. E-10.  What is NFS/TCP? Will it work with my NFS product?
  864.  
  865. NFS/TCP is a different type of the original NFS protocol which uses the TCP
  866. protocol as opposed to the originally specified UDP protocol. NFS over UDP
  867. works well over a single LAN but is as not suitable for multiple LANs or
  868. WANs as NFS/TCP. TCP's windowing of packets capability and reliability gives
  869. it an advantage. In UDP dropped packets are not acknowledged between the two
  870. hosts, however, TCP retransmits all dropped packets. One more aspect of TCP
  871. (which is more idealistic than real) is the congestion control capacity
  872. between routers for TCP which prevents overflooding of a congested network
  873. link. In NFS/UDP it is easy to create UDP data which look like NFS requests
  874. from other machines. However, TCP makes it much more difficult to add
  875. falsified packets which impersonate another machines data.
  876.  
  877. The problem with NFS/TCP is that it is incompatible with NFS/UDP. Therefore
  878. all servers running the TCP version will be invisible to clients running a
  879. UDP version and vice versa.
  880.  
  881. NFS/TCP is available in PC/TCP and BWNFS.
  882.  
  883. ------------------------------------------------------------------------------
  884.  
  885. E-11.  What is PKTD.SYS? Where can I get it?
  886.  
  887. PKTD.SYS is a shim that allows PC-NFS to use packet drivers instead of its
  888. native drivers. It is available from:
  889.         bcm.tmc.edu
  890.         src.doc.ic.ac.uk
  891.         ftpserver.massey.ac.nz
  892.         ftp.york.ac.uk
  893.  
  894. The current version is pktd40a.sys
  895.  
  896. ------------------------------------------------------------------------------
  897.  
  898. E-12.  How can I run Netware 3.xx at the same time as (PC)NFS using NDIS?
  899.  
  900. You can run the NDIS-over-ODI shim available from Novell that will let you
  901. run netware at the same time as any other product running NDIS (ie. many
  902. (PC)NFS products.
  903.  
  904. ------------------------------------------------------------------------------
  905.  
  906. E-14.  Is it possible to modify the read & write buffer sizes in (PC)NFS?
  907.  
  908. Different (PC)NFS systems have different sizes with default at 1024 Kbytes
  909. for both.  The standard maximum is 8 KB.
  910.  
  911. In PC-NFS, read buffer size is fixed (1024KB) but you can modify the write
  912. size to any thing below this maximum. Currently anything less than 128 bytes
  913. is cached into a 256 byte datagram. Anything more than this is passed as its
  914. specific size.
  915.  
  916. PC/TCP, PathWay Client NFS & BWNFS allow modification of read & write buffer
  917. sizes.
  918.  
  919. ------------------------------------------------------------------------------
  920.  
  921. E-15.  How can I install an Ethernet board not supported by (PC)NFS?
  922.  
  923. Contributed by Farid Rahmi:
  924.  
  925. If you're installing on an IBM PC or compatible, you can use NDIS drivers in
  926. general for your Ethernet board. 
  927.  
  928. Although I only upgraded to 5.0 after installing a beta version of 5.0
  929. on my 3C509 PC, the procedure should still be the same :
  930.  
  931.  
  932. 1) Get the NDIS driver, the PROTOCOL.INI and the .NIF file from the LANMAN
  933.    directory off the floppy that shipped with the 3C509 and copy these three
  934.    files onto your harddisk (*NOT* in C:\LANMAN !!!, see below)
  935.  
  936. 2) Select NDIS during installation.
  937.  
  938. 3) This should wake up QUIKNDIS, which will transform PROTOCOL.INI for you
  939.    and put it in C:\LANMAN together with the NDIS driver.
  940.  
  941. Three remarks :
  942.  
  943. - If you have an EISA machine and an ISA 3C509, please RTFM before complaining
  944.   about lockups.
  945.  
  946. - I noticed that QUIKNDIS would scratch (make zero byte file) the NDIS driver
  947.   if placed into C:\LANMAN. As mentioned, this was in the beta release.
  948.  
  949. - Too bad SunSelect couldn't ship the drivers with 5.0. Seen most of the other
  950.   vendors ship these drivers and they are publicly available (ftp.3com.com)...
  951.  
  952.  
  953. Farid (fr@sunbim.be)
  954.  
  955. ------------------------------------------------------------------------------
  956.  
  957. Section F: Programming
  958. ======================
  959.  
  960. ------------------------------------------------------------------------------
  961.  
  962. F-1.  Is there a toolkit for (PC)NFS programming? Where can I get it?
  963.  
  964. Until recently, programming toolkits were developed independently by vendors
  965. alongside their products. Due to the efforts of different persons and
  966. organizations there is a formal definition of MS-Windows in the Windows
  967. Sockets API. The current version is 1.1. This is only a standard and product
  968. vendors are allowed to distribute their own programming toolkit. Most are
  969. now developing or selling Windoes Sockets API compatible toolkits. Please
  970. refer to the chart G-3 for products with Windows Sockets API.
  971.  
  972.