Improving DCE examples
[nepi.git] / examples / dce / custom_local_p2p_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 as published by
8 #    the Free Software Foundation, either version 3 of the License, or
9 #    (at your option) any later version.
10 #
11 #    This program is distributed in the hope that it will be useful,
12 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #    GNU General Public License for more details.
15 #
16 #    You should have received a copy of the GNU General Public License
17 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 #
19 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
20
21 from nepi.execution.ec import ExperimentController 
22
23 def add_ns3_node(ec, simu):
24     node = ec.register_resource("ns3::Node")
25     ec.register_connection(node, simu)
26
27     ipv4 = ec.register_resource("ns3::Ipv4L3Protocol")
28     ec.register_connection(node, ipv4)
29
30     arp = ec.register_resource("ns3::ArpL3Protocol")
31     ec.register_connection(node, arp)
32     
33     icmp = ec.register_resource("ns3::Icmpv4L4Protocol")
34     ec.register_connection(node, icmp)
35
36     udp = ec.register_resource("ns3::UdpL4Protocol")
37     ec.register_connection(node, udp)
38
39     tcp = ec.register_resource("ns3::TcpL4Protocol")
40     ec.register_connection(node, tcp)
41
42     return node
43
44 def add_device(ec, node, ip,  prefix):
45     dev = ec.register_resource("ns3::PointToPointNetDevice")
46     ec.set(dev, "ip", ip)
47     ec.set(dev, "prefix", prefix)
48     ec.register_connection(node, dev)
49
50     queue = ec.register_resource("ns3::DropTailQueue")
51     ec.register_connection(dev, queue)
52
53     return dev
54
55 ec = ExperimentController(exp_id = "dce-custom-p2p-ping")
56
57 node = ec.register_resource("LinuxNode")
58 ec.set(node, "hostname", "localhost")
59 ec.set(node, "cleanProcesses", True)
60
61 simu = ec.register_resource("LinuxNS3Simulation")
62 ec.set(simu, "verbose", 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("ns3::LinuxDceApplication")
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, "StartTime", "1s")
92 ec.set (ping, "StopTime", "20s")
93 ec.register_connection(ping, nsnode1)
94
95 ec.deploy()
96
97 ec.wait_finished([ping])
98
99 stdout = ec.trace(ping, "stdout") 
100
101 ec.shutdown()
102
103 print "PING OUTPUT", stdout
104