Questions tagged [lte]

LTE (telecommunication) - Long Term Evolution

LTE is a standard for wireless communication of high-speed data for mobile phones and data terminals. The standard is developed by the 3GPP ( http://www.3gpp.org/LTE ).

LTE (Long Term Evolution) or the E-UTRAN (Evolved Universal Terrestrial Access Network), introduced in 3GPP R8, is the access part of the Evolved Packet System (EPS). The main requirements for the new access network are high spectral efficiency, high peak data rates, short round trip time as well as flexibility in frequency and bandwidth.

The LTE access network is simply a network of base stations, evolved NodeB (eNB), generating a flat architecture (figure 2). There is no centralized intelligent controller, and the eNBs are normally inter-connected viathe X2-interface and towards the core network by the S1-interface (figure 2). The reason for distributing the intelligence amongst the base-stations in LTE is to speed up the connection set-up and reduce the time required for a handover. For an end-user the connection set-up time for a real time data session is in many cases crucial, especially in on-line gaming. The time for a handover is essential for real-time services where end-users tend to end calls if the handover takes too long.

To understand the PS(protocol stack) of LTE which tells about data & signaling messages flow between different entities of LTE network interface. For more details about each layers one can refer below 3GPP specs. LTE PS is divided mainly into two categories NAS and AS Layers.

  • NAS(Non-access stratum) Layer
  • AS(Access Stratum) Layer
    • RRC(Radio Resource Control) Layer. Refer 36.331
    • PDCP(Packet Data Convergence Protocol) Layer. Refer 36.323
    • RLC(Radio Link Control) Layer Refer 36.322
    • MAC(Medium Access Control) Layer. Refer 36.321
    • PHY(Physical) Layer. Refer 36.201
295 questions
0
votes
1 answer

How full config ie affects pdcp sn during handover in lte

I would like to inquire how full configuration during handover affects retransmission of pdcp(sn) and pdcp (no sn). thanks.
James
  • 211
  • 3
  • 4
  • 12
0
votes
2 answers

how PCRF and PCEF share the static rules information

when PCRF needs to provision a static rule for a session, how PCRF determines a static rule which is predefined in PCEF ? Do they share common database ?
user2757415
  • 153
  • 1
  • 15
0
votes
1 answer

video streaming over LTE simulation

Hello I want to simulate a video streaming over LTE.I have tried SIMULTE but had problems in installing the ns-3 and the main problem is to know if it can support video streaming.Then I tried LTE-sim, but could not download the cygwin packages due…
0
votes
0 answers

Is P2P problematic on mobile networks? (ports etc)

I'm currently thinking about writing a text/voice chat tool that is fully e2e encrypted and runs on Android, iOS, Linux, OSX and Windows. (Btw if you know a tool that already does all of these things and is pretty much plug-and-play, please let me…
Forivin
  • 14,780
  • 27
  • 106
  • 199
0
votes
2 answers

what is Notif-Eff feature in diameter protocol?

I have recently started working on diameter protocol Sh interface. In TS 29.328, Section 6.1.1.1, it is given as 5. The HSS shall include the data pertinent to the requested Data Reference in the User-Data AVP and if the HSS supports the Notif-Eff…
vijayashankard
  • 721
  • 1
  • 7
  • 23
0
votes
1 answer

LTE signal strength vs GSM signal strength in Android

I want to show the network signal strength in my app.I am using LTE network for transmitting data and want to show any real time variations in network strength.I was able to get the GSM signal strength. I want to know that the GSM signal strength…
Asus gates
  • 380
  • 1
  • 5
  • 20
0
votes
1 answer

CellIdentityLte getCi() returning -1 in android

I have a method which returns cell id for LTE device, but on some devices it is returning -1. Here is the method: public int getCellId() { int cellId = Integer.MAX_VALUE; CellInfo cellInfo = null; List allCellInfo =…
Rajat Mehra
  • 1,462
  • 14
  • 19
0
votes
2 answers

Iperf3 testing LTE speed

i've been asked to run LTE on iperf3, the result is quite bad with low kpi, do you know how to maximize the speed, until reach enough kpi?
KhairulAI
  • 1
  • 2
0
votes
1 answer

AdminLTE - Loading different content for each menu item

I'm using AdminLTE to build my Admin page, and i'm trying to understand how to load (with jquery) different snippets of code for each link i click to. For example: in the sidebar menu i have 1, 2, 3, 4. When i link on 1, a snippet appears in the…
0
votes
1 answer

MongoDB $lte strange results

I am trying to implement a (semi-) random result from MongoDB; I know, Q/A's a plenty, here on SO to. But... As I tried to query MongoDB, just for fun to see what I would get, $lte gives me some very strange results. Consider this dataset: 1.…
Paul Wiegers
  • 199
  • 1
  • 7
0
votes
1 answer

Android - Check if device supports 4G/LTE

How to determine if a android device supports 4G/LTE networks? Checking the current network type is not an option, because I have to check it even if the current network type is 3G. UPDATE: OK, I have managed to detect the prefered_network_mode…
Michal
  • 1
  • 1
  • 3
0
votes
1 answer

LTE broadcasr or eMBMS is a RESTFull service ?

LTE Broadcast (eMBMS) enables a Single Frequency Network (SFN) broadcast capability within LTE, so that the same content can be sent to a large number of users at the same time, resulting in a more efficient use of network resources than each user…
KaushikV
  • 21
  • 5
0
votes
0 answers

How to get another location IP Address in Android?

City1 : PG-W1 (IP Pool 1.1.0.0/16) City2 : PG-W2 (IP Pool 2.2.0.0/16) If I use Android(PDN Address : 1.1.1.1) in City1, How do I get the IP(2.2.2.2) of the City2? (Without moving) I tried to find the associated document but failed.. :_(
Kim
  • 11
  • 3
0
votes
0 answers

Resetting the dongle serial ports

I want to do reconnect - i.e Once pdp session is established with modem using sequence of AT commands (like AT+CGATT,ATDT etc), I am trying to reestablish the connection after disconnecting .So I just want to reset ATDT port and resend the command…
Gajukorse
  • 147
  • 2
  • 11
0
votes
0 answers

Python: list comparison vs integer comparison which is more efficient?

I am currently implementing the LTE physical layer in Python (ver 2.7.7). For the qpsk, 16qam and 64qam modulation I would like to know which is more efficient to use between an integer comparison and a list comparison: Integer comparison:…