Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
This platform works without NS3 now. Must have route from a to c
[simgrid.git] / examples / msg / ns3 / 3hosts_2links_p.xml
1 <?xml version='1.0'?>
2  <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
3 <platform version="3">
4
5         <!-- a ______1______ b _____2_____ c -->
6
7         <AS id="AS0" routing="Full">
8
9                 <host id="a" power="1000000000" />
10                 <host id="b" power="1000000000" />
11                 <host id="c" power="1000000000" />
12
13                 <link id="1" bandwidth="1000" latency="0.01" />
14                 <link id="2" bandwidth="1000" latency="0.01" />
15
16                 <route src="a" dst="b">
17                         <link_ctn id="1" />
18                 </route>
19                 
20                 <route src="b" dst="c">
21                         <link_ctn id="2" />
22                 </route>
23                 
24                 <route src="a" dst="c">
25                         <link_ctn id="1" />
26                         <link_ctn id="2" />
27                 </route>
28
29         </AS>
30 </platform>