ab7ef3387ba30f474765aa7fdd073f7d63a81cfe
[nepi.git] / examples / dce / custom_dlm_ping.py
1 #!/usr/bin/env python
2 #
3 #    NEPI, a framework to manage network experiments
4 #    Copyright (C) 2013 INRIA
5 #
6 #    This program is free software: you can redistribute it and/or modify
7 #    it under the terms of the GNU General Public License version 2 as
8 #    published by the Free Software Foundation;
9 #
10 #    This program is distributed in the hope that it will be useful,
11 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #    GNU General Public License for more details.
14 #
15 #    You should have received a copy of the GNU General Public License
16 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 #
18 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
19
20 from nepi.execution.ec import ExperimentController 
21
22 def add_ns3_node(ec, simu):
23     node = ec.register_resource("ns3::Node")
24     ec.register_connection(node, simu)
25
26     ipv4 = ec.register_resource("ns3::Ipv4L3Protocol")
27     ec.register_connection(node, ipv4)
28
29     arp = ec.register_resource("ns3::ArpL3Protocol")
30     ec.register_connection(node, arp)
31     
32     icmp = ec.register_resource("ns3::Icmpv4L4Protocol")
33     ec.register_connection(node, icmp)
34
35     udp = ec.register_resource("ns3::UdpL4Protocol")
36     ec.register_connection(node, udp)
37
38     tcp = ec.register_resource("ns3::TcpL4Protocol")
39     ec.register_connection(node, tcp)
40
41     return node
42
43 def add_device(ec, node, ip,  prefix):
44     dev = ec.register_resource("ns3::PointToPointNetDevice")
45     ec.set(dev, "ip", ip)
46     ec.set(dev, "prefix", prefix)
47     ec.register_connection(node, dev)
48
49     queue = ec.register_resource("ns3::DropTailQueue")
50     ec.register_connection(dev, queue)
51
52     return dev
53
54 ec = ExperimentController(exp_id = "dce-custom-dlm-ping")
55
56 node = ec.register_resource("linux::Node")
57 ec.set(node, "hostname", "localhost")
58 ec.set(node, "cleanProcesses", True)
59
60 simu = ec.register_resource("linux::ns3:Simulation")
61 ec.set(simu, "verbose", True)
62 #ec.set(simu, "enableDump", True)
63 ec.register_connection(simu, node)
64
65 nsnode1 = add_ns3_node(ec, simu)
66 dev1 = add_device(ec, nsnode1, "10.0.0.1", "30")
67 ec.set(dev1, "DataRate", "5Mbps")
68
69 nsnode2 = add_ns3_node(ec, simu)
70 dev2 = add_device(ec, nsnode2, "10.0.0.2", "30")
71 ec.set(dev2, "DataRate", "5Mbps")
72
73 # Create channel
74 chan = ec.register_resource("ns3::PointToPointChannel")
75 ec.set(chan, "Delay", "2ms")
76
77 ec.register_connection(chan, dev1)
78 ec.register_connection(chan, dev2)
79
80 ### create applications
81 ping = ec.register_resource("linux::ns3::dce::Application")
82 ec.set (ping, "sources", "http://www.skbuff.net/iputils/iputils-s20101006.tar.bz2")
83 ec.set (ping, "build", "tar xvjf ${SRC}/iputils-s20101006.tar.bz2 && "
84         "cd iputils-s20101006/ && "
85         "sed -i 's/CFLAGS=/CFLAGS+=/g' Makefile && "
86         "make CFLAGS=-fPIC LDFLAGS='-pie -rdynamic' ping && "
87         "cp ping ${BIN_DCE} && cd - ")
88 ec.set (ping, "binary", "ping")
89 ec.set (ping, "stackSize", 1<<20)
90 ec.set (ping, "arguments", "-c 10;-s 1000;10.0.0.2")
91 #ec.set (ping, "useDlmLoader", True)
92 ec.set (ping, "StartTime", "1s")
93 ec.set (ping, "StopTime", "20s")
94 ec.register_connection(ping, nsnode1)
95
96 ec.deploy()
97
98 ec.wait_finished([ping])
99
100 stdout = ec.trace(ping, "stdout") 
101
102 ec.shutdown()
103
104 print "PING OUTPUT", stdout
105