21 #include "ns3/applications-module.h"
22 #include "ns3/core-module.h"
23 #include "ns3/csma-net-device.h"
24 #include "ns3/global-router-interface.h"
25 #include "ns3/internet-module.h"
26 #include "ns3/ipv4-global-routing-helper.h"
27 #include "ns3/ipv4-global-routing.h"
28 #include "ns3/ipv4-list-routing-helper.h"
29 #include "ns3/ipv4-list-routing.h"
30 #include "ns3/ipv4-routing-table-entry.h"
31 #include "ns3/ipv4-static-routing-helper.h"
32 #include "ns3/ipv4-static-routing.h"
33 #include "ns3/network-module.h"
34 #include "ns3/point-to-point-module.h"
47 main(
int argc,
char* argv[])
52 cmd.Parse(argc, argv);
69 staticonly.
Add(staticRouting, 0);
70 internet.SetRoutingHelper(staticonly);
93 ipv4.SetBase(
"10.1.1.0",
"255.255.255.252");
96 ipv4.SetBase(
"10.1.1.4",
"255.255.255.252");
103 int32_t ifIndexA = ipv4A->AddInterface(deviceA);
104 int32_t ifIndexC = ipv4C->AddInterface(deviceC);
108 ipv4A->AddAddress(ifIndexA, ifInAddrA);
109 ipv4A->SetMetric(ifIndexA, 1);
110 ipv4A->SetUp(ifIndexA);
114 ipv4C->AddAddress(ifIndexC, ifInAddrC);
115 ipv4C->SetMetric(ifIndexC, 1);
116 ipv4C->SetUp(ifIndexC);
125 globalRouterB->InjectRoute(
"10.1.1.4",
"255.255.255.252");
127 globalRouterB->InjectRoute(
"192.168.1.1",
"255.255.255.255");
149 apps =
sink.Install(nC);
155 p2p.EnablePcapAll(
"global-routing-injection32");
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.
An interface aggregated to a node to provide global routing info.
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()
static void PopulateRoutingTables()
Build a routing database and initialize the routing tables of the nodes in the simulation.
static void RecomputeRoutingTables()
Remove all routes that were previously installed in a prior call to either PopulateRoutingTables() or...
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.
Helper class that adds ns3::Ipv4ListRouting objects.
void Add(const Ipv4RoutingHelper &routing, int16_t priority)
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.