Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Improving the performance of the NS-3 bindings by:
[simgrid.git] / examples / platforms / wifi / 1STA-1LINK-1NODE.xml
1 <?xml version='1.0'?>
2
3 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd">
4 <platform version="4.1">
5   <AS id="AS0" routing="Full">
6
7     <!-- WIFI cell -->
8         <AS id="AS_AP1" routing="Cluster">
9       <host id="STA1" speed="100.0Mf,50.0Mf,20.0Mf">
10       </host>
11       <router id="AP1_ROUTER"/>     
12
13       <!-- Access Point -->
14           <link id="AP1" sharing_policy="WIFI" bandwidth="54Mbps" latency="0ms">
15           </link>
16           
17       <host_link id="STA1" up="AP1" down="AP1"/>
18         </AS>
19
20
21     <!-- NODE1 AS -->
22         <AS id="AS1" routing="Full">
23       <host id="NODE1" speed="100.0Mf,50.0Mf,20.0Mf">
24       </host>
25         </AS>
26     
27
28     <!-- AS Routing -->
29     <link id="LINK1" sharing_policy="SHARED" bandwidth="100Mbps" latency="0ms">
30         </link>
31     <ASroute src="AS_AP1" dst="AS1" gw_src="AP1_ROUTER" gw_dst="NODE1">
32       <link_ctn id="LINK1" />
33     </ASroute>
34     
35   </AS>
36 </platform>