A Discrete-Event Network Simulator
QKDNetSim v2.0 (NS-3 v3.41) @ (+)
API
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
olsr-hna.cc
Go to the documentation of this file.
1 /*
2  *
3  * This program is free software; you can redistribute it and/or modify
4  * it under the terms of the GNU General Public License version 2 as
5  * published by the Free Software Foundation;
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * along with this program; if not, write to the Free Software
14  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15  *
16  * Authors: Lalith Suresh <suresh.lalith@gmail.com>
17  *
18  */
19 
20 //
21 // This script, adapted from examples/wireless/wifi-simple-adhoc illustrates
22 // the use of OLSR HNA.
23 //
24 // Network Topology:
25 //
26 // |------ OLSR ------| |---- non-OLSR ----|
27 // A )))) (((( B ------------------- C
28 // 10.1.1.1 10.1.1.2 172.16.1.2 172.16.1.1
29 //
30 // Node A needs to send a UDP packet to node C. This can be done only after
31 // A receives an HNA message from B, in which B announces 172.16.1.0/24
32 // as an associated network.
33 //
34 // If no HNA message is generated by B, a will not be able to form a route to C.
35 // This can be verified as follows:
36 //
37 // ./ns3 run olsr-hna
38 //
39 // There are two ways to make a node to generate HNA messages.
40 //
41 // One way is to use olsr::RoutingProtocol::SetRoutingTableAssociation ()
42 // to use which you may run:
43 //
44 // ./ns3 run "olsr-hna --assocMethod=SetRoutingTable"
45 //
46 // The other way is to use olsr::RoutingProtocol::AddHostNetworkAssociation ()
47 // to use which you may run:
48 //
49 // ./ns3 run "olsr-hna --assocMethod=AddHostNetwork"
50 //
51 
52 #include "ns3/core-module.h"
53 #include "ns3/csma-module.h"
54 #include "ns3/internet-module.h"
55 #include "ns3/mobility-module.h"
56 #include "ns3/network-module.h"
57 #include "ns3/olsr-helper.h"
58 #include "ns3/olsr-routing-protocol.h"
59 #include "ns3/yans-wifi-helper.h"
60 
61 #include <fstream>
62 #include <iostream>
63 #include <string>
64 #include <vector>
65 
66 using namespace ns3;
67 
68 NS_LOG_COMPONENT_DEFINE("OlsrHna");
69 
70 void
72 {
73  NS_LOG_UNCOND("Received one packet!");
74 }
75 
76 static void
77 GenerateTraffic(Ptr<Socket> socket, uint32_t pktSize, uint32_t pktCount, Time pktInterval)
78 {
79  if (pktCount > 0)
80  {
81  socket->Send(Create<Packet>(pktSize));
82  Simulator::Schedule(pktInterval,
84  socket,
85  pktSize,
86  pktCount - 1,
87  pktInterval);
88  }
89  else
90  {
91  socket->Close();
92  }
93 }
94 
95 int
96 main(int argc, char* argv[])
97 {
98  std::string phyMode("DsssRate1Mbps");
99  double rss = -80; // -dBm
100  uint32_t packetSize = 1000; // bytes
101  uint32_t numPackets = 1;
102  double interval = 1.0; // seconds
103  bool verbose = false;
104  std::string assocMethod("SetRoutingTable");
105  bool reverse = false;
106 
107  CommandLine cmd(__FILE__);
108 
109  cmd.AddValue("phyMode", "Wifi Phy mode", phyMode);
110  cmd.AddValue("rss", "received signal strength", rss);
111  cmd.AddValue("packetSize", "size of application packet sent", packetSize);
112  cmd.AddValue("numPackets", "number of packets generated", numPackets);
113  cmd.AddValue("interval", "interval (seconds) between packets", interval);
114  cmd.AddValue("verbose", "turn on all WifiNetDevice log components", verbose);
115  cmd.AddValue("assocMethod",
116  "How to add the host to the HNA table (SetRoutingTable, "
117  "AddHostNetwork)",
118  assocMethod);
119  cmd.AddValue("reverse", "Send packets from CSMA to WiFi if set to true", reverse);
120 
121  cmd.Parse(argc, argv);
122  // Convert to time object
123  Time interPacketInterval = Seconds(interval);
124 
125  // disable fragmentation for frames below 2200 bytes
126  Config::SetDefault("ns3::WifiRemoteStationManager::FragmentationThreshold",
127  StringValue("2200"));
128  // turn off RTS/CTS for frames below 2200 bytes
129  Config::SetDefault("ns3::WifiRemoteStationManager::RtsCtsThreshold", StringValue("2200"));
130  // Fix non-unicast data rate to be the same as that of unicast
131  Config::SetDefault("ns3::WifiRemoteStationManager::NonUnicastMode", StringValue(phyMode));
132 
133  NodeContainer olsrNodes;
134  olsrNodes.Create(2);
135 
137  csmaNodes.Create(1);
138 
139  // The below set of helpers will help us to put together the wifi NICs we want
141  if (verbose)
142  {
143  WifiHelper::EnableLogComponents(); // Turn on all Wifi logging
144  }
145  wifi.SetStandard(WIFI_STANDARD_80211b);
146 
147  YansWifiPhyHelper wifiPhy;
148  // This is one parameter that matters when using FixedRssLossModel
149  // set it to zero; otherwise, gain will be added
150  wifiPhy.Set("RxGain", DoubleValue(0));
151  // ns-3 supports RadioTap and Prism tracing extensions for 802.11b
153 
154  YansWifiChannelHelper wifiChannel;
155  wifiChannel.SetPropagationDelay("ns3::ConstantSpeedPropagationDelayModel");
156  // The below FixedRssLossModel will cause the rss to be fixed regardless
157  // of the distance between the two stations, and the transmit power
158  wifiChannel.AddPropagationLoss("ns3::FixedRssLossModel", "Rss", DoubleValue(rss));
159  wifiPhy.SetChannel(wifiChannel.Create());
160 
161  // Add a mac and disable rate control
162  WifiMacHelper wifiMac;
163  wifi.SetRemoteStationManager("ns3::ConstantRateWifiManager",
164  "DataMode",
165  StringValue(phyMode),
166  "ControlMode",
167  StringValue(phyMode));
168  // Set it to adhoc mode
169  wifiMac.SetType("ns3::AdhocWifiMac");
170  NetDeviceContainer devices = wifi.Install(wifiPhy, wifiMac, olsrNodes);
171 
173  csma.SetChannelAttribute("DataRate", DataRateValue(DataRate(5000000)));
174  csma.SetChannelAttribute("Delay", TimeValue(MilliSeconds(2)));
176  csma.Install(NodeContainer(csmaNodes.Get(0), olsrNodes.Get(1)));
177 
178  // Note that with FixedRssLossModel, the positions below are not
179  // used for received signal strength.
181  Ptr<ListPositionAllocator> positionAlloc = CreateObject<ListPositionAllocator>();
182  positionAlloc->Add(Vector(0.0, 0.0, 0.0));
183  positionAlloc->Add(Vector(5.0, 0.0, 0.0));
184  mobility.SetPositionAllocator(positionAlloc);
185  mobility.SetMobilityModel("ns3::ConstantPositionMobilityModel");
186  mobility.Install(olsrNodes);
187 
189 
190  // Specify Node B's csma device as a non-OLSR device.
191  olsr.ExcludeInterface(olsrNodes.Get(1), 2);
192 
193  Ipv4StaticRoutingHelper staticRouting;
194 
196  list.Add(staticRouting, 0);
197  list.Add(olsr, 10);
198 
199  InternetStackHelper internet_olsr;
200  internet_olsr.SetRoutingHelper(list); // has effect on the next Install ()
201  internet_olsr.Install(olsrNodes);
202 
203  InternetStackHelper internet_csma;
204  internet_csma.Install(csmaNodes);
205 
207  NS_LOG_INFO("Assign IP Addresses.");
208  ipv4.SetBase("10.1.1.0", "255.255.255.0");
209  ipv4.Assign(devices);
210 
211  ipv4.SetBase("172.16.1.0", "255.255.255.0");
212  ipv4.Assign(csmaDevices);
213 
214  TypeId tid = TypeId::LookupByName("ns3::UdpSocketFactory");
215  Ptr<Socket> recvSink;
216  if (!reverse)
217  {
218  recvSink = Socket::CreateSocket(csmaNodes.Get(0), tid);
219  }
220  else
221  {
222  recvSink = Socket::CreateSocket(olsrNodes.Get(0), tid);
223  }
225  recvSink->Bind(local);
227 
228  Ptr<Socket> source;
229  if (!reverse)
230  {
231  source = Socket::CreateSocket(olsrNodes.Get(0), tid);
232  InetSocketAddress remote = InetSocketAddress(Ipv4Address("172.16.1.1"), 80);
233  source->Connect(remote);
234  }
235  else
236  {
237  source = Socket::CreateSocket(csmaNodes.Get(0), tid);
238  InetSocketAddress remote = InetSocketAddress(Ipv4Address("10.1.1.1"), 80);
239  source->Connect(remote);
240  }
241 
242  // Obtain olsr::RoutingProtocol instance of gateway node
243  // (namely, node B) and add the required association
244  Ptr<olsr::RoutingProtocol> olsrrp_Gw = Ipv4RoutingHelper::GetRouting<olsr::RoutingProtocol>(
245  olsrNodes.Get(1)->GetObject<Ipv4>()->GetRoutingProtocol());
246 
247  if (assocMethod == "SetRoutingTable")
248  {
249  // Create a special Ipv4StaticRouting instance for RoutingTableAssociation
250  // Even the Ipv4StaticRouting instance added to list may be used
251  Ptr<Ipv4StaticRouting> hnaEntries = Create<Ipv4StaticRouting>();
252 
253  // Add the required routes into the Ipv4StaticRouting Protocol instance
254  // and have the node generate HNA messages for all these routes
255  // which are associated with non-OLSR interfaces specified above.
256  hnaEntries->AddNetworkRouteTo(Ipv4Address("172.16.1.0"),
257  Ipv4Mask("255.255.255.0"),
258  uint32_t(2),
259  uint32_t(1));
260  olsrrp_Gw->SetRoutingTableAssociation(hnaEntries);
261  }
262  else if (assocMethod == "AddHostNetwork")
263  {
264  // Specify the required associations directly.
265  olsrrp_Gw->AddHostNetworkAssociation(Ipv4Address("172.16.1.0"), Ipv4Mask("255.255.255.0"));
266  }
267  else
268  {
269  std::cout << "invalid HnaMethod option (" << assocMethod << ")" << std::endl;
270  exit(0);
271  }
272 
273  // Add a default route to the CSMA node (to enable replies)
274  Ptr<Ipv4StaticRouting> staticRoutingProt;
275  staticRoutingProt = Ipv4RoutingHelper::GetRouting<Ipv4StaticRouting>(
276  csmaNodes.Get(0)->GetObject<Ipv4>()->GetRoutingProtocol());
277  staticRoutingProt->AddNetworkRouteTo("10.1.1.0", "255.255.255.0", "172.16.1.2", 1);
278 
279  // Tracing
280  wifiPhy.EnablePcap("olsr-hna-wifi", devices);
281  csma.EnablePcap("olsr-hna-csma", csmaDevices, false);
282  AsciiTraceHelper ascii;
283  wifiPhy.EnableAsciiAll(ascii.CreateFileStream("olsr-hna-wifi.tr"));
284  csma.EnableAsciiAll(ascii.CreateFileStream("olsr-hna-csma.tr"));
285 
287  Seconds(15.0),
289  source,
290  packetSize,
291  numPackets,
292  interPacketInterval);
293 
294  Ptr<OutputStreamWrapper> routingStream =
295  Create<OutputStreamWrapper>("olsr-hna.routes", std::ios::out);
297 
298  Simulator::Stop(Seconds(20.0));
299  Simulator::Run();
301 
302  return 0;
303 }
void EnableAsciiAll(std::string prefix)
Enable ascii trace output on each device (which is of the appropriate type) in the set of all nodes c...
Manage ASCII trace files for device models.
Definition: trace-helper.h:174
Ptr< OutputStreamWrapper > CreateFileStream(std::string filename, std::ios::openmode filemode=std::ios::out)
Create and initialize an output stream object we'll use to write the traced bits.
Parse command-line arguments.
Definition: command-line.h:232
build a set of CsmaNetDevice objects
Definition: csma-helper.h:48
This class can be used to hold variables of floating point type such as 'double' or 'float'.
Definition: double.h:42
an Inet address class
aggregate IP/TCP/UDP functionality to existing Nodes.
void Install(std::string nodeName) const
Aggregate implementations of the ns3::Ipv4, ns3::Ipv6, ns3::Udp, and ns3::Tcp classes onto the provid...
void SetRoutingHelper(const Ipv4RoutingHelper &routing)
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
Ipv4 addresses are stored in host order in this class.
Definition: ipv4-address.h:42
static Ipv4Address GetAny()
Access to the IPv4 forwarding table, interfaces, and configuration.
Definition: ipv4.h:80
virtual Ptr< Ipv4RoutingProtocol > GetRoutingProtocol() const =0
Get the routing protocol to be used by this Ipv4 stack.
Helper class that adds ns3::Ipv4ListRouting objects.
a class to represent an Ipv4 address mask
Definition: ipv4-address.h:257
static void PrintRoutingTableAllAt(Time printTime, Ptr< OutputStreamWrapper > stream, Time::Unit unit=Time::S)
prints the routing tables of all nodes at a particular time.
Helper class that adds ns3::Ipv4StaticRouting objects.
Helper class used to assign positions and mobility models to nodes.
holds a vector of ns3::NetDevice pointers
keep track of a set of node pointers.
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
Ptr< Node > Get(uint32_t i) const
Get the Ptr<Node> stored in this container at a given index.
uint32_t GetId() const
Definition: node.cc:117
Ptr< T > GetObject() const
Get a pointer to the requested aggregated Object.
Definition: object.h:471
Helper class that adds OLSR routing to nodes.
Definition: olsr-helper.h:42
void EnablePcap(std::string prefix, Ptr< NetDevice > nd, bool promiscuous=false, bool explicitFilename=false)
Enable pcap output the indicated net device.
static EventId Schedule(const Time &delay, FUNC f, Ts &&... args)
Schedule an event to expire after delay.
Definition: simulator.h:571
static void Destroy()
Execute the events scheduled with ScheduleDestroy().
Definition: simulator.cc:142
static void ScheduleWithContext(uint32_t context, const Time &delay, FUNC f, Ts &&... args)
Schedule an event with the given context.
Definition: simulator.h:588
static void Run()
Run the simulation.
Definition: simulator.cc:178
static void Stop()
Tell the Simulator the calling event should be the last one executed.
Definition: simulator.cc:186
virtual int Send(Ptr< Packet > p, uint32_t flags)=0
Send data (or dummy data) to the remote host.
void SetRecvCallback(Callback< void, Ptr< Socket >> receivedData)
Notify application when new data is available to be read.
Definition: socket.cc:128
virtual int Connect(const Address &address)=0
Initiate a connection to a remote host.
virtual Ptr< Node > GetNode() const =0
Return the node this socket is associated with.
static Ptr< Socket > CreateSocket(Ptr< Node > node, TypeId tid)
This method wraps the creation of sockets that is performed on a given node by a SocketFactory specif...
Definition: socket.cc:72
virtual int Close()=0
Close a socket.
virtual int Bind(const Address &address)=0
Allocate a local endpoint for this socket.
Hold variables of type string.
Definition: string.h:56
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:105
a unique identifier for an interface.
Definition: type-id.h:59
static TypeId LookupByName(std::string name)
Get a TypeId by name.
Definition: type-id.cc:835
helps to create WifiNetDevice objects
Definition: wifi-helper.h:324
static void EnableLogComponents()
Helper to enable all WifiNetDevice log components with one statement.
Definition: wifi-helper.cc:880
create MAC layers for a ns3::WifiNetDevice.
void SetType(std::string type, Args &&... args)
void SetPcapDataLinkType(SupportedPcapDataLinkTypes dlt)
Set the data link type of PCAP traces to be used.
Definition: wifi-helper.cc:543
void Set(std::string name, const AttributeValue &v)
Definition: wifi-helper.cc:163
@ DLT_IEEE802_11_RADIO
Include Radiotap link layer information.
Definition: wifi-helper.h:178
manage and create wifi channel objects for the YANS model.
void SetPropagationDelay(std::string name, Ts &&... args)
void AddPropagationLoss(std::string name, Ts &&... args)
Ptr< YansWifiChannel > Create() const
Make it easy to create and manage PHY objects for the YANS model.
void SetChannel(Ptr< YansWifiChannel > channel)
void SetDefault(std::string name, const AttributeValue &value)
Definition: config.cc:890
#define NS_LOG_UNCOND(msg)
Output the requested message unconditionally.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:202
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Definition: log.h:275
void(* DataRate)(DataRate oldValue, DataRate newValue)
TracedValue callback signature for DataRate.
Definition: data-rate.h:327
Time Seconds(double value)
Construct a Time in the indicated unit.
Definition: nstime.h:1326
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
Definition: nstime.h:1338
@ WIFI_STANDARD_80211b
devices
Definition: first.py:42
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Callback< R, Args... > MakeCallback(R(T::*memPtr)(Args...), OBJ objPtr)
Build Callbacks for class method members which take varying numbers of arguments and potentially retu...
Definition: callback.h:704
Definition: olsr.py:1
csmaNodes
Definition: second.py:53
csma
Definition: second.py:63
cmd
Definition: second.py:40
csmaDevices
Definition: second.py:67
wifi
Definition: third.py:95
mobility
Definition: third.py:105
void ReceivePacket(Ptr< Socket > socket)
Definition: olsr-hna.cc:71
static void GenerateTraffic(Ptr< Socket > socket, uint32_t pktSize, uint32_t pktCount, Time pktInterval)
Definition: olsr-hna.cc:77
#define list
bool verbose
uint32_t pktSize
packet size used for the simulation (in bytes)
static const uint32_t packetSize
Packet size generated at the AP.