Revision 104,
1.3 KB
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Rev | Line | |
---|
[104] | 1 | # In this example, the network topology looks like below: |
---|
| 2 | # |
---|
| 3 | # compRes1 |
---|
| 4 | # | |
---|
| 5 | # 1MB/s |
---|
| 6 | # | |
---|
| 7 | # |----------R2---------| |
---|
| 8 | # GridUsers---1MB/s---R1---1MB/s 1MB/s---R5---1MB/s---dataRes1 |
---|
| 9 | # |---R3---1MB/s---R4---| |
---|
| 10 | # | |
---|
| 11 | # 1MB/s |
---|
| 12 | # | |
---|
| 13 | # compRes2 |
---|
| 14 | # total number of Routers |
---|
| 15 | 5 |
---|
| 16 | |
---|
| 17 | # specifies each router name |
---|
| 18 | R1 |
---|
| 19 | R2 |
---|
| 20 | R3 |
---|
| 21 | R4 |
---|
| 22 | R5 |
---|
| 23 | |
---|
| 24 | # total number of connections(links) between Routers |
---|
| 25 | 5 |
---|
| 26 | |
---|
| 27 | # specify the link between two routers |
---|
| 28 | # The format is: |
---|
| 29 | # router_name1 router_name2 baud_rate(GB/s) prop_delay(ms) mtu(byte) |
---|
| 30 | R1 R2 0.01 300 1500000 |
---|
| 31 | R2 R5 0.01 300 1500000 |
---|
| 32 | R1 R3 0.01 300 1500000 |
---|
| 33 | R3 R4 0.01 300 1500000 |
---|
| 34 | R4 R5 0.01 300 1500000 |
---|
| 35 | |
---|
| 36 | # total number of Resources |
---|
| 37 | 3 |
---|
| 38 | |
---|
| 39 | # specify the link between resource and router |
---|
| 40 | # The format is: |
---|
| 41 | # resource_name router_name baud_rate(GB/s) prop_delay(ms) mtu(byte) |
---|
| 42 | COMPUTING_RESOURCE_0 R2 0.01 300 1500000 |
---|
| 43 | COMPUTING_RESOURCE_1 R4 0.01 300 1500000 |
---|
| 44 | COMPUTING_RESOURCE_2 R5 0.01 300 1500000 |
---|
| 45 | |
---|
| 46 | # total number of Users |
---|
| 47 | 1 |
---|
| 48 | |
---|
| 49 | # specify the link between user and router |
---|
| 50 | # The format is: |
---|
| 51 | # user_name router_name baud_rate(GB/s) prop_delay(ms) mtu(byte) |
---|
| 52 | COMPUTING_GRID_0 R1 0.001 300 1500000 |
---|
Note: See
TracBrowser
for help on using the repository browser.