| 7 | # host definiton |
| 8 | # <name> <address> [<port>] |
| 9 | # if port is ommited, this MTO will not listen for incomming connections |
| 10 | |
| 11 | A localhost |
| 12 | B localhost 5100 |
| 13 | C localhost |
| 14 | D 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 |
| 19 | myName = 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. |
| 24 | localPortLow = 5002 |
| 25 | localPortHigh = 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. |
| 29 | internalPort = 5001 |
| 30 | internalAddress = private-address |
| 31 | }}} |