|
A Discrete-Event Network Simulator
|
API
|
Go to the documentation of this file.
28 #include "ns3/core-module.h"
29 #include "ns3/network-module.h"
30 #include "ns3/internet-module.h"
31 #include "ns3/applications-module.h"
32 #include "ns3/wifi-module.h"
33 #include "ns3/click-internet-stack-helper.h"
35 #include "ns3/mobility-helper.h"
44 int main (
int argc,
char *argv[])
48 std::string clickConfigFolder =
"src/click/examples";
51 cmd.AddValue (
"clickConfigFolder",
"Base folder for click configuration files", clickConfigFolder);
52 cmd.Parse (argc, argv);
60 std::string phyMode (
"DsssRate1Mbps");
89 wifi.SetRemoteStationManager (
"ns3::ConstantRateWifiManager",
93 wifiMac.
SetType (
"ns3::AdhocWifiMac");
99 positionAlloc->
Add (Vector (0.0, 0.0, 0.0));
100 positionAlloc->
Add (Vector (5.0, 0.0, 0.0));
101 mobility.SetPositionAllocator (positionAlloc);
102 mobility.SetMobilityModel (
"ns3::ConstantPositionMobilityModel");
110 ClickInternetStackHelper clickinternet;
111 clickinternet.SetClickFile (wifiNodes.
Get (0), clickConfigFolder +
"/nsclick-wifi-single-interface.click");
112 clickinternet.SetRoutingTableElement (wifiNodes.
Get (0),
"rt");
113 clickinternet.Install (wifiNodes.
Get (0));
117 ipv4.
SetBase (
"172.16.1.0",
"255.255.255.0");
118 ipv4.
Assign (wifiDevices);
128 onOffHelper.SetAttribute (
"OnTime",
StringValue (
"ns3::ConstantRandomVariable[Constant=1]"));
129 onOffHelper.SetAttribute (
"OffTime",
StringValue (
"ns3::ConstantRandomVariable[Constant=0]"));
134 onOffHelper.SetAttribute (
"Remote", remoteAddress);
135 appcont.
Add (onOffHelper.Install (wifiNodes.
Get (0)));
141 wifiPhy.
EnablePcap (
"nsclick-raw-wlan", wifiDevices);
149 NS_FATAL_ERROR (
"Can't use ns-3-click without NSCLICK compiled in");
holds a vector of ns3::NetDevice pointers
Make it easy to create and manage PHY objects for the YANS model.
Parse command-line arguments.
void Add(Vector v)
Add a position to the list of positions.
void SetPropagationDelay(std::string name, std::string n0="", const AttributeValue &v0=EmptyAttributeValue(), std::string n1="", const AttributeValue &v1=EmptyAttributeValue(), std::string n2="", const AttributeValue &v2=EmptyAttributeValue(), std::string n3="", const AttributeValue &v3=EmptyAttributeValue(), std::string n4="", const AttributeValue &v4=EmptyAttributeValue(), std::string n5="", const AttributeValue &v5=EmptyAttributeValue(), std::string n6="", const AttributeValue &v6=EmptyAttributeValue(), std::string n7="", const AttributeValue &v7=EmptyAttributeValue())
void EnablePcap(std::string prefix, Ptr< NetDevice > nd, bool promiscuous=false, bool explicitFilename=false)
Enable pcap output the indicated net device.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void Stop(Time stop)
Arrange for all of the Applications in this container to Stop() at the Time given as a parameter.
helps to create WifiNetDevice objects
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
AttributeValue implementation for Address.
void AddPropagationLoss(std::string name, std::string n0="", const AttributeValue &v0=EmptyAttributeValue(), std::string n1="", const AttributeValue &v1=EmptyAttributeValue(), std::string n2="", const AttributeValue &v2=EmptyAttributeValue(), std::string n3="", const AttributeValue &v3=EmptyAttributeValue(), std::string n4="", const AttributeValue &v4=EmptyAttributeValue(), std::string n5="", const AttributeValue &v5=EmptyAttributeValue(), std::string n6="", const AttributeValue &v6=EmptyAttributeValue(), std::string n7="", const AttributeValue &v7=EmptyAttributeValue())
Ipv4 addresses are stored in host order in this class.
@ DLT_IEEE802_11_RADIO
Include Radiotap link layer information.
void SetChannel(Ptr< YansWifiChannel > channel)
This class can be used to hold variables of floating point type such as 'double' or 'float'.
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
void Add(ApplicationContainer other)
Append the contents of another ApplicationContainer to the end of this container.
void SetBase(Ipv4Address network, Ipv4Mask mask, Ipv4Address base="0.0.0.1")
Set the base network number, network mask and base address.
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
Ptr< YansWifiChannel > Create(void) const
static void Stop(void)
Tell the Simulator the calling event should be the last one executed.
a polymophic address class
void Install(std::string nodeName) const
Aggregate implementations of the ns3::Ipv4, ns3::Ipv6, ns3::Udp, and ns3::Tcp classes onto the provid...
A helper to make it easier to instantiate an ns3::OnOffApplication on a set of nodes.
void ReceivePacket(Ptr< Socket > socket)
Ptr< Node > Get(uint32_t i) const
Get the Ptr<Node> stored in this container at a given index.
#define NS_LOG_UNCOND(msg)
Output the requested message unconditionally.
static void Run(void)
Run the simulation.
Hold variables of type string.
A helper to make it easier to instantiate an ns3::PacketSinkApplication on a set of nodes.
void SetPcapDataLinkType(SupportedPcapDataLinkTypes dlt)
Set the data link type of PCAP traces to be used.
static Ipv4Address GetAny(void)
void Start(Time start)
Arrange for all of the Applications in this container to Start() at the Time given as a parameter.
Time Seconds(double value)
Construct a Time in the indicated unit.
Ipv4InterfaceContainer Assign(const NetDeviceContainer &c)
Assign IP addresses to the net devices specified in the container based on the current network prefix...
static void Destroy(void)
Execute the events scheduled with ScheduleDestroy().
holds a vector of ns3::Application pointers.
keep track of a set of node pointers.
void SetType(std::string type, Args &&... args)
manage and create wifi channel objects for the YANS model.
create MAC layers for a ns3::WifiNetDevice.
void SetDefault(std::string name, const AttributeValue &value)
aggregate IP/TCP/UDP functionality to existing Nodes.
void Set(std::string name, const AttributeValue &v)
Helper class used to assign positions and mobility models to nodes.