Changes between Version 1 and Version 2 of MTO

Show
Ignore:
Timestamp:
09/25/12 12:08:47 (12 years ago)
Author:
mmamonski
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MTO

    v1 v2  
    11The MUSCLE Transfer Overlay (MTO) configuration is stored in two files: 
    2 * 
    3 * 
     2 * global topology file (`MUSCLE_HOME/etc/mto-topology.cfg`) 
     3{{{ 
     4// Comment 
     5# Comment 
    46 
     7# host definiton 
     8# <name> <address> [<port>] 
     9# if port is ommited, this MTO will not listen for incomming connections 
     10 
     11A localhost 
     12B localhost 5100 
     13C localhost 
     14D localhost 5300 
     15}}} 
     16 * local mto config file ( `MUSCLE_HOME/etc/mto-config.cfg`) 
     17{{{ 
     18# Name of this MTO as in mto-copology.cfg 
     19myName = A 
     20 
     21# Port range for clients of this MTO 
     22# Clients may register listening ports only from this range. 
     23# This range must not overlap any other MTO's range. 
     24localPortLow    = 5002 
     25localPortHigh   = 5099 
     26 
     27# Port and address where this MTO will listen for client requests. 
     28# Port and address for other MTO's is located in the topology file. 
     29internalPort    = 5001 
     30internalAddress = private-address 
     31}}}