Package: simu5g.stack
LteNicEnb
compound moduleThe LteNicEnb module is a network interface that provides LTE connectivity within an eNodeB. It implements the data and signaling planes of the LTE stack, which includes the PDCP, RLC, MAC, and PHY layers. The parameters and submodules allow customization of the eNodeB's behavior, including whether it supports D2D communication, CoMP (Coordinated MultiPoint), or dual connectivity.
Usage diagram
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Known subclasses
Name | Type | Description |
---|---|---|
LteNicEnbD2D | compound module |
The LteNicEnbD2D module represents an LTE eNodeB network interface with support for D2D (Device-to-Device) communications. It extends the basic LteNicEnb module to manage D2D-capable UEs (User Equipments). A D2D mode selection algorithm can be specified using the 'd2dModeSelectionType' parameter. |
Extends
Name | Type | Description |
---|---|---|
LteNicBase | compound module |
The LteNicBase module serves as the foundational building block for LTE networking in Simu5G. It integrates protocols for LTE communication, including PDCP, RLC, MAC, and PHY layers. This base module allows higher-level modules, such as User Equipment (UE) and eNodeB (evolved Node B), to configure and utilize these layers according to their specific requirements. |
Parameters
Name | Type | Default value | Description |
---|---|---|---|
displayStringTextFormat | string | "%a (%i)\n%m" | |
recordPcap | bool | false | |
numPcapRecorders | int | recordPcap ? 1 : 0 | |
isWireless | bool | true | |
interfaceTableModule | string | ||
routingTableModule | string | ||
hasRNISupport | bool | false | |
nodeType | string | ||
processingDelayIn | double | 0s |
additional processing delay for incoming ip packets |
processingDelayOut | double | 0s |
additional processing delay for outgoing ip packets |
LteChannelModelType | string | "LteRealisticChannelModel" | |
d2dCapable | bool | false |
inherit the value from the parent module |
dualConnectivityEnabled | bool | false | |
numCarriers | int | 1 | |
address | string | "auto" | |
compEnabled | bool | false |
Properties
Name | Value | Description |
---|---|---|
networkInterface | ||
lifecycleSupport | ||
class | ::inet::NetworkInterface | |
display | i=block/ifcard;bgb=704,443;bgl=3 |
Gates
Name | Direction | Size | Description |
---|---|---|---|
EUTRAN_RRC_Sap | inout | ||
upperLayerIn | input | ||
upperLayerOut | output | ||
radioIn | input |
to receive messages sent using sendDirect() |
|
nrRadioIn | input |
for NR support |
|
x2 [ ] | inout |
optional x2 manager |
Signals
Name | Type | Unit | Description |
---|---|---|---|
packetDropped | inet::Packet |
Statistics
Name | Title | Source | Record | Unit | Interpolation Mode | Description |
---|---|---|---|---|---|---|
packetDropInterfaceDown | packet drops: interface down | packetDropReasonIsInterfaceDown(packetDropped) | count, sum(packetBytes), vector(packetBytes) | none | ||
packetDropNoCarrier | packet drops: no carrier | packetDropReasonIsNoCarrier(packetDropped) | count, sum(packetBytes), vector(packetBytes) | none |
Unassigned submodule parameters
Name | Type | Default value | Description |
---|---|---|---|
pcapRecorder.verbose | bool | true |
whether to log packets on the module output |
pcapRecorder.pcapFile | string | "" |
the PCAP file to be written |
pcapRecorder.fileFormat | string | "pcapng" | |
pcapRecorder.snaplen | int | 65535 |
maximum number of bytes to record per packet |
pcapRecorder.dumpBadFrames | bool | true |
enable dump of frames with hasBitError |
pcapRecorder.sendingSignalNames | string | "packetSentToLower" |
space-separated list of outbound packet signals to subscribe to |
pcapRecorder.receivingSignalNames | string | "packetReceivedFromLower" |
space-separated list of inbound packet signals to subscribe to |
pcapRecorder.dumpProtocols | string | "ethernetmac ppp ieee80211mac" |
space-separated list of protocol names as defined in the Protocol class |
pcapRecorder.packetFilter | object | "*" |
which packets are considered, matches all packets by default |
pcapRecorder.helpers | string | "" |
usable PcapRecorder::IHelper helpers for accept packettype and store/convert packet as specified linktype currently available: "inet::AckingMacToEthernetPcapRecorderHelper" |
pcapRecorder.alwaysFlush | bool | false |
flush the pcapFile after each write to ensure that all packets are captured in case of a crash |
pcapRecorder.displayStringTextFormat | string | "rec: %n pks" | |
ip2nic.interfaceTableModule | string | ||
ip2nic.routingTableModule | string | ||
pdcpRrc.headerCompressedSize | int | ||
rlc.tm.queueSize | int | 2MiB |
RLC SDU queue size (0: unlimited) |
rlc.um.queueSize | int | ||
rlc.um.mapAllLcidsToSingleBearer | bool | ||
packetFlowManager.macModule | string | ||
packetFlowManager.pfmType | string | ||
x2Manager.interfaceTableModule | string | ||
x2Manager.binderModule | string | "binder" | |
handoverManager.losslessHandover | bool | false | |
handoverManager.ip2nicModule | string | "^.ip2nic" | |
dualConnectivityManager.pdcpRrcModule | string | "^.pdcpRrc" |
Source code
// // The LteNicEnb module is a network interface that provides LTE connectivity // within an eNodeB. It implements the data and signaling planes of the LTE stack, // which includes the PDCP, RLC, MAC, and PHY layers. The parameters and submodules // allow customization of the eNodeB's behavior, including whether it supports // D2D communication, CoMP (Coordinated MultiPoint), or dual connectivity. // module LteNicEnb extends LteNicBase { parameters: pdcpRrc.typename = default("LtePdcpRrcEnb"); mac.typename = default("LteMacEnb"); phy.typename = default("LtePhyEnb"); packetFlowManager.typename = default("PacketFlowManagerEnb"); d2dCapable = default(false); // DO NOT CHANGE bool compEnabled = default(false); *.handoverManagerModule = "^.handoverManager"; submodules: //# //# X2 manager //# x2Manager: LteX2Manager { @display("p=623,226,row"); } //# //# Modules exploiting X2 interface //# compManager: <default("LteCompManagerProportional")> like ILteCompManager if compEnabled { @display("p=493,314,row"); } handoverManager: LteHandoverManager { @display("p=493,226,row"); } dualConnectivityManager: DualConnectivityManager if dualConnectivityEnabled { @display("p=493,141,row"); } bgTrafficGenerator[numCarriers]: BackgroundTrafficGenerator { @display("p=100,307,row"); } connections: //# connections between X2 Manager and its users compManager.x2ManagerIn <-- x2Manager.dataPort$o++ if compEnabled; compManager.x2ManagerOut --> x2Manager.dataPort$i++ if compEnabled; handoverManager.x2ManagerIn <-- x2Manager.dataPort$o++; handoverManager.x2ManagerOut --> x2Manager.dataPort$i++; dualConnectivityManager.x2ManagerIn <-- x2Manager.dataPort$o++ if dualConnectivityEnabled; dualConnectivityManager.x2ManagerOut --> x2Manager.dataPort$i++ if dualConnectivityEnabled; if ( sizeof(x2) > 0 ) { //# connections between X2 Manager and GTP (for handover) x2$i[0] --> x2Manager.x2Gtp$i; x2$o[0] <-- x2Manager.x2Gtp$o; } //# connections between X2 Manager and the outer world for i=1..sizeof(x2)-1 { x2$i[i] --> x2Manager.x2$i++; x2$o[i] <-- x2Manager.x2$o++; } }File: src/stack/LteNicEnb.ned