334 lines
11 KiB
C++
334 lines
11 KiB
C++
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
|
|
/*
|
|
* Copyright (c) 2008,2009 IITP RAS
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation;
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
* Author: Kirill Andreev <andreev@iitp.ru>
|
|
*
|
|
*
|
|
* By default this script creates m_xSize * m_ySize square grid topology with
|
|
* IEEE802.11s stack installed at each node with peering management
|
|
* and HWMP protocol.
|
|
* The side of the square cell is defined by m_step parameter.
|
|
* When topology is created, UDP ping is installed to opposite corners
|
|
* by diagonals. packet size of the UDP ping and interval between two
|
|
* successive packets is configurable.
|
|
*
|
|
* m_xSize * step
|
|
* |<--------->|
|
|
* step
|
|
* |<--->|
|
|
* * --- * --- * <---Ping sink _
|
|
* | \ | / | ^
|
|
* | \ | / | |
|
|
* * --- * --- * m_ySize * step |
|
|
* | / | \ | |
|
|
* | / | \ | |
|
|
* * --- * --- * _
|
|
* ^ Ping source
|
|
*
|
|
* By varying m_xSize and m_ySize, one can configure the route that is used.
|
|
* When the inter-nodal distance is small, the source can reach the sink
|
|
* directly. When the inter-nodal distance is intermediate, the route
|
|
* selected is diagonal (two hop). When the inter-nodal distance is a bit
|
|
* larger, the diagonals cannot be used and a four-hop route is selected.
|
|
* When the distance is a bit larger, the packets will fail to reach even the
|
|
* adjacent nodes.
|
|
*
|
|
* As of ns-3.36 release, with default configuration (mesh uses Wi-Fi 802.11a
|
|
* standard and the ArfWifiManager rate control by default), the maximum
|
|
* range is roughly 50m. The default step size in this program is set to 50m,
|
|
* so any mesh packets in the above diagram depiction will not be received
|
|
* successfully on the diagonal hops between two nodes but only on the
|
|
* horizontal and vertical hops. If the step size is reduced to 35m, then
|
|
* the shortest path will be on the diagonal hops. If the step size is reduced
|
|
* to 17m or less, then the source will be able to reach the sink directly
|
|
* without any mesh hops (for the default 3x3 mesh depicted above).
|
|
*
|
|
* The position allocator will lay out the nodes in the following order
|
|
* (corresponding to Node ID and to the diagram above):
|
|
*
|
|
* 6 - 7 - 8
|
|
* | | |
|
|
* 3 - 4 - 5
|
|
* | | |
|
|
* 0 - 1 - 2
|
|
*
|
|
* See also MeshTest::Configure to read more about configurable
|
|
* parameters.
|
|
*/
|
|
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <fstream>
|
|
#include "ns3/core-module.h"
|
|
#include "ns3/internet-module.h"
|
|
#include "ns3/network-module.h"
|
|
#include "ns3/applications-module.h"
|
|
#include "ns3/mesh-module.h"
|
|
#include "ns3/mobility-module.h"
|
|
#include "ns3/mesh-helper.h"
|
|
#include "ns3/yans-wifi-helper.h"
|
|
|
|
using namespace ns3;
|
|
|
|
NS_LOG_COMPONENT_DEFINE ("MeshExample");
|
|
|
|
// Declaring these variables outside of main() for use in trace sinks
|
|
uint32_t g_udpTxCount = 0;
|
|
uint32_t g_udpRxCount = 0;
|
|
|
|
void
|
|
TxTrace (Ptr<const Packet> p)
|
|
{
|
|
NS_LOG_DEBUG ("Sent " << p->GetSize () << " bytes");
|
|
g_udpTxCount++;
|
|
}
|
|
|
|
void
|
|
RxTrace (Ptr<const Packet> p)
|
|
{
|
|
NS_LOG_DEBUG ("Received " << p->GetSize () << " bytes");
|
|
g_udpRxCount++;
|
|
}
|
|
|
|
|
|
/**
|
|
* \ingroup mesh
|
|
* \brief MeshTest class
|
|
*/
|
|
class MeshTest
|
|
{
|
|
public:
|
|
/// Init test
|
|
MeshTest ();
|
|
/**
|
|
* Configure test from command line arguments
|
|
*
|
|
* \param argc command line argument count
|
|
* \param argv command line arguments
|
|
*/
|
|
void Configure (int argc, char ** argv);
|
|
/**
|
|
* Run test
|
|
* \returns the test status
|
|
*/
|
|
int Run ();
|
|
private:
|
|
int m_xSize; ///< X size
|
|
int m_ySize; ///< Y size
|
|
double m_step; ///< step
|
|
double m_randomStart; ///< random start
|
|
double m_totalTime; ///< total time
|
|
double m_packetInterval; ///< packet interval
|
|
uint16_t m_packetSize; ///< packet size
|
|
uint32_t m_nIfaces; ///< number interfaces
|
|
bool m_chan; ///< channel
|
|
bool m_pcap; ///< PCAP
|
|
bool m_ascii; ///< ASCII
|
|
std::string m_stack; ///< stack
|
|
std::string m_root; ///< root
|
|
/// List of network nodes
|
|
NodeContainer nodes;
|
|
/// List of all mesh point devices
|
|
NetDeviceContainer meshDevices;
|
|
/// Addresses of interfaces:
|
|
Ipv4InterfaceContainer interfaces;
|
|
/// MeshHelper. Report is not static methods
|
|
MeshHelper mesh;
|
|
private:
|
|
/// Create nodes and setup their mobility
|
|
void CreateNodes ();
|
|
/// Install internet m_stack on nodes
|
|
void InstallInternetStack ();
|
|
/// Install applications
|
|
void InstallApplication ();
|
|
/// Print mesh devices diagnostics
|
|
void Report ();
|
|
};
|
|
MeshTest::MeshTest () :
|
|
m_xSize (3),
|
|
m_ySize (3),
|
|
m_step (50.0),
|
|
m_randomStart (0.1),
|
|
m_totalTime (100.0),
|
|
m_packetInterval (1),
|
|
m_packetSize (1024),
|
|
m_nIfaces (1),
|
|
m_chan (true),
|
|
m_pcap (false),
|
|
m_ascii (false),
|
|
m_stack ("ns3::Dot11sStack"),
|
|
m_root ("ff:ff:ff:ff:ff:ff")
|
|
{
|
|
}
|
|
void
|
|
MeshTest::Configure (int argc, char *argv[])
|
|
{
|
|
CommandLine cmd (__FILE__);
|
|
cmd.AddValue ("x-size", "Number of nodes in a row grid", m_xSize);
|
|
cmd.AddValue ("y-size", "Number of rows in a grid", m_ySize);
|
|
cmd.AddValue ("step", "Size of edge in our grid (meters)", m_step);
|
|
// Avoid starting all mesh nodes at the same time (beacons may collide)
|
|
cmd.AddValue ("start", "Maximum random start delay for beacon jitter (sec)", m_randomStart);
|
|
cmd.AddValue ("time", "Simulation time (sec)", m_totalTime);
|
|
cmd.AddValue ("packet-interval", "Interval between packets in UDP ping (sec)", m_packetInterval);
|
|
cmd.AddValue ("packet-size", "Size of packets in UDP ping (bytes)", m_packetSize);
|
|
cmd.AddValue ("interfaces", "Number of radio interfaces used by each mesh point", m_nIfaces);
|
|
cmd.AddValue ("channels", "Use different frequency channels for different interfaces", m_chan);
|
|
cmd.AddValue ("pcap", "Enable PCAP traces on interfaces", m_pcap);
|
|
cmd.AddValue ("ascii", "Enable Ascii traces on interfaces", m_ascii);
|
|
cmd.AddValue ("stack", "Type of protocol stack. ns3::Dot11sStack by default", m_stack);
|
|
cmd.AddValue ("root", "Mac address of root mesh point in HWMP", m_root);
|
|
|
|
cmd.Parse (argc, argv);
|
|
NS_LOG_DEBUG ("Grid:" << m_xSize << "*" << m_ySize);
|
|
NS_LOG_DEBUG ("Simulation time: " << m_totalTime << " s");
|
|
if (m_ascii)
|
|
{
|
|
PacketMetadata::Enable ();
|
|
}
|
|
}
|
|
void
|
|
MeshTest::CreateNodes ()
|
|
{
|
|
/*
|
|
* Create m_ySize*m_xSize stations to form a grid topology
|
|
*/
|
|
nodes.Create (m_ySize*m_xSize);
|
|
// Configure YansWifiChannel
|
|
YansWifiPhyHelper wifiPhy;
|
|
YansWifiChannelHelper wifiChannel = YansWifiChannelHelper::Default ();
|
|
wifiPhy.SetChannel (wifiChannel.Create ());
|
|
/*
|
|
* Create mesh helper and set stack installer to it
|
|
* Stack installer creates all needed protocols and install them to
|
|
* mesh point device
|
|
*/
|
|
mesh = MeshHelper::Default ();
|
|
if (!Mac48Address (m_root.c_str ()).IsBroadcast ())
|
|
{
|
|
mesh.SetStackInstaller (m_stack, "Root", Mac48AddressValue (Mac48Address (m_root.c_str ())));
|
|
}
|
|
else
|
|
{
|
|
//If root is not set, we do not use "Root" attribute, because it
|
|
//is specified only for 11s
|
|
mesh.SetStackInstaller (m_stack);
|
|
}
|
|
if (m_chan)
|
|
{
|
|
mesh.SetSpreadInterfaceChannels (MeshHelper::SPREAD_CHANNELS);
|
|
}
|
|
else
|
|
{
|
|
mesh.SetSpreadInterfaceChannels (MeshHelper::ZERO_CHANNEL);
|
|
}
|
|
mesh.SetMacType ("RandomStart", TimeValue (Seconds (m_randomStart)));
|
|
// Set number of interfaces - default is single-interface mesh point
|
|
mesh.SetNumberOfInterfaces (m_nIfaces);
|
|
// Install protocols and return container if MeshPointDevices
|
|
meshDevices = mesh.Install (wifiPhy, nodes);
|
|
// AssignStreams can optionally be used to control random variable streams
|
|
mesh.AssignStreams (meshDevices, 0);
|
|
// Setup mobility - static grid topology
|
|
MobilityHelper mobility;
|
|
mobility.SetPositionAllocator ("ns3::GridPositionAllocator",
|
|
"MinX", DoubleValue (0.0),
|
|
"MinY", DoubleValue (0.0),
|
|
"DeltaX", DoubleValue (m_step),
|
|
"DeltaY", DoubleValue (m_step),
|
|
"GridWidth", UintegerValue (m_xSize),
|
|
"LayoutType", StringValue ("RowFirst"));
|
|
mobility.SetMobilityModel ("ns3::ConstantPositionMobilityModel");
|
|
mobility.Install (nodes);
|
|
if (m_pcap)
|
|
wifiPhy.EnablePcapAll (std::string ("mp"));
|
|
if (m_ascii)
|
|
{
|
|
AsciiTraceHelper ascii;
|
|
wifiPhy.EnableAsciiAll (ascii.CreateFileStream ("mesh.tr"));
|
|
}
|
|
}
|
|
void
|
|
MeshTest::InstallInternetStack ()
|
|
{
|
|
InternetStackHelper internetStack;
|
|
internetStack.Install (nodes);
|
|
Ipv4AddressHelper address;
|
|
address.SetBase ("10.1.1.0", "255.255.255.0");
|
|
interfaces = address.Assign (meshDevices);
|
|
}
|
|
void
|
|
MeshTest::InstallApplication ()
|
|
{
|
|
uint16_t portNumber = 9;
|
|
UdpEchoServerHelper echoServer (portNumber);
|
|
uint16_t sinkNodeId = m_xSize * m_ySize - 1;
|
|
ApplicationContainer serverApps = echoServer.Install (nodes.Get (sinkNodeId));
|
|
serverApps.Start (Seconds (1.0));
|
|
serverApps.Stop (Seconds (m_totalTime + 1));
|
|
UdpEchoClientHelper echoClient (interfaces.GetAddress (sinkNodeId), portNumber);
|
|
echoClient.SetAttribute ("MaxPackets", UintegerValue ((uint32_t)(m_totalTime*(1/m_packetInterval))));
|
|
echoClient.SetAttribute ("Interval", TimeValue (Seconds (m_packetInterval)));
|
|
echoClient.SetAttribute ("PacketSize", UintegerValue (m_packetSize));
|
|
ApplicationContainer clientApps = echoClient.Install (nodes.Get (0));
|
|
Ptr<UdpEchoClient> app = clientApps.Get (0)->GetObject<UdpEchoClient> ();
|
|
app->TraceConnectWithoutContext ("Tx", MakeCallback (&TxTrace));
|
|
app->TraceConnectWithoutContext ("Rx", MakeCallback (&RxTrace));
|
|
clientApps.Start (Seconds (1.0));
|
|
clientApps.Stop (Seconds (m_totalTime + 1.5));
|
|
}
|
|
int
|
|
MeshTest::Run ()
|
|
{
|
|
CreateNodes ();
|
|
InstallInternetStack ();
|
|
InstallApplication ();
|
|
Simulator::Schedule (Seconds (m_totalTime), &MeshTest::Report, this);
|
|
Simulator::Stop (Seconds (m_totalTime + 2));
|
|
Simulator::Run ();
|
|
Simulator::Destroy ();
|
|
std::cout << "UDP echo packets sent: " << g_udpTxCount << " received: " << g_udpRxCount << std::endl;
|
|
return 0;
|
|
}
|
|
void
|
|
MeshTest::Report ()
|
|
{
|
|
unsigned n (0);
|
|
for (NetDeviceContainer::Iterator i = meshDevices.Begin (); i != meshDevices.End (); ++i, ++n)
|
|
{
|
|
std::ostringstream os;
|
|
os << "mp-report-" << n << ".xml";
|
|
std::cerr << "Printing mesh point device #" << n << " diagnostics to " << os.str () << "\n";
|
|
std::ofstream of;
|
|
of.open (os.str ().c_str ());
|
|
if (!of.is_open ())
|
|
{
|
|
std::cerr << "Error: Can't open file " << os.str () << "\n";
|
|
return;
|
|
}
|
|
mesh.Report (*i, of);
|
|
of.close ();
|
|
}
|
|
}
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
MeshTest t;
|
|
t.Configure (argc, argv);
|
|
return t.Run ();
|
|
}
|