A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
emu-epc-helper.h
Go to the documentation of this file.
1 /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2011-2013 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: Jaume Nin <jnin@cttc.es>
19  * Nicola Baldo <nbaldo@cttc.es>
20  * Manuel Requena <manuel.requena@cttc.es>
21  */
22 
23 #ifndef EMU_EPC_HELPER_H
24 #define EMU_EPC_HELPER_H
25 
26 #include <ns3/object.h>
27 #include <ns3/ipv4-address-helper.h>
28 #include <ns3/data-rate.h>
29 #include <ns3/epc-tft.h>
30 #include <ns3/eps-bearer.h>
31 #include <ns3/epc-helper.h>
32 
33 namespace ns3 {
34 
35 class Node;
36 class NetDevice;
37 class VirtualNetDevice;
38 class EpcSgwPgwApplication;
39 class EpcX2;
40 class EpcMme;
41 
51 class EmuEpcHelper : public EpcHelper
52 {
53 public:
54 
58  EmuEpcHelper ();
59 
63  virtual ~EmuEpcHelper ();
64 
65  // inherited from Object
66  static TypeId GetTypeId (void);
67  virtual void DoInitialize ();
68  virtual void DoDispose ();
69 
70  // inherited from EpcHelper
71  virtual void AddEnb (Ptr<Node> enbNode, Ptr<NetDevice> lteEnbNetDevice, uint16_t cellId);
72  virtual void AddUe (Ptr<NetDevice> ueLteDevice, uint64_t imsi);
73  virtual void AddX2Interface (Ptr<Node> enbNode1, Ptr<Node> enbNode2);
74  virtual void ActivateEpsBearer (Ptr<NetDevice> ueLteDevice, uint64_t imsi, Ptr<EpcTft> tft, EpsBearer bearer);
75  virtual Ptr<Node> GetPgwNode ();
78 
79 
80 
81 private:
82 
87 
88 
96 
101 
105  uint16_t m_gtpuUdpPort;
106 
111  std::map<uint64_t, Ptr<NetDevice> > m_imsiEnbDeviceMap;
112 
114 
115  std::string m_sgwDeviceName;
116  std::string m_enbDeviceName;
117  std::string m_sgwMacAddress;
118  std::string m_enbMacAddressBase;
119 };
120 
121 
122 
123 
124 } // namespace ns3
125 
126 #endif // EMU_EPC_HELPER_H
static TypeId GetTypeId(void)
holds a vector of std::pair of Ptr and interface index.
uint16_t m_gtpuUdpPort
UDP port where the GTP-U Socket is bound, fixed by the standard as 2152.
std::string m_sgwDeviceName
Ipv4InterfaceContainer m_sgwIpIfaces
EmuEpcHelper()
Constructor.
std::map< uint64_t, Ptr< NetDevice > > m_imsiEnbDeviceMap
Map storing for each IMSI the corresponding eNB NetDevice.
virtual void AddUe(Ptr< NetDevice > ueLteDevice, uint64_t imsi)
Notify the EPC of the existance of a new UE which might attach at a later time.
virtual void DoInitialize()
This method is called only once by Object::Initialize.
This class contains the specification of EPS Bearers.
Definition: eps-bearer.h:71
holds a vector of ns3::NetDevice pointers
virtual void AddX2Interface(Ptr< Node > enbNode1, Ptr< Node > enbNode2)
Add an X2 interface between two eNB.
virtual void AddEnb(Ptr< Node > enbNode, Ptr< NetDevice > lteEnbNetDevice, uint16_t cellId)
Add an eNB to the EPC.
Create an EPC network using EmuFdNetDevice.
std::string m_enbMacAddressBase
std::string m_sgwMacAddress
Base helper class to handle the creation of the EPC entities.
Definition: epc-helper.h:48
virtual Ipv4Address GetUeDefaultGatewayAddress()
virtual Ipv4InterfaceContainer AssignUeIpv4Address(NetDeviceContainer ueDevices)
Assign IPv4 addresses to UE devices.
virtual void ActivateEpsBearer(Ptr< NetDevice > ueLteDevice, uint64_t imsi, Ptr< EpcTft > tft, EpsBearer bearer)
Activate an EPS bearer, setting up the corresponding S1-U tunnel.
virtual ~EmuEpcHelper()
Destructor.
Ptr< EpcSgwPgwApplication > m_sgwPgwApp
Ipv4 addresses are stored in host order in this class.
Definition: ipv4-address.h:38
virtual Ptr< Node > GetPgwNode()
std::string m_enbDeviceName
A helper class to make life easier while doing simple IPv4 address assignment in scripts.
Ipv4AddressHelper m_ueAddressHelper
helper to assign addresses to UE devices as well as to the TUN device of the SGW/PGW ...
Ipv4AddressHelper m_epcIpv4AddressHelper
helper to assign addresses to S1-U NetDevices
virtual void DoDispose()
This method is called by Object::Dispose or by the object's destructor, whichever comes first...
Ptr< VirtualNetDevice > m_tunDevice
a unique identifier for an interface.
Definition: type-id.h:49
Ptr< Node > m_sgwPgw
SGW-PGW network element.
Ptr< EpcMme > m_mme