Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
callback mechanism
[simgrid.git] / examples / platforms / wifi_large_cell.xml
1 <?xml version='1.0'?>
2
3 <!DOCTYPE platform SYSTEM "https://simgrid.org/simgrid.dtd">
4 <platform version="4.1">
5   <zone id="world" routing="Full">
6
7     <zone id="WIFI zone" routing="Wifi">
8         <prop id="access_point" value="WIFI router" />
9
10         <!-- Declare the stations of this wifi zone -->
11         <host id="Station 1" speed="100.0Mf,50.0Mf,20.0Mf" />
12         <host id="Station 2" speed="100.0Mf,50.0Mf,20.0Mf" />
13         <host id="Station 3" speed="100.0Mf,50.0Mf,20.0Mf" />
14         <host id="Station 4" speed="100.0Mf,50.0Mf,20.0Mf" />
15         <host id="Station 5" speed="100.0Mf,50.0Mf,20.0Mf" />
16         <host id="Station 6" speed="100.0Mf,50.0Mf,20.0Mf" />
17         <host id="Station 7" speed="100.0Mf,50.0Mf,20.0Mf" />
18         <host id="Station 8" speed="100.0Mf,50.0Mf,20.0Mf" />
19         <host id="Station 9" speed="100.0Mf,50.0Mf,20.0Mf" />
20         <host id="Station 10" speed="100.0Mf,50.0Mf,20.0Mf" />
21         <host id="Station 11" speed="100.0Mf,50.0Mf,20.0Mf" />
22         <host id="Station 12" speed="100.0Mf,50.0Mf,20.0Mf" />
23         <host id="Station 13" speed="100.0Mf,50.0Mf,20.0Mf" />
24         <host id="Station 14" speed="100.0Mf,50.0Mf,20.0Mf" />
25         <host id="Station 15" speed="100.0Mf,50.0Mf,20.0Mf" />
26         <host id="Station 16" speed="100.0Mf,50.0Mf,20.0Mf" />
27         <host id="Station 17" speed="100.0Mf,50.0Mf,20.0Mf" />
28         <host id="Station 18" speed="100.0Mf,50.0Mf,20.0Mf" />
29         <host id="Station 19" speed="100.0Mf,50.0Mf,20.0Mf" />
30         <host id="Station 20" speed="100.0Mf,50.0Mf,20.0Mf" />
31         <host id="Station 21" speed="100.0Mf,50.0Mf,20.0Mf" />
32         <host id="Station 22" speed="100.0Mf,50.0Mf,20.0Mf" />
33
34         <!-- Declare the wifi media (after hosts because our parser is sometimes annoying) -->
35         <link id="AP1" sharing_policy="WIFI" bandwidth="54Mbps,36Mbps,24Mbps" latency="0ms" />
36
37         <router id="WIFI router"/>
38     </zone>
39
40     <!-- NODE1 AS -->
41     <zone id="Wired zone" routing="Full">
42       <host id="node1" speed="100.0Mf,50.0Mf,20.0Mf" />
43     </zone>
44
45
46     <!-- AS Routing -->
47     <link id="Collector" sharing_policy="SHARED" bandwidth="100Mbps" latency="0ms" />
48     <zoneRoute src="WIFI zone" dst="Wired zone" gw_src="WIFI router" gw_dst="node1">
49       <link_ctn id="Collector" />
50     </zoneRoute>
51
52   </zone>
53 </platform>