21 #include "ns3/applications-module.h"
22 #include "ns3/core-module.h"
23 #include "ns3/csma-module.h"
24 #include "ns3/internet-module.h"
25 #include "ns3/ipv4-static-routing-helper.h"
26 #include "ns3/network-module.h"
27 #include "ns3/point-to-point-module.h"
39 main(
int argc,
char* argv[])
44 cmd.Parse(argc, argv);
79 ipv4.SetBase(
"10.1.1.0",
"255.255.255.252");
82 ipv4.SetBase(
"10.1.1.4",
"255.255.255.252");
89 int32_t ifIndexA = ipv4A->AddInterface(deviceA);
90 int32_t ifIndexC = ipv4C->AddInterface(deviceC);
94 ipv4A->AddAddress(ifIndexA, ifInAddrA);
95 ipv4A->SetMetric(ifIndexA, 1);
96 ipv4A->SetUp(ifIndexA);
100 ipv4C->AddAddress(ifIndexC, ifInAddrC);
101 ipv4C->SetMetric(ifIndexC, 1);
102 ipv4C->SetUp(ifIndexC);
126 apps =
sink.Install(nC);
132 p2p.EnablePcapAll(
"static-routing-slash32");
a polymophic address class
holds a vector of ns3::Application pointers.
void Start(Time start) const
Start all of the Applications in this container at the start time given as a parameter.
void Stop(Time stop) const
Arrange for all of the Applications in this container to Stop() at the Time given as a parameter.
Manage ASCII trace files for device models.
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.
A FIFO packet queue that drops tail-end packets on overflow.
aggregate IP/TCP/UDP functionality to existing Nodes.
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.
static Ipv4Address GetAny()
Access to the IPv4 forwarding table, interfaces, and configuration.
a class to store IPv4 address information on an interface
Ipv4Address GetLocal() const
Get the local address.
holds a vector of std::pair of Ptr<Ipv4> and interface index.
a class to represent an Ipv4 address mask
Helper class that adds ns3::Ipv4StaticRouting objects.
Ptr< Ipv4StaticRouting > GetStaticRouting(Ptr< Ipv4 > ipv4) const
Try and find the static routing protocol as either the main routing protocol or in the list of routin...
static Mac48Address Allocate()
Allocate a new Mac48Address.
holds a vector of ns3::NetDevice pointers
keep track of a set of node pointers.
uint32_t AddDevice(Ptr< NetDevice > device)
Associate a NetDevice to this node.
Ptr< T > GetObject() const
Get a pointer to the requested aggregated Object.
A helper to make it easier to instantiate an ns3::OnOffApplication on a set of nodes.
A helper to make it easier to instantiate an ns3::PacketSinkApplication on a set of nodes.
Build a set of PointToPointNetDevice objects.
static void Destroy()
Execute the events scheduled with ScheduleDestroy().
static void Run()
Run the simulation.
Hold variables of type string.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
void(* DataRate)(DataRate oldValue, DataRate newValue)
TracedValue callback signature for DataRate.
Ptr< T > CreateObject(Args &&... args)
Create an object by type, with varying number of constructor parameters.
Time Seconds(double value)
Construct a Time in the indicated unit.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Ptr< PacketSink > sink
Pointer to the packet sink application.