home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 272.lha / Net_v0718 / net.doc < prev    next >
Text File  |  1989-08-02  |  6KB  |  142 lines

  1. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *\
  2. * |_o_o|\\ Copyright (c) 1989 The Software Distillery.                    *
  3. * |. o.| ||          All Rights Reserved                                  *
  4. * | .  | ||          Written by John Toebes and Doug Walker               *
  5. * | o  | ||          The Software Distillery                              *
  6. * |  . |//           235 Trillingham Lane                                 *
  7. * ======             Cary, NC 27513                                       *
  8. *                    BBS:(919)-471-6436                                   *
  9. \* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  10.  
  11. This material is Copyright (C) 1988 and 1989 The Software Distillery.
  12. It may be distributed freely as long as the following restrictions are met:
  13.  
  14.    1.  All files present in the distribution package must be redistributed
  15.        with the package, including this documentation file.  If you 
  16.        distribute on diskette, all files must be on a single diskette.
  17.  
  18.    2.  The distributor may charge a fee to recover distribution costs.
  19.        The fee for diskette distribution should not be more than the cost 
  20.        to obtain the same diskette from Fred Fish or The Software Distillery,
  21.        whichever is greater.  Current charge from The Software Distillery
  22.        is $6 per disk, including all postage and handling charges.
  23.  
  24.    3.  The distributor agrees to cease distributing the programs and data
  25.        involved if requested to do so by authors or any member of The 
  26.        Software Distillery.
  27.  
  28. ------------------------------DISCLAIMER
  29.  
  30. Neither The Software Distillery nor any of its members will be liable for 
  31. any damage arising from the failure of this program to perform as described,
  32. or any destruction of other programs or data residing on a system 
  33. attempting to run the program.  While we know of no damaging errors, the 
  34. user of this program uses it at his or her own risk.
  35.  
  36. -----------------------------FUNCTIONALITY 
  37.  
  38. The network handler in this distribution relies on DNET for communication,
  39. but all dependencies on DNET are isolated.  The intent is for a future 
  40. release to support ANY COMMUNICATIONS METHOD, including serial, parallel,
  41. AppleTalk, DecNET, NFS, you name it, all simultaneously via external 
  42. communications servers.
  43.  
  44.  
  45. ============================================================================
  46.  
  47. RUNNING THE NETWORK HANDLER:
  48.  
  49. These instructions talk about a 'local' machine and a 'remote' machine.
  50. The network is symmetric, so for DNET at least, you can do the 
  51. installation on both sides.  Just install all files on both machines,
  52. and perform all commands on both machines.
  53.  
  54. 1. Install DNET on both machines.  Add an entry to the dnet.servers 
  55.    file on the remote machine for the network server.  A sample 
  56.    dnet.servers file is included in this distribution in the file 
  57.    "dnet.servers".  Note the server number for the network is 9492.  You 
  58.    will need to change the pathname specified in the sample dnet.servers 
  59.    file to reflect the path you intend to use.
  60.  
  61. 2. Copy netdnet-server to the path specified in the dnet.servers file on
  62.    the remote machine.
  63.  
  64. 3. Put a mountlist entry for the network handler in the local machine's
  65.    DEVS:MOUNTLIST.  A sample mountlist entry is included in this 
  66.    distribution in the file "mountlist".  If you do not want the network 
  67.    handler in l:, replace the specified path with one of your own.
  68.  
  69. 4. Copy netdnet-handler to the path specified in the mountlist on the 
  70.    local machine.
  71.  
  72. 5. Issue the CLI command "ASSIGN ROOT: <path>" on the remote machine.  The
  73.    network handler mounts the ROOT: device on the remote node as a network
  74.    node on the local node;  the place you point ROOT: to is where your
  75.    files will go.
  76.  
  77. 6. Copy the file NODE.INFO from the distribution disk to ROOT:.  This file 
  78.    contains the .info information for the remote node that will be 
  79.    displayed on the workbench screen of the local node.  Feel free to 
  80.    replace it with any DRAWER type .info file.
  81.  
  82. 7. Issue the CLI command "MOUNT NET:" on the local node.  The first 
  83.    reference to NET: after the MOUNT command will load the handler.  DNET
  84.    will load the server on the remote node automatically.
  85.  
  86. 8. If you want a two-way network, repeat steps 1-7, but this time switch
  87.    your idea of which node is 'local' and which is 'remote'.
  88.  
  89. ============================================================================
  90.  
  91. Once the NET: device is running, you can use the provided NETMOUNT command
  92. to allow access to other devices besides ROOT: on the remote machine.
  93. NETMOUNT is a temporary stopgap until a real ROOT: device is implemented
  94. that allows access to all devices on a machine via a single handler.
  95.  
  96. For now, the NETMOUNT command format is
  97.  
  98. NETMOUNT <local device> <node name> <remote device>
  99.  
  100. where <local device>  is the name you MOUNTed (usually NET:)
  101.       <node name>     is the name you want to refer to the new entry as
  102.       <remote device> is the name of the device on the remote node to use
  103.       
  104. For example, 
  105.  
  106. NETMOUNT NET: DF0 DF0:
  107.  
  108. would allow you to access the floppy on the remote node by using the path
  109. NET:DF0.  Thus, 
  110.  
  111. DIR NET:DF0
  112.  
  113. would produce the same results as doing a DIR DF0: on the remote machine.
  114.  
  115. ============================================================================
  116.  
  117. The provided NETSTAT command gives you a visual idea of how much work your
  118. network is doing.  Run it with the command
  119.  
  120. RUN NETSTAT <devicename>
  121.  
  122. where <devicename> is the name of your network device (probably NET:).
  123. Click on the close gadget in the upper left corner to exit.
  124.  
  125. ============================================================================
  126.  
  127. Differences and enhancements:
  128.  
  129. VERSION 05/09/89:
  130.   First version released
  131.  
  132. VERSION 07/18/89:
  133.  
  134. - Speed improved due to decreasing minimum packet size
  135.   Should help when loading executables over the network and when doing
  136.   directory operations.
  137.  
  138. - Debugging code removed
  139.   This makes the code smaller and faster
  140.  
  141. - Bug fixed in the ACTION_CREATE_DIR packet
  142.