Changes between Version 4 and Version 5 of MTO

Show
Ignore:
Timestamp:
04/03/13 18:00:12 (12 years ago)
Author:
jorisborgdorff
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MTO

    v4 v5  
    4646 * debug mode  
    4747{{{ 
    48    ./bin/mto --debug 
     48   mto --debug 
    4949}}} 
    5050 * deamon mode 
    5151{{{ 
    52  ./bin/mto 
     52  mto 
    5353}}} 
    5454= Example setup = 
    5555  
     56Suppose we are using two domains, Amsterdam.nl (IP: 50.50.50.50) and Poznan.pl (IP: 100.100.100.100). For the former, we use port range 5000-5999, and it does not have any open ports but it can contact the latter, with port range 6000-6999 and an open port 20300. Then the global topology becomes 
     57 
     58{{{ 
     59# <name> <address> [<port>] 
     60Ams amsterdam.nl 
     61Poz poznan.pl 20300 
     62}}} 
     63 
     64In Ams, we have the local configuration 
     65{{{ 
     66myName = Ams 
     67localPortLow    = 5002 
     68localPortHigh   = 5999 
     69internalPort    = 5001 
     70internalAddress = 50.50.50.50 
     71}}} 
     72 
     73And in Poz, the configuration becomes: 
     74{{{ 
     75myName = Poz 
     76localPortLow    = 6002 
     77localPortHigh   = 6999 
     78internalPort    = 6001 
     79internalAddress = 100.100.100.100 
     80}}} 
     81 
     82For this configuration to work, on Ams port 5001 must be available and on Poz port 6001 and port 20300 must be available.