home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyth_os2.zip / python-1.0.2 / Demo / rpc / README < prev    next >
Text File  |  1993-12-17  |  959b  |  24 lines

  1. This is a Python interface to Sun RPC, designed and implemented mostly
  2. by reading the Internet RFCs about the subject.
  3.  
  4. There are two library modules, xdr.py and rpc.py, and several example
  5. clients: mountclient.py, nfsclient.py, and rnusersclient.py,
  6. implementing the NFS Mount protocol, (part of) the NFS protocol, and
  7. the "rnusers" protocol (used by rusers(1)), respectively.  The latter
  8. demonstrates the use of broadcast via the Port mapper's CALLIT
  9. procedure.
  10.  
  11. There is also a way to create servers in Python.
  12.  
  13. To test the nfs client, run it from the shell with something like this:
  14.  
  15.   python -c 'import nfsclient; nfsclient.test()' [hostname [filesystemname]]
  16.  
  17. When called without a filesystemname, it lists the filesystems at the
  18. host; default host is the local machine.
  19.  
  20. Other clients are tested similarly.
  21.  
  22. For hostname, use e.g. wuarchive.wustl.edu or gatekeeper.dec.com (two
  23. hosts that are known to export NFS filesystems with little restrictions).
  24.