Version 3 (modified by mmamonski, 12 years ago) (diff)

--

Configuration files

The MUSCLE Transfer Overlay (MTO) configuration is stored in two files:

  • global topology file (MUSCLE_HOME/etc/mto-topology.cfg)
    // Comment
    # Comment
    
    # host definiton
    # <name> <address> [<port>]
    # if port is ommited, this MTO will not listen for incomming connections
    
    A localhost
    B localhost 5100
    C localhost
    D localhost 5300
    
  • local mto config file ( MUSCLE_HOME/etc/mto-config.cfg)
    # Name of this MTO as in mto-copology.cfg
    myName = A
    
    # Port range for clients of this MTO
    # Clients may register listening ports only from this range.
    # This range must not overlap any other MTO's range.
    localPortLow    = 5002
    localPortHigh   = 5099
    
    # Port and address where this MTO will listen for client requests.
    # Port and address for other MTO's is located in the topology file.
    internalPort    = 5001
    internalAddress = private-address
    

starting MTO

  • debug mode
       ./bin/mto --debug
    
  • deamon mode
     ./bin/mto
    

Example setup