Revision 104,
1.3 KB
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | # In this example, the network topology looks like below: |
---|
2 | # |
---|
3 | # dataRes1 |
---|
4 | # | |
---|
5 | # 10MB/s |
---|
6 | # | |
---|
7 | # |----------R2----------| |
---|
8 | # GridUsers---10MB/s---R1---10MB/s 10MB/s---R5---10MB/s---compRes1 |
---|
9 | # |---R3---10MB/s---R4---| |
---|
10 | # | |
---|
11 | # 10MB/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 | compRes1 R5 0.01 300 1500000 |
---|
43 | compRes2 R4 0.01 300 1500000 |
---|
44 | dataRes1 R2 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 | BrokerInterfaceEntity R1 0.01 300 1500000 |
---|
Note: See
TracBrowser
for help on using the repository browser.