Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
ns3 wifi working with 2 nodes 1 route, does not take lat or bw for now
[simgrid.git] / src / surf / network_ns3.cpp
1 /* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <string>
7 #include <unordered_set>
8
9 #include "xbt/config.hpp"
10 #include "xbt/string.hpp"
11 #include "xbt/utility.hpp"
12
13 #include <ns3/core-module.h>
14 #include <ns3/csma-helper.h>
15 #include <ns3/global-route-manager.h>
16 #include <ns3/internet-stack-helper.h>
17 #include <ns3/ipv4-address-helper.h>
18 #include <ns3/packet-sink-helper.h>
19 #include <ns3/point-to-point-helper.h>
20 #include <ns3/application-container.h>
21 #include <ns3/event-id.h>
22
23 #include "ns3/core-module.h"
24 #include "ns3/wifi-module.h"
25 #include "ns3/mobility-module.h"
26
27
28 #include "network_ns3.hpp"
29 #include "ns3/ns3_simulator.hpp"
30
31 #include "simgrid/kernel/routing/NetPoint.hpp"
32 #include "simgrid/plugins/energy.h"
33 #include "simgrid/s4u/Engine.hpp"
34 #include "simgrid/s4u/NetZone.hpp"
35 #include "src/instr/instr_private.hpp" // TRACE_is_enabled(). FIXME: remove by subscribing tracing to the surf signals
36 #include "src/surf/surf_interface.hpp"
37 #include "src/surf/xml/platf_private.hpp"
38 #include "surf/surf.hpp"
39
40 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ns3, surf, "Logging specific to the SURF network ns-3 module");
41
42 std::vector<std::string> IPV4addr;
43
44 /*****************
45  * Crude globals *
46  *****************/
47
48 extern std::map<std::string, SgFlow*> flow_from_sock;
49 extern std::map<std::string, ns3::ApplicationContainer> sink_from_sock;
50
51 static ns3::InternetStackHelper stack;
52 static ns3::NodeContainer nodes;
53 static ns3::NodeContainer Cluster_nodes;
54 static ns3::Ipv4InterfaceContainer interfaces;
55
56 /* wifi globals */
57 static ns3::YansWifiChannelHelper channel = ns3::YansWifiChannelHelper::Default ();
58 static ns3::YansWifiPhyHelper phy = ns3::YansWifiPhyHelper::Default ();
59 static ns3::WifiHelper wifi;
60 static ns3::WifiMacHelper mac;
61 static ns3::MobilityHelper mobility;
62
63 static int number_of_nodes = 0;
64 static int number_of_clusters_nodes = 0;
65 static int number_of_links = 1;
66 static int number_of_networks = 1;
67
68 simgrid::xbt::Extension<simgrid::kernel::routing::NetPoint, NetPointNs3> NetPointNs3::EXTENSION_ID;
69
70 NetPointNs3::NetPointNs3() : ns3_node_(ns3::CreateObject<ns3::Node>(0))
71 {
72   stack.Install(ns3_node_);
73   nodes.Add(ns3_node_);
74   node_num = number_of_nodes++;
75 }
76
77 /*************
78  * Callbacks *
79  *************/
80
81 static void clusterCreation_cb(simgrid::kernel::routing::ClusterCreationArgs const& cluster)
82 {
83   for (int const& i : *cluster.radicals) {
84     // Routers don't create a router on the other end of the private link by themselves.
85     // We just need this router to be given an ID so we create a temporary NetPointNS3 so that it gets one
86     auto* host_dst = new NetPointNs3();
87
88     // Create private link
89     std::string host_id = cluster.prefix + std::to_string(i) + cluster.suffix;
90     auto* host_src      = simgrid::s4u::Host::by_name(host_id)->get_netpoint()->extension<NetPointNs3>();
91     xbt_assert(host_src, "Cannot find a ns-3 host of name %s", host_id.c_str());
92
93     // Any ns-3 route is symmetrical
94     ns3_add_direct_route(host_src, host_dst, cluster.bw, cluster.lat, cluster.sharing_policy);
95
96     delete host_dst;
97   }
98
99   //Create link backbone
100   ns3_add_cluster(cluster.id.c_str(), cluster.bb_bw, cluster.bb_lat);
101 }
102
103 static void routeCreation_cb(bool symmetrical, simgrid::kernel::routing::NetPoint* src,
104                              simgrid::kernel::routing::NetPoint* dst, simgrid::kernel::routing::NetPoint* /*gw_src*/,
105                              simgrid::kernel::routing::NetPoint* /*gw_dst*/,
106                              std::vector<simgrid::kernel::resource::LinkImpl*> const& link_list)
107 {
108   XBT_INFO("routeCreation_cb START");
109
110   if (link_list.size() == 1) {
111     auto* link = static_cast<simgrid::kernel::resource::LinkNS3*>(link_list[0]);
112
113     XBT_DEBUG("Route from '%s' to '%s' with link '%s' %s %s", src->get_cname(), dst->get_cname(), link->get_cname(),
114               (link->get_sharing_policy() == simgrid::s4u::Link::SharingPolicy::WIFI ? "(wifi)" : "(wired)"),
115               (symmetrical ? "(symmetrical)" : "(not symmetrical)"));
116
117     //   XBT_DEBUG("src (%s), dst (%s), src_id = %d, dst_id = %d",src,dst, src_id, dst_id);
118     XBT_DEBUG("\tLink (%s) bw:%fbps lat:%fs", link->get_cname(), link->get_bandwidth(), link->get_latency());
119
120     // create link ns3
121     auto* host_src = src->extension<NetPointNs3>();
122     auto* host_dst = dst->extension<NetPointNs3>();
123
124     xbt_assert(host_src != nullptr, "Network element %s does not seem to be ns-3-ready", src->get_cname());
125     xbt_assert(host_dst != nullptr, "Network element %s does not seem to be ns-3-ready", dst->get_cname());
126
127     XBT_INFO("routeCreation_cb MID");
128     ns3_add_direct_route(host_src, host_dst, link->get_bandwidth(), link->get_latency(), link->get_sharing_policy());
129     XBT_INFO("routeCreation_cb MID2");
130   } else {
131     static bool warned_about_long_routes = false;
132
133     if (not warned_about_long_routes)
134       XBT_WARN("Ignoring a route between %s and %s of length %zu: Only routes of length 1 are considered with ns-3.\n"
135                "WARNING: You can ignore this warning if your hosts can still communicate when only considering routes "
136                "of length 1.\n"
137                "WARNING: Remove long routes to avoid this harmless message; subsequent long routes will be silently "
138                "ignored.",
139                src->get_cname(), dst->get_cname(), link_list.size());
140     warned_about_long_routes = true;
141   }
142   XBT_INFO("routeCreation_cb END");
143 }
144
145 /* Create the ns3 topology based on routing strategy */
146 static void postparse_cb()
147 {
148   IPV4addr.shrink_to_fit();
149
150   ns3::GlobalRouteManager::BuildGlobalRoutingDatabase();
151   ns3::GlobalRouteManager::InitializeRoutes();
152 }
153
154 /*********
155  * Model *
156  *********/
157 void surf_network_model_init_NS3()
158 {
159   xbt_assert(surf_network_model == nullptr, "Cannot set the network model twice");
160
161   surf_network_model = new simgrid::kernel::resource::NetworkNS3Model();
162 }
163
164 static simgrid::config::Flag<std::string>
165     ns3_tcp_model("ns3/TcpModel", "The ns-3 tcp model can be : NewReno or Reno or Tahoe", "default");
166
167 namespace simgrid {
168 namespace kernel {
169 namespace resource {
170
171 NetworkNS3Model::NetworkNS3Model() : NetworkModel(Model::UpdateAlgo::FULL)
172 {
173   xbt_assert(not sg_link_energy_is_inited(),
174              "LinkEnergy plugin and ns-3 network models are not compatible. Are you looking for Ecofen, maybe?");
175
176   all_existing_models.push_back(this);
177
178   NetPointNs3::EXTENSION_ID = routing::NetPoint::extension_create<NetPointNs3>();
179
180   ns3_initialize(ns3_tcp_model.get());
181
182   routing::NetPoint::on_creation.connect([](routing::NetPoint& pt) {
183     pt.extension_set<NetPointNs3>(new NetPointNs3());
184     XBT_VERB("SimGrid's %s is known as node %d within ns-3", pt.get_cname(), pt.extension<NetPointNs3>()->node_num);
185   });
186   routing::on_cluster_creation.connect(&clusterCreation_cb);
187
188   s4u::Engine::on_platform_created.connect(&postparse_cb);
189   s4u::NetZone::on_route_creation.connect(&routeCreation_cb);
190 }
191
192 NetworkNS3Model::~NetworkNS3Model() {
193   IPV4addr.clear();
194 }
195
196 LinkImpl* NetworkNS3Model::create_link(const std::string& name, const std::vector<double>& bandwidths, double latency,
197                                        s4u::Link::SharingPolicy policy)
198 {
199   XBT_INFO("create_link START");
200   xbt_assert(bandwidths.size() == 1, "ns-3 links must use only 1 bandwidth.");
201   XBT_INFO("create_link END");
202   return new LinkNS3(this, name, bandwidths[0], latency, policy);
203 }
204
205 Action* NetworkNS3Model::communicate(s4u::Host* src, s4u::Host* dst, double size, double rate)
206 {
207   xbt_assert(rate == -1,
208              "Communication over ns-3 links cannot specify a specific rate. Please use -1 as a value instead of %f.",
209              rate);
210   return new NetworkNS3Action(this, size, src, dst);
211 }
212
213 double NetworkNS3Model::next_occurring_event(double now)
214 {
215   double time_to_next_flow_completion = 0.0;
216   XBT_DEBUG("ns3_next_occurring_event");
217
218   //get the first relevant value from the running_actions list
219
220   // If there is no comms in NS-3, then we do not move it forward.
221   // We will synchronize NS-3 with SimGrid when starting a new communication.
222   // (see NetworkNS3Action::NetworkNS3Action() for more details on this point)
223   if (get_started_action_set()->empty() || now == 0.0)
224     return -1.0;
225
226   XBT_DEBUG("doing a ns3 simulation for a duration of %f", now);
227   ns3_simulator(now);
228   time_to_next_flow_completion = ns3::Simulator::Now().GetSeconds() - surf_get_clock();
229   // NS-3 stops as soon as a flow ends,
230   // but it does not process the other flows that may finish at the same (simulated) time.
231   // If another flow ends at the same time, time_to_next_flow_completion = 0
232   if(double_equals(time_to_next_flow_completion, 0, sg_surf_precision))
233     time_to_next_flow_completion = 0.0;
234
235   XBT_DEBUG("min       : %f", now);
236   XBT_DEBUG("ns3  time : %f", ns3::Simulator::Now().GetSeconds());
237   XBT_DEBUG("surf time : %f", surf_get_clock());
238   XBT_DEBUG("Next completion %f :", time_to_next_flow_completion);
239
240   return time_to_next_flow_completion;
241 }
242
243 void NetworkNS3Model::update_actions_state(double now, double delta)
244 {
245   static std::vector<std::string> socket_to_destroy;
246
247   std::string ns3_socket;
248   for (const auto& elm : flow_from_sock) {
249     ns3_socket                = elm.first;
250     SgFlow* sgFlow            = elm.second;
251     NetworkNS3Action * action = sgFlow->action_;
252     XBT_DEBUG("Processing socket %p (action %p)",sgFlow,action);
253     // Because NS3 stops as soon as a flow is finished, the other flows that ends at the same time may remains in an
254     // inconsistent state (i.e. remains_ == 0 but finished_ == false).
255     // However, SimGrid considers sometimes that an action with remains_ == 0 is finished.
256     // Thus, to avoid inconsistencies between SimGrid and NS3, set remains to 0 only when the flow is finished in NS3
257     int remains = action->get_cost() - sgFlow->sent_bytes_;
258     if(remains > 0)
259       action->set_remains(remains);
260
261     if (TRACE_is_enabled() && action->get_state() == kernel::resource::Action::State::STARTED) {
262       double data_delta_sent = sgFlow->sent_bytes_ - action->last_sent_;
263
264       std::vector<LinkImpl*> route = std::vector<LinkImpl*>();
265
266       action->get_src().route_to(&action->get_dst(), route, nullptr);
267       for (auto const& link : route)
268         instr::resource_set_utilization("LINK", "bandwidth_used", link->get_cname(), action->get_category(),
269                                         (data_delta_sent) / delta, now - delta, delta);
270
271       action->last_sent_ = sgFlow->sent_bytes_;
272     }
273
274     if(sgFlow->finished_){
275       socket_to_destroy.push_back(ns3_socket);
276       XBT_DEBUG("Destroy socket %p of action %p", ns3_socket.c_str(), action);
277       action->set_remains(0);
278       action->finish(Action::State::FINISHED);
279     } else {
280       XBT_DEBUG("Socket %p sent %u bytes out of %u (%u remaining)", ns3_socket.c_str(), sgFlow->sent_bytes_,
281                 sgFlow->total_bytes_, sgFlow->remaining_);
282     }
283   }
284
285   while (not socket_to_destroy.empty()) {
286     ns3_socket = socket_to_destroy.back();
287     socket_to_destroy.pop_back();
288     SgFlow* flow = flow_from_sock.at(ns3_socket);
289     if (XBT_LOG_ISENABLED(ns3, xbt_log_priority_debug)) {
290       XBT_DEBUG("Removing socket %p of action %p", ns3_socket.c_str(), flow->action_);
291     }
292     delete flow;
293     flow_from_sock.erase(ns3_socket);
294     sink_from_sock.erase(ns3_socket);
295   }
296 }
297
298 /************
299  * Resource *
300  ************/
301
302 LinkNS3::LinkNS3(NetworkNS3Model* model, const std::string& name, double bandwidth, double latency,
303                  s4u::Link::SharingPolicy policy)
304     : LinkImpl(model, name, nullptr)
305 {
306   XBT_INFO("LinkNS3 START");
307   bandwidth_.peak = bandwidth;
308   latency_.peak   = latency;
309   sharing_policy_ = policy;
310
311   /* If wifi, create the wifizone now. If not, don't do anything: the links will be created in routeCreate_cb */
312   if (policy == s4u::Link::SharingPolicy::WIFI) {
313         ns3::NodeContainer ap_nodes;
314         ap_nodes.Create(1);
315
316         phy.SetChannel (channel.Create ());
317
318         wifi.SetRemoteStationManager ("ns3::AarfWifiManager");
319
320         mac.SetType ("ns3::ApWifiMac");
321         ns3::NetDeviceContainer apDevices;
322         apDevices = wifi.Install (phy, mac, ap_nodes);
323
324         mobility.SetMobilityModel ("ns3::ConstantPositionMobilityModel");
325         mobility.Install (ap_nodes);
326
327         stack.Install(ap_nodes);
328
329         ns3::Ipv4AddressHelper address;
330         std::string addr = simgrid::xbt::string_printf("%d.%d.0.0", number_of_networks, number_of_links);
331         address.SetBase(addr.c_str(), "255.255.0.0");
332         interfaces.Add(address.Assign(apDevices));
333   }
334
335   s4u::Link::on_creation(*this->get_iface());
336   XBT_INFO("LinkNS3 END");
337 }
338
339 LinkNS3::~LinkNS3() = default;
340
341 void LinkNS3::apply_event(profile::Event*, double)
342 {
343   THROW_UNIMPLEMENTED;
344 }
345 void LinkNS3::set_bandwidth_profile(profile::Profile*)
346 {
347   xbt_die("The ns-3 network model doesn't support bandwidth profiles");
348 }
349 void LinkNS3::set_latency_profile(profile::Profile*)
350 {
351   xbt_die("The ns-3 network model doesn't support latency profiles");
352 }
353
354 /**********
355  * Action *
356  **********/
357
358 NetworkNS3Action::NetworkNS3Action(Model* model, double totalBytes, s4u::Host* src, s4u::Host* dst)
359     : NetworkAction(model, *src, *dst, totalBytes, false)
360 {
361   // If there is no other started actions, we need to move NS-3 forward to be sync with SimGrid
362   if (model->get_started_action_set()->size()==1){
363     while(double_positive(surf_get_clock() - ns3::Simulator::Now().GetSeconds(), sg_surf_precision)){
364       XBT_DEBUG("Synchronizing NS-3 (time %f) with SimGrid (time %f)", ns3::Simulator::Now().GetSeconds(), surf_get_clock());
365       ns3_simulator(surf_get_clock() - ns3::Simulator::Now().GetSeconds());
366     }
367   }
368
369   XBT_DEBUG("Communicate from %s to %s", src->get_cname(), dst->get_cname());
370
371   static int port_number = 1025; // Port number is limited from 1025 to 65 000
372
373   unsigned int node1 = src->get_netpoint()->extension<NetPointNs3>()->node_num;
374   unsigned int node2 = dst->get_netpoint()->extension<NetPointNs3>()->node_num;
375
376   ns3::Ptr<ns3::Node> src_node = src->get_netpoint()->extension<NetPointNs3>()->ns3_node_;
377   ns3::Ptr<ns3::Node> dst_node = dst->get_netpoint()->extension<NetPointNs3>()->ns3_node_;
378
379   xbt_assert(node2 < IPV4addr.size(), "Element %s is unknown to ns-3. Is it connected to any one-hop link?",
380              dst->get_netpoint()->get_cname());
381   std::string& addr = IPV4addr[node2];
382   xbt_assert(not addr.empty(), "Element %s is unknown to ns-3. Is it connected to any one-hop link?",
383              dst->get_netpoint()->get_cname());
384
385   XBT_DEBUG("ns3: Create flow of %.0f Bytes from %u to %u with Interface %s", totalBytes, node1, node2, addr.c_str());
386   ns3::PacketSinkHelper sink("ns3::TcpSocketFactory", ns3::InetSocketAddress(ns3::Ipv4Address::GetAny(), port_number));
387   ns3::ApplicationContainer apps = sink.Install(dst_node);
388
389   ns3::Ptr<ns3::Socket> sock = ns3::Socket::CreateSocket(src_node, ns3::TcpSocketFactory::GetTypeId());
390
391   flow_from_sock.insert({transform_socket_ptr(sock), new SgFlow(totalBytes, this)});
392   sink_from_sock.insert({transform_socket_ptr(sock), apps});
393
394   sock->Bind(ns3::InetSocketAddress(port_number));
395
396   ns3::Simulator::ScheduleNow(&start_flow, sock, addr.c_str(), port_number);
397
398   port_number++;
399   if(port_number > 65000){
400     port_number = 1025;
401     XBT_WARN("Too many connections! Port number is saturated. Trying to use the oldest ports.");
402   }
403   xbt_assert(port_number <= 65000, "Too many connections! Port number is saturated.");
404
405   s4u::Link::on_communicate(*this);
406 }
407
408 void NetworkNS3Action::suspend() {
409   THROW_UNIMPLEMENTED;
410 }
411
412 void NetworkNS3Action::resume() {
413   THROW_UNIMPLEMENTED;
414 }
415
416 std::list<LinkImpl*> NetworkNS3Action::get_links() const
417 {
418   THROW_UNIMPLEMENTED;
419 }
420 void NetworkNS3Action::update_remains_lazy(double /*now*/)
421 {
422   THROW_IMPOSSIBLE;
423 }
424
425 } // namespace resource
426 } // namespace kernel
427 } // namespace simgrid
428
429 void ns3_simulator(double maxSeconds)
430 {
431   ns3::EventId id;
432   if (maxSeconds > 0.0) // If there is a maximum amount of time to run
433     id = ns3::Simulator::Schedule(ns3::Seconds(maxSeconds), &ns3::Simulator::Stop);
434
435   XBT_DEBUG("Start simulator for at most %fs (current time: %f)", maxSeconds, surf_get_clock());
436   ns3::Simulator::Run ();
437   XBT_DEBUG("Simulator stopped at %fs", ns3::Simulator::Now().GetSeconds());
438
439   if(maxSeconds > 0.0)
440     id.Cancel();
441 }
442
443 // initialize the ns-3 interface and environment
444 void ns3_initialize(std::string TcpProtocol)
445 {
446   //  tcpModel are:
447   //  "ns3::TcpNewReno"
448   //  "ns3::TcpReno"
449   //  "ns3::TcpTahoe"
450
451   ns3::Config::SetDefault ("ns3::TcpSocket::SegmentSize", ns3::UintegerValue (1000));
452   ns3::Config::SetDefault ("ns3::TcpSocket::DelAckCount", ns3::UintegerValue (1));
453   ns3::Config::SetDefault ("ns3::TcpSocketBase::Timestamp", ns3::BooleanValue (false));
454
455   if (TcpProtocol == "default") {
456     /* nothing to do */
457
458   } else if (TcpProtocol == "Reno") {
459     XBT_INFO("Switching Tcp protocol to '%s'", TcpProtocol.c_str());
460     ns3::Config::SetDefault ("ns3::TcpL4Protocol::SocketType", ns3::StringValue("ns3::TcpReno"));
461
462   } else if (TcpProtocol == "NewReno") {
463     XBT_INFO("Switching Tcp protocol to '%s'", TcpProtocol.c_str());
464     ns3::Config::SetDefault ("ns3::TcpL4Protocol::SocketType", ns3::StringValue("ns3::TcpNewReno"));
465
466   } else if (TcpProtocol == "Tahoe") {
467     XBT_INFO("Switching Tcp protocol to '%s'", TcpProtocol.c_str());
468     ns3::Config::SetDefault ("ns3::TcpL4Protocol::SocketType", ns3::StringValue("ns3::TcpTahoe"));
469
470   } else {
471     xbt_die("The ns3/TcpModel must be: NewReno or Reno or Tahoe");
472   }
473 }
474
475 void ns3_add_cluster(const char* /*id*/, double bw, double lat)
476 {
477   ns3::NodeContainer Nodes;
478
479   for (unsigned int i = number_of_clusters_nodes; i < Cluster_nodes.GetN(); i++) {
480     Nodes.Add(Cluster_nodes.Get(i));
481     XBT_DEBUG("Add node %u to cluster", i);
482   }
483   number_of_clusters_nodes = Cluster_nodes.GetN();
484
485   XBT_DEBUG("Add router %u to cluster", nodes.GetN() - Nodes.GetN() - 1);
486   Nodes.Add(nodes.Get(nodes.GetN()-Nodes.GetN()-1));
487
488   xbt_assert(Nodes.GetN() <= 65000, "Cluster with ns-3 is limited to 65000 nodes");
489   ns3::CsmaHelper csma;
490   csma.SetChannelAttribute("DataRate", ns3::DataRateValue(ns3::DataRate(bw * 8))); // ns-3 takes bps, but we provide Bps
491   csma.SetChannelAttribute("Delay", ns3::TimeValue(ns3::Seconds(lat)));
492   ns3::NetDeviceContainer devices = csma.Install(Nodes);
493   XBT_DEBUG("Create CSMA");
494
495   std::string addr = simgrid::xbt::string_printf("%d.%d.0.0", number_of_networks, number_of_links);
496   XBT_DEBUG("Assign IP Addresses %s to CSMA.", addr.c_str());
497   ns3::Ipv4AddressHelper ipv4;
498   ipv4.SetBase(addr.c_str(), "255.255.0.0");
499   interfaces.Add(ipv4.Assign (devices));
500
501   if(number_of_links == 255){
502     xbt_assert(number_of_networks < 255, "Number of links and networks exceed 255*255");
503     number_of_links = 1;
504     number_of_networks++;
505   }else{
506     number_of_links++;
507   }
508   XBT_DEBUG("Number of nodes in Cluster_nodes: %u", Cluster_nodes.GetN());
509 }
510
511 static std::string transformIpv4Address(ns3::Ipv4Address from)
512 {
513   std::stringstream sstream;
514   sstream << from ;
515   return sstream.str();
516 }
517
518 void ns3_add_direct_route(NetPointNs3* src, NetPointNs3* dst, double bw, double lat,
519                           simgrid::s4u::Link::SharingPolicy policy)
520 {
521   XBT_INFO("add_direct_route START");
522
523   ns3::Ipv4AddressHelper address;
524   ns3::NetDeviceContainer netA;
525
526   int srcNum = src->node_num;
527   int dstNum = dst->node_num;
528
529   ns3::Ptr<ns3::Node> a = src->ns3_node_;
530   ns3::Ptr<ns3::Node> b = dst->ns3_node_;
531
532   bool initial_ip_reserved;
533
534   if (policy == simgrid::s4u::Link::SharingPolicy::WIFI) {
535       mac.SetType ("ns3::StaWifiMac",
536                    "ActiveProbing", ns3::BooleanValue (false));
537       netA.Add(wifi.Install (phy, mac, a));
538       netA.Add(wifi.Install (phy, mac, b));
539
540       mobility.Install (a);
541       mobility.Install (b);
542
543       initial_ip_reserved = true;
544   } else {
545     ns3::PointToPointHelper pointToPoint;
546
547     XBT_DEBUG("\tAdd PTP from %d to %d bw:'%f Bps' lat:'%fs'", srcNum, dstNum, bw, lat);
548     pointToPoint.SetDeviceAttribute("DataRate",
549                                     ns3::DataRateValue(ns3::DataRate(bw * 8))); // ns-3 takes bps, but we provide Bps
550     pointToPoint.SetChannelAttribute("Delay", ns3::TimeValue(ns3::Seconds(lat)));
551
552     netA.Add(pointToPoint.Install(a, b));
553     initial_ip_reserved = false;
554   }
555
556   XBT_INFO("1");
557   std::string addr = simgrid::xbt::string_printf("%d.%d.0.10", number_of_networks, number_of_links, initial_ip_reserved);
558   address.SetBase(addr.c_str(), "255.255.0.0", "0.0.0.2");
559   XBT_DEBUG("\tInterface stack '%s'", addr.c_str());
560   XBT_INFO("1.5");
561   interfaces.Add(address.Assign (netA));
562
563   XBT_INFO("2");
564
565   if (IPV4addr.size() <= (unsigned)srcNum)
566     IPV4addr.resize(srcNum + 1);
567   IPV4addr[srcNum] = transformIpv4Address(interfaces.GetAddress(interfaces.GetN() - 2));
568
569   XBT_INFO("3");
570
571   if (IPV4addr.size() <= (unsigned)dstNum)
572     IPV4addr.resize(dstNum + 1);
573   IPV4addr[dstNum] = transformIpv4Address(interfaces.GetAddress(interfaces.GetN() - 1));
574
575   XBT_INFO("4");
576   if (number_of_links == 255){
577     xbt_assert(number_of_networks < 255, "Number of links and networks exceed 255*255");
578     number_of_links = 1;
579     number_of_networks++;
580   } else {
581     number_of_links++;
582   }
583   XBT_INFO("5");
584 }