26 #include "ns3/string.h"
27 #include "ns3/lte-enb-net-device.h"
28 #include "ns3/lte-enb-rrc.h"
29 #include "ns3/epc-x2.h"
30 #include "ns3/emu-fd-net-device-helper.h"
31 #include "ns3/emu-epc-helper.h"
78 .AddAttribute (
"SgwDeviceName",
79 "The name of the device used for the S1-U interface of the SGW",
83 .AddAttribute (
"EnbDeviceName",
84 "The name of the device used for the S1-U interface of the eNB",
88 .AddAttribute (
"SgwMacAddress",
89 "MAC address used for the SGW",
93 .AddAttribute (
"EnbMacAddressBase",
94 "First 5 bytes of the eNB MAC address base",
130 std::ostringstream enbMacAddress;
131 enbMacAddress <<
m_enbMacAddressBase <<
":" << std::hex << std::setfill (
'0') << std::setw (2) << cellIds.at (0);
132 NS_LOG_LOGIC (
"eNB MAC address: " << enbMacAddress.str ());
160 NS_LOG_LOGIC (
"number of Ipv4 ifaces of the eNB #1: " << enb1Ipv4->GetNInterfaces ());
161 NS_LOG_LOGIC (
"number of Ipv4 ifaces of the eNB #2: " << enb2Ipv4->GetNInterfaces ());
169 int32_t enb1Interface = enb1Ipv4->GetInterfaceForDevice (enb1EpcDev);
170 int32_t enb2Interface = enb2Ipv4->GetInterfaceForDevice (enb2EpcDev);
173 NS_ASSERT (enb1Ipv4->GetNAddresses (enb1Interface) == 1);
174 NS_ASSERT (enb2Ipv4->GetNAddresses (enb2Interface) == 1);
175 Ipv4Address enb1Addr = enb1Ipv4->GetAddress (enb1Interface, 0).GetLocal ();
176 Ipv4Address enb2Addr = enb2Ipv4->GetAddress (enb2Interface, 0).GetLocal ();
183 std::vector<uint16_t> enb1CellIds = enb1LteDev->
GetCellIds ();
184 uint16_t enb1CellId = enb1CellIds.at (0);
185 NS_LOG_LOGIC (
"LteEnbNetDevice #1 = " << enb1LteDev <<
" - CellId = " << enb1CellId);
189 std::vector<uint16_t> enb2CellIds = enb2LteDev->
GetCellIds ();
190 uint16_t enb2CellId = enb2CellIds.at (0);
191 NS_LOG_LOGIC (
"LteEnbNetDevice #2 = " << enb2LteDev <<
" - CellId = " << enb2CellId);
193 enb1X2->AddX2Interface (enb1CellId, enb1Addr, enb2CellIds, enb2Addr);
194 enb2X2->AddX2Interface (enb2CellId, enb2Addr, enb1CellIds, enb1Addr);
196 enb1LteDev->GetRrc ()->AddX2Neighbour (enb2LteDev->GetCellId ());
197 enb2LteDev->GetRrc ()->AddX2Neighbour (enb1LteDev->GetCellId ());
List of Attribute name, value and checker triples used to construct Objects.
Create an EPC network using EmuFdNetDevice.
EmuEpcHelper()
Constructor.
virtual void DoDispose()
Destructor implementation.
Ipv4AddressHelper m_epcIpv4AddressHelper
helper to assign addresses to S1-U NetDevices
std::string m_enbMacAddressBase
First 5 bytes of the Enb MAC address base.
std::string m_enbDeviceName
The name of the device used for the S1-U interface of the eNB.
virtual ~EmuEpcHelper()
Destructor.
virtual void AddEnb(Ptr< Node > enbNode, Ptr< NetDevice > lteEnbNetDevice, std::vector< uint16_t > cellIds)
Add an eNB to the EPC.
TypeId GetInstanceTypeId() const
Get the most derived TypeId for this Object.
std::string m_sgwDeviceName
The name of the device used for the S1-U interface of the SGW.
std::string m_sgwMacAddress
MAC address used for the SGW.
static TypeId GetTypeId(void)
Register this type.
virtual void AddX2Interface(Ptr< Node > enbNode1, Ptr< Node > enbNode2)
Add an X2 interface between two eNB.
Ipv4InterfaceContainer m_sgwIpIfaces
Container for Ipv4Interfaces of the SGW.
build a set of FdNetDevice objects attached to a physical network interface
void SetDeviceName(std::string deviceName)
Set the device name of this device.
Base helper class to handle the creation of the EPC entities.
This entity is installed inside an eNB and provides the functionality for the X2 interface.
virtual NetDeviceContainer Install(Ptr< Node > node) const
This method creates a FdNetDevice and associates it to a node.
void SetBase(Ipv4Address network, Ipv4Mask mask, Ipv4Address base="0.0.0.1")
Set the base network number, network mask and base address.
Ipv4InterfaceContainer Assign(const NetDeviceContainer &c)
Assign IP addresses to the net devices specified in the container based on the current network prefix...
Ipv4 addresses are stored in host order in this class.
Access to the IPv4 forwarding table, interfaces, and configuration.
virtual uint32_t GetNInterfaces(void) const =0
holds a vector of std::pair of Ptr<Ipv4> and interface index.
Ipv4Address GetAddress(uint32_t i, uint32_t j=0) const
The eNodeB device implementation.
std::vector< uint16_t > GetCellIds() const
AttributeValue implementation for Mac48Address.
holds a vector of ns3::NetDevice pointers
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr<NetDevice> stored in this container at a given index.
Create an EPC network with PointToPoint links between the core network nodes.
virtual Ptr< Node > GetSgwNode() const
Get the SGW node.
virtual void AddEnb(Ptr< Node > enbNode, Ptr< NetDevice > lteEnbNetDevice, std::vector< uint16_t > cellIds)
Add an eNB to the EPC.
virtual void DoDispose()
Destructor implementation.
virtual void AddS1Interface(Ptr< Node > enb, Ipv4Address enbAddress, Ipv4Address sgwAddress, std::vector< uint16_t > cellIds)
Add an S1 interface between an eNB and a SGW.
uint32_t GetNDevices(void) const
Ptr< NetDevice > GetDevice(uint32_t index) const
Retrieve the index-th NetDevice associated to this node.
void ConstructSelf(const AttributeConstructionList &attributes)
Complete construction of ObjectBase; invoked by derived classes.
void SetAttribute(std::string name, const AttributeValue &value)
Set a single attribute, raising fatal errors if unsuccessful.
Ptr< T > GetObject(void) const
Get a pointer to the requested aggregated Object.
Hold variables of type string.
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
Ptr< const AttributeAccessor > MakeStringAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Ptr< const AttributeChecker > MakeStringChecker(void)
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_LOG_WARN(msg)
Use NS_LOG to output a message of level LOG_WARN.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Every class exported by the ns3 library is enclosed in the ns3 namespace.