16#include "ns3/boolean.h"
17#include "ns3/bridge-helper.h"
18#include "ns3/config.h"
19#include "ns3/inet-socket-address.h"
20#include "ns3/internet-stack-helper.h"
21#include "ns3/ipv4-address-helper.h"
22#include "ns3/ipv4-global-routing-helper.h"
23#include "ns3/ipv4-global-routing.h"
24#include "ns3/ipv4-l3-protocol.h"
25#include "ns3/ipv4-packet-info-tag.h"
26#include "ns3/ipv4-routing-protocol.h"
27#include "ns3/ipv4-routing-table-entry.h"
28#include "ns3/ipv4-static-routing-helper.h"
30#include "ns3/node-container.h"
32#include "ns3/packet.h"
33#include "ns3/pointer.h"
34#include "ns3/simple-channel.h"
35#include "ns3/simple-net-device-helper.h"
36#include "ns3/simple-net-device.h"
37#include "ns3/simulator.h"
38#include "ns3/socket-factory.h"
39#include "ns3/string.h"
41#include "ns3/udp-socket-factory.h"
42#include "ns3/uinteger.h"
128 void DoRun()
override;
136 :
TestCase(
"Global routing on point-to-point link")
154 internet.SetRoutingHelper(ipv4RoutingHelper);
158 ipv4.SetBase(
"10.1.1.0",
"255.255.255.252");
179 uint32_t nRoutes0 = globalRouting0->GetNRoutes();
188 uint32_t nRoutes1 = globalRouting1->GetNRoutes();
191 route = globalRouting1->GetRoute(0);
212 void DoRun()
override;
220 :
TestCase(
"Global routing on broadcast link")
237 internet.SetRoutingHelper(ipv4RoutingHelper);
241 ipv4.SetBase(
"10.1.1.0",
"255.255.255.0");
262 uint32_t nRoutes0 = globalRouting0->GetNRoutes();
265 for (
uint32_t i = 0; i < globalRouting0->GetNRoutes(); i++)
272 uint32_t nRoutes1 = globalRouting1->GetNRoutes();
275 for (
uint32_t i = 0; i < globalRouting0->GetNRoutes(); i++)
293 void DoRun()
override;
301 :
TestCase(
"Global routing across two hops (point-to-point links)")
326 internet.SetRoutingHelper(ipv4RoutingHelper);
330 ipv4.SetBase(
"10.1.1.0",
"255.255.255.252");
332 ipv4.SetBase(
"10.1.2.0",
"255.255.255.252");
359 uint32_t nRoutes0 = globalRouting0->GetNRoutes();
370 uint32_t nRoutes1 = globalRouting1->GetNRoutes();
372 route = globalRouting1->GetRoute(0);
376 route = globalRouting1->GetRoute(1);
380 route = globalRouting1->GetRoute(2);
384 route = globalRouting1->GetRoute(3);
391 uint32_t nRoutes2 = globalRouting2->GetNRoutes();
395 route = globalRouting2->GetRoute(0);
412 void DoRun()
override;
420 :
TestCase(
"Global routing across two hops (broadcast links)")
443 internet.SetRoutingHelper(ipv4RoutingHelper);
447 ipv4.SetBase(
"10.1.1.0",
"255.255.255.0");
449 ipv4.SetBase(
"10.1.2.0",
"255.255.255.0");
475 uint32_t nRoutes0 = globalRouting0->GetNRoutes();
482 route = globalRouting0->GetRoute(1);
488 uint32_t nRoutes1 = globalRouting1->GetNRoutes();
491 route = globalRouting1->GetRoute(0);
495 route = globalRouting1->GetRoute(1);
512 void DoRun()
override;
520 :
TestCase(
"Global routing across bridging topology (bug 2102)")
543 bridgeFacingDevices.
Add(net2.
Get(0));
544 switchDevices.Add(net2.
Get(1));
551 bridgeFacingDevices.
Add(net3.
Get(1));
552 switchDevices.Add(net3.
Get(0));
562 bridge.
Install(switchNode, switchDevices);
568 internet.SetRoutingHelper(ipv4RoutingHelper);
577 address.SetBase(
"10.1.1.0",
"255.255.255.0");
580 address.SetBase(
"10.1.2.0",
"255.255.255.0");
581 address.Assign(bridgeFacingDevices);
583 address.SetBase(
"10.1.3.0",
"255.255.255.0");
584 address.Assign(net4);
617 uint32_t nRoutes0 = globalRouting0->GetNRoutes();
620 for (
uint32_t i = 0; i < globalRouting0->GetNRoutes(); i++)
622 route = globalRouting0->GetRoute(i);
630 "Error-- wrong destination");
633 "Error-- wrong gateway");
639 uint32_t nRoutes1 = globalRouting1->GetNRoutes();
642 for (
uint32_t i = 0; i < globalRouting1->GetNRoutes(); i++)
644 route = globalRouting1->GetRoute(i);
652 "Error-- wrong destination");
655 "Error-- wrong gateway");
659 NS_LOG_DEBUG(
"BridgeTest skip print out of n2 and n3, go next to node n4");
664 uint32_t nRoutes4 = globalRouting4->GetNRoutes();
667 for (
uint32_t i = 0; i < globalRouting4->GetNRoutes(); i++)
669 route = globalRouting4->GetRoute(i);
677 "Error-- wrong destination");
680 "Error-- wrong gateway");
695 void DoRun()
override;
703 :
TestCase(
"Global routing across two bridges")
727 bridgeFacingDevices.
Add(net2.
Get(0));
728 switchn2Devices.
Add(net2.
Get(1));
735 switchn2Devices.
Add(net3.
Get(0));
736 switchn3Devices.
Add(net3.
Get(1));
743 switchn3Devices.
Add(net4.
Get(0));
744 bridgeFacingDevices.
Add(net4.
Get(1));
748 bridgen2Helper.
Install(switchn2Node, switchn2Devices);
752 bridgen3Helper.
Install(switchn3Node, switchn3Devices);
758 internet.SetRoutingHelper(ipv4RoutingHelper);
767 address.SetBase(
"10.1.1.0",
"255.255.255.0");
770 address.SetBase(
"10.1.2.0",
"255.255.255.0");
771 address.Assign(bridgeFacingDevices);
797 uint32_t nRoutes0 = globalRouting0->GetNRoutes();
800 for (
uint32_t i = 0; i < globalRouting0->GetNRoutes(); i++)
802 route = globalRouting0->GetRoute(i);
810 "Error-- wrong destination");
813 "Error-- wrong gateway");
816 NS_LOG_DEBUG(
"BridgeTest skip print out of n1-n3, go next to node n4");
821 uint32_t nRoutes4 = globalRouting4->GetNRoutes();
824 for (
uint32_t i = 0; i < globalRouting4->GetNRoutes(); i++)
826 route = globalRouting4->GetRoute(i);
834 "Error-- wrong destination");
837 "Error-- wrong gateway");
872 void DoRun()
override;
886 :
TestCase(
"Dynamic global routing example"),
897 std::vector<std::pair<Ptr<Socket>,
bool>>::iterator iter;
903 iter->second =
false;
904 iter->first->Close();
905 iter->first =
nullptr;
915 while ((packet = socket->RecvFrom(from)))
917 if (packet->GetSize() == 0)
923 found = packet->PeekPacketTag(tag);
1013 ipv4.SetBase(
"10.1.1.0",
"255.255.255.0");
1016 ipv4.SetBase(
"10.1.2.0",
"255.255.255.0");
1019 ipv4.SetBase(
"10.1.3.0",
"255.255.255.0");
1022 ipv4.SetBase(
"10.250.1.0",
"255.255.255.0");
1025 ipv4.SetBase(
"172.16.1.0",
"255.255.255.0");
1037 std::pair<Ptr<Socket>,
bool> sendSockA;
1039 sendSockA.first->Bind();
1041 sendSockA.second =
true;
1046 std::pair<Ptr<Socket>,
bool> sendSockB;
1048 sendSockB.first->Bind();
1050 sendSockB.second =
true;
1059 sink2->ShutdownSend();
1061 sink2->SetRecvPktInfo(
true);
1092 "Dynamic global routing did not deliver all packets "
1096 "Dynamic global routing did not deliver all packets "
1100 "Dynamic global routing did not deliver all packets "
1104 "Dynamic global routing did not deliver all packets "
1108 "Dynamic global routing did not deliver all packets "
1112 "Dynamic global routing did not deliver all packets "
1116 "Dynamic global routing did not deliver all packets "
1120 "Dynamic global routing did not deliver all packets "
1124 "Dynamic global routing did not deliver all packets "
1128 "Dynamic global routing did not deliver all packets "
1132 "Dynamic global routing did not deliver all packets "
1136 "Dynamic global routing did not deliver all packets "
1140 "Dynamic global routing did not deliver all packets "
1144 "Dynamic global routing did not deliver all packets "
1148 "Dynamic global routing did not deliver all packets "
1185 void DoRun()
override;
1190 :
TestCase(
"Slash 32 global routing example")
1201 uint32_t availableData [[maybe_unused]] = socket->GetRxAvailable();
1205 "Received packet size is not equal to Rx buffer size");
1243 internet.Install(c);
1253 nA->AddDevice(deviceA);
1260 nC->AddDevice(deviceC);
1264 ipv4.SetBase(
"10.1.1.0",
"255.255.255.252");
1267 ipv4.SetBase(
"10.1.1.4",
"255.255.255.252");
1274 int32_t ifIndexA = ipv4A->AddInterface(deviceA);
1275 int32_t ifIndexC = ipv4C->AddInterface(deviceC);
1279 ipv4A->AddAddress(ifIndexA, ifInAddrA);
1280 ipv4A->SetMetric(ifIndexA, 1);
1281 ipv4A->SetUp(ifIndexA);
1285 ipv4C->AddAddress(ifIndexC, ifInAddrC);
1286 ipv4C->SetMetric(ifIndexC, 1);
1287 ipv4C->SetUp(ifIndexC);
1295 Ptr<Socket> rxSocket = rxSocketFactory->CreateSocket();
1302 Ptr<Socket> txSocket = txSocketFactory->CreateSocket();
1303 txSocket->SetAllowBroadcast(
true);
1311 "Static routing with /32 did not deliver all packets.");
1328 :
TestSuite(
"ipv4-global-routing", UNIT)
NodeContainer n1n2
Nodecontainer n1 + n2.
NodeContainer n0n2
Nodecontainer n0 + n2.
IPv4 GlobalRouting Bridge test.
void DoSetup() override
Implementation to do any local setup required for this TestCase.
void DoRun() override
Implementation to actually run this TestCase.
NodeContainer m_nodes
Nodes used in the test.
IPv4 Dynamic GlobalRouting test.
void DoRun() override
Implementation to actually run this TestCase.
uint16_t m_packetSize
Packet size.
~Ipv4DynamicGlobalRoutingTestCase() override
std::vector< uint8_t > m_secondInterface
Packets received on the 2nd interface at a given time.
Ipv4DynamicGlobalRoutingTestCase()
void HandleRead(Ptr< Socket > socket)
Handle an incoming packet.
uint16_t m_count
Number of packets received.
DataRate m_dataRate
Data rate.
std::vector< std::pair< Ptr< Socket >, bool > > m_sendSocks
Sending sockets.
std::vector< uint8_t > m_firstInterface
Packets received on the 1st interface at a given time.
void ShutDownSock(uint8_t index)
Shutdown a socket.
void SendData(uint8_t index)
Send some data.
IPv4 Dynamic GlobalRouting /32 test.
void ReceivePkt(Ptr< Socket > socket)
Receive a packet.
void SendData(Ptr< Socket > socket, std::string to)
Send a packet.
~Ipv4GlobalRoutingSlash32TestCase() override
void DoRun() override
Implementation to actually run this TestCase.
Ipv4GlobalRoutingSlash32TestCase()
void DoSendData(Ptr< Socket > socket, std::string to)
Send a packet.
Ptr< Packet > m_receivedPacket
number of received packets
IPv4 GlobalRouting TestSuite.
Ipv4GlobalRoutingTestSuite()
IPv4 GlobalRouting LAN test.
void DoSetup() override
Implementation to do any local setup required for this TestCase.
void DoRun() override
Implementation to actually run this TestCase.
NodeContainer m_nodes
Nodes used in the test.
IPv4 GlobalRouting Link test.
void DoRun() override
Implementation to actually run this TestCase.
NodeContainer m_nodes
Nodes used in the test.
void DoSetup() override
Implementation to do any local setup required for this TestCase.
IPv4 GlobalRouting Two bridges test.
void DoSetup() override
Implementation to do any local setup required for this TestCase.
void DoRun() override
Implementation to actually run this TestCase.
NodeContainer m_nodes
Nodes used in the test.
IPv4 GlobalRouting Two LAN test.
NodeContainer m_nodes
Nodes used in the test.
void DoRun() override
Implementation to actually run this TestCase.
void DoSetup() override
Implementation to do any local setup required for this TestCase.
IPv4 GlobalRouting Two Link test.
void DoRun() override
Implementation to actually run this TestCase.
NodeContainer m_nodes
Nodes used in the test.
void DoSetup() override
Implementation to do any local setup required for this TestCase.
a polymophic address class
AttributeValue implementation for Boolean.
Add capability to bridge multiple LAN segments (IEEE 802.1D bridging)
NetDeviceContainer Install(Ptr< Node > node, NetDeviceContainer c)
This method creates an ns3::BridgeNetDevice with the attributes configured by BridgeHelper::SetDevice...
Class for representing data rates.
uint64_t GetBitRate() const
Get the underlying bitrate.
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()
Helper class that adds ns3::Ipv4GlobalRouting objects.
static void PopulateRoutingTables()
Build a routing database and initialize the routing tables of the nodes in the simulation.
Global routing protocol for IPv4 stacks.
Access to the IPv4 forwarding table, interfaces, and configuration.
virtual void SetUp(uint32_t interface)=0
virtual void SetDown(uint32_t interface)=0
a class to store IPv4 address information on an interface
holds a vector of std::pair of Ptr<Ipv4> and interface index.
Ipv4Address GetAddress(uint32_t i, uint32_t j=0) const
Implement the IPv4 layer.
a class to represent an Ipv4 address mask
This class implements Linux struct pktinfo in order to deliver ancillary information to the socket in...
uint32_t GetRecvIf() const
Get the tag's receiving interface.
A record of an IPv4 routing table entry for Ipv4GlobalRouting and Ipv4StaticRouting.
Ipv4Address GetDest() const
Ipv4Address GetGateway() const
static Mac48Address Allocate()
Allocate a new Mac48Address.
holds a vector of ns3::NetDevice pointers
void Add(NetDeviceContainer other)
Append the contents of another NetDeviceContainer to the end of this container.
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr<NetDevice> stored in this container at a given index.
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.
Ptr< T > GetObject() const
Get a pointer to the requested aggregated Object.
uint32_t GetSize() const
Returns the the size in bytes of the packet (including the zero-filled initial payload).
Smart pointer class similar to boost::intrusive_ptr.
build a set of SimpleNetDevice objects
void SetNetDevicePointToPointMode(bool pointToPointMode)
SimpleNetDevice is Broadcast capable and ARP needing.
NetDeviceContainer Install(Ptr< Node > node) const
This method creates an ns3::SimpleChannel with the attributes configured by SimpleNetDeviceHelper::Se...
static EventId Schedule(const Time &delay, FUNC f, Ts &&... args)
Schedule an event to expire after delay.
static void Destroy()
Execute the events scheduled with ScheduleDestroy().
static void ScheduleWithContext(uint32_t context, const Time &delay, FUNC f, Ts &&... args)
Schedule an event with the given context.
static Time Now()
Return the current simulation virtual time.
static void Run()
Run the simulation.
static void Stop()
Tell the Simulator the calling event should be the last one executed.
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...
void AddTestCase(TestCase *testCase, TestDuration duration=QUICK)
Add an individual child TestCase to this test suite.
Simulation virtual time values and global simulation resolution.
double GetSeconds() const
Get an approximation of the time stored in this instance in the indicated unit.
a unique identifier for an interface.
static TypeId LookupByName(std::string name)
Get a TypeId by name.
API to create UDP socket instances.
void SetDefault(std::string name, const AttributeValue &value)
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
#define NS_TEST_ASSERT_MSG_EQ(actual, limit, msg)
Test that an actual and expected (limit) value are equal and report and abort if not.
#define NS_TEST_EXPECT_MSG_EQ(actual, limit, msg)
Test that an actual and expected (limit) value are equal and report if not.
#define NS_TEST_ASSERT_MSG_NE(actual, limit, msg)
Test that an actual and expected (limit) value are not equal and report and abort if not.
Time MicroSeconds(uint64_t value)
Construct a Time in the indicated unit.
Time Seconds(double value)
Construct a Time in the indicated unit.
static Ipv4GlobalRoutingTestSuite g_globalRoutingTestSuite
Static variable for test initialization.
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...