A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
test-lte-epc-e2e-data.cc
Go to the documentation of this file.
1 /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2011 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Nicola Baldo <nbaldo@cttc.es>
19  */
20 
21 
22 
23 #include "ns3/simulator.h"
24 #include "ns3/log.h"
25 #include "ns3/test.h"
26 #include "ns3/lte-helper.h"
27 #include "ns3/point-to-point-epc-helper.h"
28 #include "ns3/packet-sink-helper.h"
29 #include "ns3/udp-client-server-helper.h"
30 #include "ns3/udp-echo-helper.h"
31 #include "ns3/point-to-point-helper.h"
32 #include "ns3/internet-stack-helper.h"
33 #include "ns3/ipv4-address-helper.h"
34 #include "ns3/inet-socket-address.h"
35 #include "ns3/packet-sink.h"
36 #include <ns3/ipv4-static-routing-helper.h>
37 #include <ns3/ipv4-static-routing.h>
38 #include "ns3/boolean.h"
39 #include "ns3/uinteger.h"
40 #include "ns3/double.h"
41 #include "ns3/abort.h"
42 #include "ns3/mobility-helper.h"
43 
44 
45 
46 
47 namespace ns3 {
48 
49 
50 NS_LOG_COMPONENT_DEFINE ("LteEpcE2eData")
51  ;
52 
53 
54 
56 {
57  BearerTestData (uint32_t n, uint32_t s, double i);
58 
59  uint32_t numPkts;
60  uint32_t pktSize;
62 
65 
68 };
69 
70  BearerTestData::BearerTestData (uint32_t n, uint32_t s, double i)
71  : numPkts (n),
72  pktSize (s),
73  interPacketInterval (Seconds (i))
74 {
75 }
76 
77 struct UeTestData
78 {
79  std::vector<BearerTestData> bearers;
80 };
81 
83 {
84  std::vector<UeTestData> ues;
85 };
86 
87 
89 {
90 public:
91  LteEpcE2eDataTestCase (std::string name, std::vector<EnbTestData> v);
92  virtual ~LteEpcE2eDataTestCase ();
93 
94 private:
95  virtual void DoRun (void);
96  std::vector<EnbTestData> m_enbTestData;
97 };
98 
99 
100 LteEpcE2eDataTestCase::LteEpcE2eDataTestCase (std::string name, std::vector<EnbTestData> v)
101  : TestCase (name),
102  m_enbTestData (v)
103 {
104  NS_LOG_FUNCTION (this << name);
105 }
106 
108 {
109 }
110 
111 void
113 {
114  NS_LOG_FUNCTION (this << GetName ());
115  Config::Reset ();
116  Config::SetDefault ("ns3::LteSpectrumPhy::CtrlErrorModelEnabled", BooleanValue (false));
117  Config::SetDefault ("ns3::LteSpectrumPhy::DataErrorModelEnabled", BooleanValue (false));
118  Config::SetDefault ("ns3::LteHelper::UseIdealRrc", BooleanValue (true));
119  Ptr<LteHelper> lteHelper = CreateObject<LteHelper> ();
120  Ptr<PointToPointEpcHelper> epcHelper = CreateObject<PointToPointEpcHelper> ();
121  lteHelper->SetEpcHelper (epcHelper);
122 
123  lteHelper->SetAttribute("PathlossModel",
124  StringValue("ns3::FriisPropagationLossModel"));
125 
126  // allow jumbo frames on the S1-U link
127  epcHelper->SetAttribute ("S1uLinkMtu", UintegerValue (30000));
128 
129  Ptr<Node> pgw = epcHelper->GetPgwNode ();
130 
131  // Create a single RemoteHost
132  NodeContainer remoteHostContainer;
133  remoteHostContainer.Create (1);
134  Ptr<Node> remoteHost = remoteHostContainer.Get (0);
135  InternetStackHelper internet;
136  internet.Install (remoteHostContainer);
137 
138  // Create the internet
139  PointToPointHelper p2ph;
140  p2ph.SetDeviceAttribute ("DataRate", DataRateValue (DataRate ("100Gb/s")));
141  p2ph.SetDeviceAttribute ("Mtu", UintegerValue (30000)); // jumbo frames here as well
142  p2ph.SetChannelAttribute ("Delay", TimeValue (Seconds (0.010)));
143  NetDeviceContainer internetDevices = p2ph.Install (pgw, remoteHost);
144  Ipv4AddressHelper ipv4h;
145  ipv4h.SetBase ("1.0.0.0", "255.0.0.0");
146  Ipv4InterfaceContainer internetIpIfaces = ipv4h.Assign (internetDevices);
147  Ipv4Address remoteHostAddr = internetIpIfaces.GetAddress (1);
148 
149  // setup default gateway for the remote hosts
150  Ipv4StaticRoutingHelper ipv4RoutingHelper;
151  Ptr<Ipv4StaticRouting> remoteHostStaticRouting = ipv4RoutingHelper.GetStaticRouting (remoteHost->GetObject<Ipv4> ());
152 
153  // hardcoded UE addresses for now
154  remoteHostStaticRouting->AddNetworkRouteTo (Ipv4Address ("7.0.0.0"), Ipv4Mask ("255.255.255.0"), 1);
155 
156 
157  NodeContainer enbs;
158  enbs.Create (m_enbTestData.size ());
159  MobilityHelper enbMobility;
160  enbMobility.SetMobilityModel ("ns3::ConstantPositionMobilityModel");
161  enbMobility.SetPositionAllocator ("ns3::GridPositionAllocator",
162  "MinX", DoubleValue (0.0),
163  "MinY", DoubleValue (0.0),
164  "DeltaX", DoubleValue (10000.0),
165  "DeltaY", DoubleValue (10000.0),
166  "GridWidth", UintegerValue (3),
167  "LayoutType", StringValue ("RowFirst"));
168  enbMobility.Install (enbs);
169  NetDeviceContainer enbLteDevs = lteHelper->InstallEnbDevice (enbs);
170  NetDeviceContainer::Iterator enbLteDevIt = enbLteDevs.Begin ();
171 
172  uint16_t ulPort = 1000;
173 
174  for (std::vector<EnbTestData>::iterator enbit = m_enbTestData.begin ();
175  enbit < m_enbTestData.end ();
176  ++enbit, ++enbLteDevIt)
177  {
178  NS_ABORT_IF (enbLteDevIt == enbLteDevs.End ());
179 
180 
181 
182  NodeContainer ues;
183  ues.Create (enbit->ues.size ());
184  Vector enbPosition = (*enbLteDevIt)->GetNode ()->GetObject<MobilityModel> ()->GetPosition ();
185  MobilityHelper ueMobility;
186  ueMobility.SetPositionAllocator ("ns3::UniformDiscPositionAllocator",
187  "X", DoubleValue (enbPosition.x),
188  "Y", DoubleValue (enbPosition.y),
189  "rho", DoubleValue (100.0));
190  ueMobility.SetMobilityModel ("ns3::ConstantPositionMobilityModel");
191  ueMobility.Install (ues);
192  NetDeviceContainer ueLteDevs = lteHelper->InstallUeDevice (ues);
193 
194  // we install the IP stack on the UEs
195  InternetStackHelper internet;
196  internet.Install (ues);
197 
198  // assign IP address to UEs, and install applications
199  for (uint32_t u = 0; u < ues.GetN (); ++u)
200  {
201 
202  Ptr<Node> ue = ues.Get (u);
203  Ptr<NetDevice> ueLteDevice = ueLteDevs.Get (u);
204  Ipv4InterfaceContainer ueIpIface = epcHelper->AssignUeIpv4Address (NetDeviceContainer (ueLteDevice));
205  // set the default gateway for the UE
206  Ptr<Ipv4StaticRouting> ueStaticRouting = ipv4RoutingHelper.GetStaticRouting (ue->GetObject<Ipv4> ());
207  ueStaticRouting->SetDefaultRoute (epcHelper->GetUeDefaultGatewayAddress (), 1);
208 
209 
210  // we can now attach the UE, which will also activate the default EPS bearer
211  lteHelper->Attach (ueLteDevice, *enbLteDevIt);
212 
213 
214  uint16_t dlPort = 2000;
215  for (uint32_t b = 0; b < enbit->ues.at (u).bearers.size (); ++b)
216  {
217  BearerTestData& bearerTestData = enbit->ues.at (u).bearers.at (b);
218 
219  { // Downlink
220  ++dlPort;
221  PacketSinkHelper packetSinkHelper ("ns3::UdpSocketFactory", InetSocketAddress (Ipv4Address::GetAny (), dlPort));
222  ApplicationContainer apps = packetSinkHelper.Install (ue);
223  apps.Start (Seconds (0.04));
224  bearerTestData.dlServerApp = apps.Get (0)->GetObject<PacketSink> ();
225 
226  UdpEchoClientHelper client (ueIpIface.GetAddress (0), dlPort);
227  client.SetAttribute ("MaxPackets", UintegerValue (bearerTestData.numPkts));
228  client.SetAttribute ("Interval", TimeValue (bearerTestData.interPacketInterval));
229  client.SetAttribute ("PacketSize", UintegerValue (bearerTestData.pktSize));
230  apps = client.Install (remoteHost);
231  apps.Start (Seconds (0.04));
232  bearerTestData.dlClientApp = apps.Get (0);
233  }
234 
235  { // Uplink
236  ++ulPort;
237  PacketSinkHelper packetSinkHelper ("ns3::UdpSocketFactory", InetSocketAddress (Ipv4Address::GetAny (), ulPort));
238  ApplicationContainer apps = packetSinkHelper.Install (remoteHost);
239  apps.Start (Seconds (0.8));
240  bearerTestData.ulServerApp = apps.Get (0)->GetObject<PacketSink> ();
241 
242  UdpEchoClientHelper client (remoteHostAddr, ulPort);
243  client.SetAttribute ("MaxPackets", UintegerValue (bearerTestData.numPkts));
244  client.SetAttribute ("Interval", TimeValue (bearerTestData.interPacketInterval));
245  client.SetAttribute ("PacketSize", UintegerValue (bearerTestData.pktSize));
246  apps = client.Install (ue);
247  apps.Start (Seconds (0.8));
248  bearerTestData.ulClientApp = apps.Get (0);
249  }
250 
252 
253  Ptr<EpcTft> tft = Create<EpcTft> ();
255  dlpf.localPortStart = dlPort;
256  dlpf.localPortEnd = dlPort;
257  tft->Add (dlpf);
259  ulpf.remotePortStart = ulPort;
260  ulpf.remotePortEnd = ulPort;
261  tft->Add (ulpf);
262 
263  // all data will go over the dedicated bearer instead of the default EPS bearer
264  lteHelper->ActivateDedicatedEpsBearer (ueLteDevice, epsBearer, tft);
265  }
266  }
267 
268  }
269 
270  Config::Set ("/NodeList/*/DeviceList/*/LteEnbRrc/UeMap/*/RadioBearerMap/*/LteRlc/MaxTxBufferSize",
271  UintegerValue (2 * 1024 * 1024));
272  Config::Set ("/NodeList/*/DeviceList/*/LteUeRrc/RadioBearerMap/*/LteRlc/MaxTxBufferSize",
273  UintegerValue (2 * 1024 * 1024));
274 
275 
276  double statsStartTime = 0.040; // need to allow for RRC connection establishment + SRS
277  double statsDuration = 2.0;
278 
279  lteHelper->EnablePdcpTraces ();
280 
281  lteHelper->GetPdcpStats ()->SetAttribute ("StartTime", TimeValue (Seconds (statsStartTime)));
282  lteHelper->GetPdcpStats ()->SetAttribute ("EpochDuration", TimeValue (Seconds (statsDuration)));
283 
284 
285  Simulator::Stop (Seconds (statsStartTime + statsDuration - 0.0001));
286  Simulator::Run ();
287 
288  uint64_t imsiCounter = 0;
289 
290  for (std::vector<EnbTestData>::iterator enbit = m_enbTestData.begin ();
291  enbit < m_enbTestData.end ();
292  ++enbit)
293  {
294  for (std::vector<UeTestData>::iterator ueit = enbit->ues.begin ();
295  ueit < enbit->ues.end ();
296  ++ueit)
297  {
298  uint64_t imsi = ++imsiCounter;
299  for (uint32_t b = 0; b < ueit->bearers.size (); ++b)
300  {
301  // LCID 0, 1, 2 are for SRBs
302  // LCID 3 is (at the moment) the Default EPS bearer, and is unused in this test program
303  uint8_t lcid = b+4;
304  uint32_t expectedPkts = ueit->bearers.at (b).numPkts;
305  uint32_t expectedBytes = (ueit->bearers.at (b).numPkts) * (ueit->bearers.at (b).pktSize);
306  uint32_t txPktsPdcpDl = lteHelper->GetPdcpStats ()->GetDlTxPackets (imsi, lcid);
307  uint32_t rxPktsPdcpDl = lteHelper->GetPdcpStats ()->GetDlRxPackets (imsi, lcid);
308  uint32_t txPktsPdcpUl = lteHelper->GetPdcpStats ()->GetUlTxPackets (imsi, lcid);
309  uint32_t rxPktsPdcpUl = lteHelper->GetPdcpStats ()->GetUlRxPackets (imsi, lcid);
310  uint32_t rxBytesDl = ueit->bearers.at (b).dlServerApp->GetTotalRx ();
311  uint32_t rxBytesUl = ueit->bearers.at (b).ulServerApp->GetTotalRx ();
312 
313 
314  NS_TEST_ASSERT_MSG_EQ (txPktsPdcpDl,
315  expectedPkts,
316  "wrong TX PDCP packets in downlink for IMSI=" << imsi << " LCID=" << (uint16_t) lcid);
317 
318  NS_TEST_ASSERT_MSG_EQ (rxPktsPdcpDl,
319  expectedPkts,
320  "wrong RX PDCP packets in downlink for IMSI=" << imsi << " LCID=" << (uint16_t) lcid);
321  NS_TEST_ASSERT_MSG_EQ (txPktsPdcpUl,
322  expectedPkts,
323  "wrong TX PDCP packets in uplink for IMSI=" << imsi << " LCID=" << (uint16_t) lcid);
324  NS_TEST_ASSERT_MSG_EQ (rxPktsPdcpUl,
325  expectedPkts,
326  "wrong RX PDCP packets in uplink for IMSI=" << imsi << " LCID=" << (uint16_t) lcid);
327 
328  NS_TEST_ASSERT_MSG_EQ (rxBytesDl,
329  expectedBytes,
330  "wrong total received bytes in downlink");
331  NS_TEST_ASSERT_MSG_EQ (rxBytesUl,
332  expectedBytes,
333  "wrong total received bytes in uplink");
334  }
335  }
336  }
337 
339 }
340 
341 
342 
343 
344 
349 {
350 public:
352 
354 
356  : TestSuite ("lte-epc-e2e-data", SYSTEM)
357 {
358  std::vector<EnbTestData> v1;
359  EnbTestData e1;
360  UeTestData u1;
361  BearerTestData f1 (1, 100, 0.01);
362  u1.bearers.push_back (f1);
363  e1.ues.push_back (u1);
364  v1.push_back (e1);
365  AddTestCase (new LteEpcE2eDataTestCase ("1 eNB, 1UE", v1), TestCase::QUICK);
366 
367  std::vector<EnbTestData> v2;
368  EnbTestData e2;
369  UeTestData u2_1;
370  BearerTestData f2_1 (1, 100, 0.01);
371  u2_1.bearers.push_back (f2_1);
372  e2.ues.push_back (u2_1);
373  UeTestData u2_2;
374  BearerTestData f2_2 (2, 200, 0.01);
375  u2_2.bearers.push_back (f2_2);
376  e2.ues.push_back (u2_2);
377  v2.push_back (e2);
378  AddTestCase (new LteEpcE2eDataTestCase ("1 eNB, 2UEs", v2), TestCase::EXTENSIVE);
379 
380  std::vector<EnbTestData> v3;
381  v3.push_back (e1);
382  v3.push_back (e2);
384 
385  EnbTestData e4;
386  UeTestData u4_1;
387  BearerTestData f4_1 (3, 50, 0.01);
388  u4_1.bearers.push_back (f4_1);
389  e4.ues.push_back (u4_1);
390  UeTestData u4_2;
391  BearerTestData f4_2 (5, 1400, 0.01);
392  u4_2.bearers.push_back (f4_2);
393  e4.ues.push_back (u4_2);
394  UeTestData u4_3;
395  BearerTestData f4_3 (1, 12, 0.01);
396  u4_3.bearers.push_back (f4_3);
397  e4.ues.push_back (u4_3);
398  std::vector<EnbTestData> v4;
399  v4.push_back (e4);
400  v4.push_back (e1);
401  v4.push_back (e2);
403 
404  EnbTestData e5;
405  UeTestData u5;
406  BearerTestData f5 (5, 1000, 0.01);
407  u5.bearers.push_back (f5);
408  e5.ues.push_back (u5);
409  std::vector<EnbTestData> v5;
410  v5.push_back (e5);
411  AddTestCase (new LteEpcE2eDataTestCase ("1 eNB, 1UE with 1000 byte packets", v5), TestCase::EXTENSIVE);
412 
413 
414  EnbTestData e6;
415  UeTestData u6;
416  BearerTestData f6 (5, 1400, 0.01);
417  u6.bearers.push_back (f6);
418  e6.ues.push_back (u6);
419  std::vector<EnbTestData> v6;
420  v6.push_back (e6);
421  AddTestCase (new LteEpcE2eDataTestCase ("1 eNB, 1UE with 1400 byte packets", v6), TestCase::EXTENSIVE);
422 
423  EnbTestData e7;
424  UeTestData u7;
425  BearerTestData f7_1 (1, 1400, 0.01);
426  u7.bearers.push_back (f7_1);
427  BearerTestData f7_2 (1, 100, 0.01);
428  u7.bearers.push_back (f7_2);
429  e7.ues.push_back (u7);
430  std::vector<EnbTestData> v7;
431  v7.push_back (e7);
432  AddTestCase (new LteEpcE2eDataTestCase ("1 eNB, 1UE with 2 bearers", v7), TestCase::EXTENSIVE);
433 
434  EnbTestData e8;
435  UeTestData u8;
436  BearerTestData f8 (50, 8000, 0.02); // watch out for ns3::LteRlcUm::MaxTxBufferSize
437  u8.bearers.push_back (f8);
438  e8.ues.push_back (u8);
439  std::vector<EnbTestData> v8;
440  v8.push_back (e8);
441  AddTestCase (new LteEpcE2eDataTestCase ("1 eNB, 1UE with fragmentation", v8), TestCase::EXTENSIVE);
442 
443 
444  EnbTestData e9;
445  UeTestData u9;
446  BearerTestData f9 (1000, 20, 0.0001);
447  u9.bearers.push_back (f9);
448  e9.ues.push_back (u9);
449  std::vector<EnbTestData> v9;
450  v9.push_back (e9);
451  AddTestCase (new LteEpcE2eDataTestCase ("1 eNB, 1UE with aggregation", v9), TestCase::EXTENSIVE);
452 
453 
454 }
455 
456 
457 
458 } // namespace ns3
459 
holds a vector of ns3::Application pointers.
double x
x coordinate of vector
Definition: vector.h:49
Iterator Begin(void) const
Get an iterator which refers to the first NetDevice in the container.
keep track of time values and allow control of global simulation resolution
Definition: nstime.h:81
an Inet address class
static Ipv4Address GetAny(void)
smart pointer class similar to boost::intrusive_ptr
Definition: ptr.h:59
#define NS_LOG_FUNCTION(parameters)
Definition: log.h:345
Hold a bool native type.
Definition: boolean.h:38
NS_LOG_COMPONENT_DEFINE("GrantedTimeWindowMpiInterface")
holds a vector of std::pair of Ptr and interface index.
void Reset(void)
Reset the initial value of every attribute as well as the value of every global to what they were bef...
Definition: config.cc:642
hold variables of type string
Definition: string.h:19
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr stored in this container at a given index.
NetDeviceContainer Install(NodeContainer c)
a class to represent an Ipv4 address mask
Definition: ipv4-address.h:210
A suite of tests to run.
Definition: test.h:1025
static Vector GetPosition(Ptr< Node > node)
Definition: multirate.cc:315
Create an application which sends a UDP packet and waits for an echo of this packet.
static void Run(void)
Run the simulation until one of:
Definition: simulator.cc:157
std::vector< BearerTestData > bearers
aggregate IP/TCP/UDP functionality to existing Nodes.
Ptr< PacketSink > dlServerApp
A helper to make it easier to instantiate an ns3::PacketSinkApplication on a set of nodes...
Build a set of PointToPointNetDevice objects.
void Set(std::string path, const AttributeValue &value)
Definition: config.cc:662
encapsulates test code
Definition: test.h:849
std::vector< EnbTestData > m_enbTestData
void SetDeviceAttribute(std::string name, const AttributeValue &value)
Set an attribute value to be propagated to each NetDevice created by the helper.
Ptr< Application > dlClientApp
a 3d vector
Definition: vector.h:31
Class for representing data rates.
Definition: data-rate.h:71
Keep track of the current position and velocity of an object.
This class contains the specification of EPS Bearers.
Definition: eps-bearer.h:71
void Install(Ptr< Node > node) const
"Layout" a single node according to the current position allocator type.
hold objects of type ns3::Time
Definition: nstime.h:961
virtual void DoRun(void)
Implementation to actually run this TestCase.
Hold an unsigned integer type.
Definition: uinteger.h:46
Ptr< SampleEmitter > s
Medium length test.
Definition: test.h:858
holds a vector of ns3::NetDevice pointers
std::vector< UeTestData > ues
void Start(Time start)
Arrange for all of the Applications in this container to Start() at the Time given as a parameter...
static void Destroy(void)
Every event scheduled by the Simulator::insertAtDestroy method is invoked.
Definition: simulator.cc:121
#define NS_ABORT_IF(cond)
Abnormal program termination if cond is true.
Definition: abort.h:69
Access to the Ipv4 forwarding table, interfaces, and configuration.
Definition: ipv4.h:75
Ptr< Application > ulClientApp
uint16_t remotePortEnd
end of the port number range of the remote host
Definition: epc-tft.h:113
void SetDefault(std::string name, const AttributeValue &value)
Definition: config.cc:667
keep track of a set of node pointers.
Ptr< Application > Get(uint32_t i) const
Get the Ptr stored in this container at a given index.
void SetMobilityModel(std::string type, 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(), std::string n8="", const AttributeValue &v8=EmptyAttributeValue(), std::string n9="", const AttributeValue &v9=EmptyAttributeValue())
void Install(std::string nodeName) const
Aggregate implementations of the ns3::Ipv4, ns3::Ipv6, ns3::Udp, and ns3::Tcp classes onto the provid...
double y
y coordinate of vector
Definition: vector.h:53
void AddTestCase(TestCase *testCase) NS_DEPRECATED
Add an individual child TestCase case to this TestCase.
Definition: test.cc:173
Test that the S1-U interface implementation works correctly.
BearerTestData(uint32_t n, uint32_t s, double i)
void SetChannelAttribute(std::string name, const AttributeValue &value)
Set an attribute value to be propagated to each Channel created by the helper.
Fast test.
Definition: test.h:857
Helper class used to assign positions and mobility models to nodes.
Ipv4 addresses are stored in host order in this class.
Definition: ipv4-address.h:38
Ipv4InterfaceContainer Assign(const NetDeviceContainer &c)
Assign IP addresses to the net devices specified in the container based on the current network prefix...
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...
Helper class that adds ns3::Ipv4StaticRouting objects.
Ptr< PacketSink > ulServerApp
hold objects of type ns3::DataRate
static void Stop(void)
If an event invokes this method, it will be the last event scheduled by the Simulator::run method bef...
Definition: simulator.cc:165
Ptr< Node > Get(uint32_t i) const
Get the Ptr stored in this container at a given index.
std::vector< Ptr< NetDevice > >::const_iterator Iterator
ApplicationContainer Install(NodeContainer c) const
Install an ns3::PacketSinkApplication on each node of the input container configured with all the att...
std::string GetName(void) const
Definition: test.cc:242
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
void SetAttribute(std::string name, const AttributeValue &value)
Record an attribute to be set in each Application after it is is created.
Receive and consume traffic generated to an IP address and port.
Definition: packet-sink.h:68
void SetPositionAllocator(Ptr< PositionAllocator > allocator)
Set the position allocator which will be used to allocate the initial position of every node initiali...
ns3::LteEpcE2eDataTestSuite g_lteEpcE2eDataTestSuite
Iterator End(void) const
Get an iterator which indicates past-the-last NetDevice in the container.
Hold a floating point type.
Definition: double.h:41
Ptr< T > GetObject(void) const
Definition: object.h:361
uint16_t remotePortStart
start of the port number range of the remote host
Definition: epc-tft.h:112
void SetBase(Ipv4Address network, Ipv4Mask mask, Ipv4Address base="0.0.0.1")
Set the base network number, network mask and base address.
#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.
Definition: test.h:137
Implement the data structure representing a TrafficFlowTemplate Packet Filter.
Definition: epc-tft.h:73
Ipv4Address GetAddress(uint32_t i, uint32_t j=0) const
uint16_t localPortStart
start of the port number range of the UE
Definition: epc-tft.h:114
LteEpcE2eDataTestCase(std::string name, std::vector< EnbTestData > v)