578698ca2fb8a7968de747847a62c19d02b66b2f
[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 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-p2p-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.register_connection(simu, node)
63
64 nsnode1 = add_ns3_node(ec, simu)
65 dev1 = add_device(ec, nsnode1, "10.0.0.1", "30")
66 ec.set(dev1, "DataRate", "5Mbps")
67
68 nsnode2 = add_ns3_node(ec, simu)
69 dev2 = add_device(ec, nsnode2, "10.0.0.2", "30")
70 ec.set(dev2, "DataRate", "5Mbps")
71
72 # Create channel
73 chan = ec.register_resource("ns3::PointToPointChannel")
74 ec.set(chan, "Delay", "2ms")
75
76 ec.register_connection(chan, dev1)
77 ec.register_connection(chan, dev2)
78
79 ### create applications
80 ping = ec.register_resource("linux::ns3::dce::Application")
81 ec.set (ping, "sources", "http://www.skbuff.net/iputils/iputils-s20101006.tar.bz2")
82 ec.set (ping, "build", "tar xvjf ${SRC}/iputils-s20101006.tar.bz2 && "
83         "cd iputils-s20101006/ && "
84         "sed -i 's/CFLAGS=/CFLAGS+=/g' Makefile && "
85         "make CFLAGS=-fPIC LDFLAGS='-pie -rdynamic' ping && "
86         "cp ping ${BIN_DCE} && cd - ")
87 ec.set (ping, "binary", "ping")
88 ec.set (ping, "stackSize", 1<<20)
89 ec.set (ping, "arguments", "-c 10;-s 1000;10.0.0.2")
90 ec.set (ping, "StartTime", "1s")
91 ec.set (ping, "StopTime", "20s")
92 ec.register_connection(ping, nsnode1)
93
94 ec.deploy()
95
96 ec.wait_finished([ping])
97
98 stdout = ec.trace(ping, "stdout") 
99
100 ec.shutdown()
101
102 print "PING OUTPUT", stdout
103