home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 3 / Meeting_Pearls_III.iso / Pearls / tcp / Networking / TCP / AmiTCP / AmiTCP-txt-20.lha / AmiTCP-2.0 / README.FIRST < prev   
Text File  |  1993-08-13  |  5KB  |  156 lines

  1. * Copyrights
  2.  
  3.   See the file "COPYRIGHTS" for copyright information for this release.
  4.  
  5. * License
  6.  
  7.   The GNU General Public Licence version 2 (see the file "COPYING") applies
  8.   to the whole distribution, exept for files explicitly stated in
  9.   the file "COPYRIGHTS".
  10.  
  11. * About This Distribution
  12.  
  13.   The revision 2 is still to be considered as a "gamma" version, that is,
  14.   there might still be some bugs left and something will certainly change. 
  15.  
  16.   The e-mail address for bug reports is: 
  17.  
  18.     amitcp-bug@hut.fi
  19.  
  20.   There is also a mailing list for the developers, it can be joined by
  21.   sending mail to:
  22.  
  23.     amitcp-request@hut.fi
  24.  
  25.   Any problems and suggestions can also be discussed on the newsgroup
  26.   comp.sys.amiga.datacomm.
  27.  
  28. * About the included FTP and Telnet clients
  29.  
  30.   The FTP and Telnet clients included in the binary distribution are 
  31.   supplied by:
  32.  
  33.     Mark Tomlinson <mark@garden.equinox.gen.nz>
  34.     Goeff McCaughan <geoff@equinox.gen.nz>
  35.  
  36.   for who you are free to send any comments about the FTP and the Telnet.
  37.  
  38.   Source code for these two programs can be found from the Aminet under
  39.   the directory comm/net.
  40.  
  41. * To Install AmiTCP/IP:
  42.  
  43.   You can't install this new version on top of any older version. If
  44.   your disk space allows, leave the old version on the disk and delete
  45.   it when you have the new version running.
  46.   
  47.   First extract distribution archives (AmiTCP_xxx_20.lha) to a
  48.   directory in your hard disk (e.g. WORK:).
  49.   
  50.   Before you proceed, you must get some information from your network
  51.   administration. (if you don't get the information, you must modify
  52.   your database afterwards).  This information includes:
  53.   
  54.   * Internet protocol address allocated for your computer. This
  55.     is a series of decimal numbers separated by dots. For
  56.     example, 130.233.161.40 is a legal internet address.
  57.  
  58.   * Destionation IP address of a point-to-point link. This applies only
  59.     if you use a point-to-point medium, such as a serial line.
  60.   
  61.   * Netmask for your network. This specifies how many bits in your
  62.     internet address specifies your network address. Netmask is like
  63.     255.255.255.0. If your network is not sub-netted, then do not have 
  64.     to supply this value (a default computed from the IP address is used).
  65.   
  66.   * Name of your host. This is a mnemonic name which can usually be
  67.     used instead of the internet address to refer to your computer.
  68.     This is like "Amiga1".
  69.   
  70.   * Domain name of your site. For example, "hut.fi" is the domain name for
  71.     the Helsinki University of Technology in Finland.
  72.   
  73.   * Address(es) of the Domain Name Server(s) which will be used to translate
  74.     host names to the corresponding internet addresses. A local
  75.     database must be used instead if there is no name server on your
  76.     domain.
  77.   
  78.   * Address of the default gateway via which to send packets to
  79.     hosts not in your local network. There may be more than one of
  80.     them.
  81.   
  82.   * The network interface to use. This may be Ethernet, SLIP or
  83.     something else. We assume that you have proper hardware installed
  84.     and the appropriate Sana-II compatible device driver installed in
  85.     directory DEVS:Networks. AmiTCP/IP needs the name of device
  86.     driver in order to use it. The unit number for the device in
  87.     question is also needed (usually this is 0).
  88.   
  89.   When you are ready, you may start the installation by
  90.   double-clicking the "Install_AmiTCP-2.0"-icon.
  91.   
  92. * What Happens in the Installation?
  93.   
  94.   Here is explained shortly what happens during the installation. This is
  95.   provided to those of you who want to know what happens to their
  96.   computer.
  97.   
  98.   * First destination is selected.
  99.   * Some files are copied to their proper locations on your system.
  100.   * Information to setup network is asked.
  101.     * Your host name is stored to environment variable HOSTNAME
  102.     * Configuration information is saved in AmiTCP:db/netdb-myhost.
  103.     * Script to start AmiTCP/IP and interfaces is
  104.       created to Amitcp:bin/startnet.
  105.     * s:user-startup is modified to make right assigns and paths.
  106.   * If you select to start AmiTCP/IP when your computer boots,
  107.     command for this is added to s:user-startup.
  108.   
  109.  
  110. Here are examples of startnet and netdb files.
  111.  
  112. Sana-2 device driver: slip.device (Serial Line IP)
  113. Unit: 0 
  114. Name assigned to computer: slip-2
  115. Name of your Domain: hut.fi
  116. aliases: amy
  117. Address assigned to computer: 130.233.161.50
  118. Destination address (terminal server): 130.233.161.90
  119. Netmask in network: 255.255.252.0
  120. Address of gateway: 130.233.163.254
  121. Address of primary nameserver: 130.233.224.1
  122.  
  123. AmiTCP:bin/startnet: (comment = ;)
  124.  
  125. run AmiTCP:AmiTCP
  126. SYS:Rexxc/WaitForPort AMITCP
  127. Wait 2 secs
  128. ; configure loop-back device
  129. AmiTCP:bin/ifconfig lo/0 localhost
  130. ; Configure Devs:Networks/slip.device unit 0
  131. AmiTCP:bin/ifconfig Devs:Networks/slip.device/0 130.233.161.50 130.233.161.90 netmask 255.255.252.0
  132. ; Add route to this host
  133. AmiTCP:bin/route add slip-2.hut.fi localhost
  134. ; Add route to the default gateway
  135. AmiTCP:bin/route add default 130.233.163.254
  136. run AmiTCP:bin/inetd
  137.  
  138.  
  139. Amitcp:db/netdb-myhost: (comment = ;)
  140.  
  141. ; This host
  142. HOST 130.233.161.50 slip-2.hut.fi slip-2 amy
  143. ; Domain names
  144. DOMAIN hut.fi
  145. ; Name servers
  146. NAMESERVER 130.233.224.1
  147.  
  148.  
  149. Your user-startup will contain something along following lines:
  150.   
  151. ;BEGIN AmiTCP/IP
  152. setenv HOSTNAME slip-2.hut.fi
  153. assign AmiTCP: HardDisk:Work/project/DIST-2.0.24
  154. path AmiTCP:bin add
  155. ;END AmiTCP/IP
  156.