Session 4. LTE in ns-3. 김선도 Multimedia & Wireless Networking Laboratory, SNU

Size: px
Start display at page:

Download "Session 4. LTE in ns-3. 김선도 Multimedia & Wireless Networking Laboratory, SNU"

Transcription

1 Session 4. LTE in ns-3 김선도 Multimedia & Wireless Networking Laboratory, SNU 1

2 LTE Overview LTE in ns-3 Simulation Examples Contents Packet Transmission Example In class Assignment 2

3 LTE Overview 3

4 3GPP LTE and LTE-A LTE (Long Term Evolution) LTE is 3GPP system for the years 2010 to 2020 and beyond It must keep the support for high mobility users like in GSM/UMTS Bandwidth: 1.4 MHz ~ 20 MHz Peak Data Rate: 300 Mbps (4x4 MIMO, 20 MHz) Key feature: AMC (Adaptive Modulation Coding), MIMO (up to 4x4) LTE-A (LTE Advanced) LTE-A is often used for LTE release 10 and beyond Bandwidth: up to 100 MHz Peak Data Rate: 3 Gbps Key feature: CA (Carrier Aggregation), MIMO (up to 8x8), CoMP (Coordinated Multi Point Transmission), HetNet (Heterogeneous Network), Relay 4

5 LTE System Architecture EPS Serving GW P-GW MME HSS enodeb: evolved Node B MME: Mobility Management Entity P-GW: Packet Data Network Gateway HSS: Home Subscriber Server 5

6 Key Entity enb (evolved Node B) It is the hardware that is connected to the mobile phone network Functions for radio resource management Scheduling and transmission MME (Mobility Management Entity) Tracking area list management Bearer management functions including dedicated bearer establishment S-GW (Serving Gateway) Packet routing and forwarding Mobility anchoring for inter-3gpp mobility P-GW (Packet Data Network Gateway) Per-user based packet filtering UE IP address allocation Mobility anchoring for non-3gpp mobility 6

7 Protocol Architecture 7

8 QoS and EPS Bearer EPS Bearers In order to support multiple QoS requirements, different bearers are setup within EPS Default EPS Bearer Establish when UE connects to PDN Provide always-on connectivity Non-GBR (Non Guaranteed Bit Rate) Dedicated EPS Bearer Establish in addition when it is needed Can be GBR or non-gbr EPS Bearer 8

9 LTE Resources RB (Resource Block) 12 sub-carriers allocated during a 0.5 ms timeslot are called a resource block A LTE terminal can be allocated a minimum of 2 RBs during 1 subframe (1 ms) Relationship between bandwidth and RB The number of RBs is determined according to bandwidth For example, 6 RBs in 1.4 MHz and 100 RBs in 20 MHz 9

10 Resource Allocation MAC scheduler allocates RBs to UEs Reference: Rohde & Schwarz, UMTS Long Term Evolution (LTE) Technology Introduction 10

11 Important Channel in LTE PDCCH (Physical Downlink Control Channel) Transmit scheduling assignment PDSCH (Physical Downlink Shared Channel) Main data bearing channel which is allocated to users frequency 15 khz 11

12 Downlink Data Transmission Data arrival enb Scheduling UE DL control info. DL data CSI ACK or NACK CSI Channel State Information (CSI) Channel Quality Indicator (CQI), etc. Scheduling Based on CQI HARQ ACK (or NACK) and CSI *HARQ: Hybrid Automatic Retransmission request 12

13 Uplink Data Transmission enb UE SR UL grant BSR Scheduling Data arrival UL data (BSR) (Data arrival) Scheduling Request (SR) Uplink grant Buffer Status Report (BSR) Uplink resource scheduling Uplink data transmission If more uplink data arrives piggybacking BSR 13

14 RRC State Transition RRC_idle Monitor PDCCH According to DRX cycle RRC connection established RRC connection released RRC_connected Connected to Known cell RRC-Idle Monitors a paging channel to detect incoming traffic Performs neighboring cell measurements and cell (re)selection RRC-Connected Transfer of unicast data to/from UE Network controlled mobility such as Handover Performs neighboring cell measurements and reporting Provides channel quality and feedback information 14

15 Random Access Contention-based RA Step 1: Preamble transmission Step 2: Random access response (RAR) includes resource allocation and timing advancement information Step 3: Layer 2 / Layer 3 message Step 4: Contention resolution message 15

16 LTE in ns-3 16

17 LTE-EPC Simulation Model LTE model Supporting the evaluation of the following aspects of LTE systems Radio Resource Management QoS-aware Packet Scheduling Inter-cell Interference Coordination Dynamic Spectrum Access EPC model Supporting the interconnection of multiple UEs to the Internet Packet Data Network (PDN) type: IPv4 SGW/PGW node: functional entities are implemented within a single node Reference: ns-3 Model Library Release ns

18 LTE Protocol Stack PHY model Frequency Division Duplexing (FDD) Granularity Frequency domain: 1 Resource Block (RB) Time domain: 1 Transmission Time Interval (TTI) Supports different frequencies and bandwidths per enbs MAC/Scheduler model Downlink Allocation type 0 (min. scheduling unit = RBG) Round Robin (RR), Proportional Fair (PF), Uplink Only RR supported 18

19 LTE Protocol Stack RLC model Segmentation Reassembly PDCP model Maintenance of PDCP SNs Transfer of SN (Sequence Number) status for handover Unsupported features Header compression/decompression Ciphering/Deciphering 19

20 LTE Protocol Stack LteEnbRrc LtePdcp LteRlc LteEnbMac FfMacScheduler LteEnbPhy 20

21 Overview PHY and channel model architecture Downlink lte-enb-phy.cc lte-ue-phy.cc lte-spectrum-phy.cc multi-model-spectrum-channel.cc 21

22 LTE enb PHY Source code (src/lte/model/lte-enb-phy.cc) Function call flow 1 Frame = 10 Subframe Function of StartSubFrame Process the current burst of control messages Send data frame Trigger the MAC 22

23 Function Flow Downlink Downlink transmission Start 23

24 Function Flow Uplink lte-ue-phy.cc lte-ue-mac.cc StartSubFrame SendLteControlMessage lte-enb-mac.cc ReceiveBsrMessage DoSubframeIndication DoSubframeIndication SendReportBufferStatus DoReceiveLteControlMessage lte-rlc-um.cc DoNotifyTxOpportunity ff-mac-scheduler.cc DoSchedUlCtrlInfoReq DoSchedUlConfigInd DoSchedUlTriggerReq 24

25 Function Flow Random Access lte-ue-phy.cc lte-ue-mac.cc ReceiveLteControlMessageList RecvRaResponse DoSendRachPreamble SendRaPreamble lte-enb-mac.cc DoSubframeIndication RaResponseTimeout lte-rlc-um.cc DoNotifyTxOpportunity ff-mac-scheduler.cc DoSchedDlConfigInd DoSchedDlTriggerReq 25

26 Simulation Examples 26

27 Packet Transmission Example Simulation environment Remote host generates UDP packet Packet size: 1460 bytes Downlink bandwidth: 20 MHz (100 RBs) Internet PGW/SGW enb UE 10 m Remote host UDP client Packet sink 27

28 Simulation Code(1/9) test-lte-epc.cc Define variables NS_LOG_COMPONENT_DEFINE ("TestLteEpc"); using namespace ns3; int main (int argc, char *argv[]) { double ltepktinv = ; // full pumping LTE packet double ltestarttimesec = 1; // application start time double ltestoptimesec = 2; // application end time double downlinkrb = 100; // the number of resource blocks used for downlink 28

29 Simulation Code(2/9) Create node Ipv4GlobalRoutingHelper::PopulateRoutingTables (); NodeContainer remotehostnode, enbnode, uenode; remotehostnode.create (1); enbnode.create (1); uenode.create (1); Create nodes enb node UE node Remote host node 29

30 Simulation Code(3/9) Allocate position Ptr<ListPositionAllocator> positionalloc = CreateObject<ListPositionAllocator> (); positionalloc->add (Vector(0, 0, 0)); // for LTE enb positionalloc->add (Vector(10, 0, 0)); // for LTE UE MobilityHelper mobility; mobility.setpositionallocator (positionalloc); mobility.setmobilitymodel ("ns3::constantpositionmobilitymodel"); mobility.install (enbnode); mobility.install (uenode); 10 m enb node (0, 0, 0) UE node (10, 0, 0) Remote host node 30

31 Simulation Code(4/9) LTE and EPC configuration Using LteHelper and EpcHelper //LteHelper Ptr<LteHelper> ltehelper = CreateObject<LteHelper> (); ltehelper->setattribute ("PathlossModel", StringValue ("ns3::logdistancepropagationlossmodel")); ltehelper->setenbdeviceattribute ("DlBandwidth", UintegerValue (downlinkrb)); ltehelper->setenbdeviceattribute ("UlBandwidth", UintegerValue (downlinkrb)); //EpcHelper Ptr<PointToPointEpcHelper> epchelper = CreateObject<PointToPointEpcHelper> (); ltehelper->setepchelper (epchelper); Ptr<Node> pgw = epchelper->getpgwnode (); //Wired configuration (Remote host and PGW/SGW) PointToPointHelper pointtopoint; pointtopoint.setdeviceattribute ("DataRate", StringValue ("1Gbps")); pointtopoint.setdeviceattribute ("Mtu", UintegerValue (1500)); pointtopoint.setchannelattribute ("Delay", StringValue (" ms")); 10 m Remote host node PGW/SGW enb node (0, 0, 0) UE node (10, 0, 0) 31

32 Assign IP address to EPC Simulation Code(5/9) //Temporal containers NetDeviceContainer p2pdevs, enbdev, uedevs; //Remote host PGW/SGW p2pdevs = pointtopoint.install (remotehostnode.get(0), pgw); enbdev = ltehelper->installenbdevice (enbnode); uedevs = ltehelper->installuedevice (uenode); // IP address assignment for remote host and PGW/SGW InternetStackHelper internet; internet.install (remotehostnode); Ipv4AddressHelper ipv4; ipv4.setbase (" ", " "); Ipv4InterfaceContainer internetipifaces = ipv4.assign (p2pdevs); //Routing setting from EPC to LTE Ipv4StaticRoutingHelper ipv4routinghelper; Ptr<Ipv4StaticRouting> remotehoststaticrouting = ipv4routinghelper.getstaticrouting ((remotehostnode.get(0))->getobject<ipv4> ()); remotehoststaticrouting->addnetworkrouteto (Ipv4Address (" "), Ipv4Mask (" "), 1); 32

33 Assign IP address to LTE //IP address assignment for UE internet.install (uenode); Simulation Code(6/9) Ipv4InterfaceContainer ueifs = epchelper->assignueipv4address (NetDeviceContainer (uedevs)); Ptr<Ipv4StaticRouting> uestaticrouting = ipv4routinghelper.getstaticrouting (uenode.get(0)->getobject<ipv4> ()); uestaticrouting->setdefaultroute (epchelper->getuedefaultgatewayaddress (), 1); // Automatic attachment of a UE device to a suitable cell ltehelper->attach (uedevs.get (0)); Internet PGW/SGW ( ) ( ) enb 10 m UE ( ) Remote host ( ) 33

34 Simulation Code(7/9) Application uint16_t dlport = 10000; //Setting the downlink UDP port ApplicationContainer clientapps; //Making an application container ApplicationContainer serverapps; //Set the destination IP address, port etc. UdpClientHelper dlclienthelper (ueifs.getaddress (0), dlport); dlclienthelper.setattribute ("MaxPackets", UintegerValue ( )); dlclienthelper.setattribute ("Interval", TimeValue (Seconds (ltepktinv))); dlclienthelper.setattribute ("PacketSize", UintegerValue (1460)); //Install the UDP client application to remote server clientapps.add (dlclienthelper.install (remotehostnode.get(0))); //Install the packet sink to UE PacketSinkHelper dlpacketsinkhelper ("ns3::udpsocketfactory", InetSocketAddress (Ipv4Address::GetAny (), dlport)); serverapps.add (dlpacketsinkhelper.install (uenode.get(0))); 34

35 Simulation Code(8/9) Activate dedicated bearer //Setting the Traffic Flow Template (TFT) Ptr<EpcTft> tft = Create<EpcTft> (); EpcTft::PacketFilter dlpf; dlpf.localportstart = dlport; dlpf.localportend = dlport; tft->add (dlpf); //Setting the bearer EpsBearer bearer (EpsBearer::NGBR_VIDEO_TCP_DEFAULT); ltehelper->activatededicatedepsbearer (uedevs.get (0), bearer, tft); Internet PGW/SGW ( ) ( ) enb UE ( ) Remote host UDP client 35 ( ) Packet sink

36 Simulation Code(9/9) Simulation running and Calculate the throughput //Setting the simulation time serverapps.start (Seconds (ltestarttimesec)); clientapps.start (Seconds (ltestarttimesec)); Simulator::Stop (Seconds(lteStopTimeSec)); Simulator::Run (); //Tracing Ptr<PacketSink> sink = serverapps.get (0)->GetObject<PacketSink> (); double ltethroughput = sink->gettotalrx () * 8.0 / ( *(stopTimeSec - ltestarttimesec)); NS_LOG_UNCOND ( UE(" << ueifs.getaddress(0) << ) lte throughput: " << ltethroughput); Simulator::Destroy (); return 0; 36

37 Packet Transmission Examples Simulation Results./waf --run scratch/test-lte-downlink Internet PGW/SGW enb UE Remote host Mbps 37

38 In Class Assignment Make below topology and test throughput test-multicell-skel.cc UE 1 UE 2 10 m 10 m 200 m enb 1 enb 2 interference 99 m 99 m UE m UE m UE 3 UE 4 Solution:./waf --run scratch/test-multicell-sol 38

39 In Class Assignment Uplink transmission test-uplink-skel.cc Internet PGW/SGW enb UE Remote host Uplink transmission Solution:./waf --run scratch/test-uplink-sol 39

40 References 3GPP TS GPP TS The LTE Network Architecture, Alcatel Lucent LTE/EPS overview, NSN ns-3 Model Library Release ns-3.23 E. Dahlman, S. Parkvall, and J. Skold, 4G: LTE/LTE-Advanced for Mobile Broadband, Academic Press, 2011 Rohde & Schwarz, UMTS Long Term Evolution (LTE) Technology Introduction 40

41 41

Session 6. LTE 응용및실습. Junseok Kim Multimedia & Wireless Networking Laboratory, SNU

Session 6. LTE 응용및실습. Junseok Kim Multimedia & Wireless Networking Laboratory, SNU Session 6. LTE 응용및실습 Junseok Kim Multimedia & Wireless Networking Laboratory, SNU jskim14@mwnl.snu.ac.kr 1 Contents Application in Scratch File Uplink Transmission with UDP In Class Assignment Simulation

More information

LTE Radio Interface Architecture. Sherif A. Elgohari

LTE Radio Interface Architecture. Sherif A. Elgohari LTE Radio Interface Architecture Sherif A. Elgohari (selgohari@ieee.org) Agenda Overall System Architecture Radio Protocol Architecture Radio Link Control Medium Access Control Physical Layer Control Plan

More information

DAY 2. HSPA Systems Architecture and Protocols

DAY 2. HSPA Systems Architecture and Protocols DAY 2 HSPA Systems Architecture and Protocols 1 LTE Basic Reference Model UE: User Equipment S-GW: Serving Gateway P-GW: PDN Gateway MME : Mobility Management Entity enb: evolved Node B HSS: Home Subscriber

More information

APPENDIX A Simulation Code Listing

APPENDIX A Simulation Code Listing APPENDIX A - - - Simulation Code Listing /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */ /* * This program is free software; you can redistribute it and/or modify * it under the terms

More information

Key Performance Aspects of an LTE FDD based Smart Grid Communications Network

Key Performance Aspects of an LTE FDD based Smart Grid Communications Network Key Performance Aspects of an LTE FDD based Smart Grid Communications Network Presented by: Ran Zhang Supervisors: Prof. Sherman(Xuemin) Shen, Prof. Liang-liang Xie Main Reference Jason Brown, and Jamil

More information

Introduction to NS-3

Introduction to NS-3 Introduction to NS-3 Konstantinos Katsaros k.katsaros @ surrey.ac.uk Centre for Communications System Research University of Surrey System Level Simulations - Technical Club Outline 1 Introduction 2 NS-3

More information

INTRODUCTION TO LTE. ECE MOBILE COMMUNICATION Monday, 25 June 2018

INTRODUCTION TO LTE. ECE MOBILE COMMUNICATION Monday, 25 June 2018 INTRODUCTION TO LTE ECE 2526 - MOBILE COMMUNICATION Monday, 25 June 2018 1 WHAT IS LTE? 1. LTE stands for Long Term Evolution and it was started as a project in 2004 by the Third Generation Partnership

More information

LAB1 - Introduction to ns-3

LAB1 - Introduction to ns-3 LAB1 - Introduction to ns-3 CS169: Mobile Wireless Networks - Winter 2017 Kittipat Apicharttrisorn (Patrick) Department of Computer Science and Engineering University of California, Riverside January 9,

More information

NETWORK DIAGNOSTICS Testing HSDPA, HSUPA for 3G mobile apps

NETWORK DIAGNOSTICS Testing HSDPA, HSUPA for 3G mobile apps NETWORK DIAGNOSTICS Testing HSDPA, HSUPA for 3G mobile apps By Simon Binar Protocol Monitoring Division Tektronix Inc. The market for broadband cellular data services is rapidly evolving. From its deployment

More information

Architecture and Protocols of EPC-LTE with relay

Architecture and Protocols of EPC-LTE with relay Architecture and Protocols of EPC-LTE with relay Yangyang Chen, Xavier Lagrange To cite this version: Yangyang Chen, Xavier Lagrange. Architecture and Protocols of EPC-LTE with relay. 13360. 2013, pp.25.

More information

Buletinul Ştiinţific al Universităţii "Politehnica" din Timişoara. Seria ELECTRONICĂ şi TELECOMUNICAŢII TRANSACTIONS on ELECTRONICS and COMMUNICATIONS

Buletinul Ştiinţific al Universităţii Politehnica din Timişoara. Seria ELECTRONICĂ şi TELECOMUNICAŢII TRANSACTIONS on ELECTRONICS and COMMUNICATIONS Buletinul Ştiinţific al Universităţii "Politehnica" din Timişoara Seria ELECTRONICĂ şi TELECOMUNICAŢII TRANSACTIONS on ELECTRONICS and COMMUNICATIONS Tom 58(72), Fascicola 2, 2013 Mobility in LTE Alexandra

More information

Keywords Quality of Service (QoS), Long Term Evolution (LTE), System Architecture Evolution (SAE), Evolved Packet System (EPS).

Keywords Quality of Service (QoS), Long Term Evolution (LTE), System Architecture Evolution (SAE), Evolved Packet System (EPS). Volume 5, Issue 7, July 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com A Review of 3GPP-LTE

More information

7/27/2010 LTE-WIMAX BLOG HARISHVADADA.WORDPRESS.COM. QOS over 4G networks Harish Vadada

7/27/2010 LTE-WIMAX BLOG HARISHVADADA.WORDPRESS.COM. QOS over 4G networks Harish Vadada 7/27/2010 HARISHVADADA.WORDPRESS.COM LTE-WIMAX BLOG QOS over 4G networks Harish Vadada Cellular network operators across the world have seen an explosive growth of mobile broadband usage. Traffic volume

More information

LTE-Advanced Relay. Oct 18, 2011

LTE-Advanced Relay. Oct 18, 2011 LTE-Advanced Relay Oct 18, 2011 LTE/LTE-A Overview 3GPP Rel-10 Relay LTE-A Relay 3GPP Rel-11 Relay 2 LTE/LTE-A Overview 3GPP Rel-10 Relay LTE-A Relay 3GPP Rel-11 Relay 3 Cellular Roadmap Spectrum Efficiency

More information

Mobile Network Evolution Part 2

Mobile Network Evolution Part 2 Mobile Network Evolution Part 2 From UMTS to LTE or How to Further Increase Network Capacity and QoS Andreas Mitschele-Thiel Advanced Mobile Communication Networks 1 Outline Evolution from Circuit Switching

More information

ENG Advanced Mobile Networks: QoS, QoE & Technical Aspects

ENG Advanced Mobile Networks: QoS, QoE & Technical Aspects ENG-514 - Advanced Mobile Networks: QoS, QoE & Technical Aspects Description The increasing uptake of Internet of Things (IoT), Big data and cloud-based services introduces a new set of requirements for

More information

System Architecture Evolution

System Architecture Evolution System Architecture Evolution Contents 2.1 Architecture of LTE 2.2 Communication Protocols 2.3 Example Information Flows 2.4 Bearer Management 2.5 State Diagrams 2.6 Spectrum Allocation 2.1 Architecture

More information

Dual Connectivity in LTE

Dual Connectivity in LTE Dual Connectivity in LTE 1 Background Scenario Architecture User Plane feature Control Plane feature Outline 6-1 Background Scenario Architecture User Plane feature Control Plane feature Outline Background

More information

CCE 3301 Communication Systems Introduction to NS-3

CCE 3301 Communication Systems Introduction to NS-3 CCE 3301 Communication Systems Introduction to NS-3 Dr Ing. C.J. Debono Outline Introduction NS-3 module stack A simple example Lower level Scheduler Random variables Memory management Packets Nodes Callbacks

More information

LTE EPC Emulators v10.0 Release Notes - Page 1 of 15 -

LTE EPC Emulators v10.0 Release Notes - Page 1 of 15 - LTE EPC Emulators v10.0 Release Notes - Page 1 of 15 - Version 10.0.0.7 Release Date: Feb 24, 2014 Components 1. LTE Emulators : MME (with internal HSS), SGW and PGW (with internal PCRF) 1. LTE Emulators

More information

MME SGW PGW. 17-Feb-14 21:15 (Page 1) This sequence diagram was generated with EventStudio Sytem Designer -

MME SGW PGW. 17-Feb-14 21:15 (Page 1) This sequence diagram was generated with EventStudio Sytem Designer - LTE Mobile Network Core Network 17-Feb-14 21:15 (Page 1) This sequence diagram was generated with EventStudio Sytem Designer - http://www.eventhelix.com/eventstudio/ UE is handed over using an S1 handover

More information

Development of MD8430A for LTE-Advanced Tests

Development of MD8430A for LTE-Advanced Tests Masaki Hizume, Hidenori Konno, Toshiro Miyazaki, Masato Sasaki, Katsuo Sakurai, Satoshi Wakasa, Shinichi Segawa, Tomoyuki Fujiwara, Yuji Sakai [Summary] As part of the expansion of LTE (Long Term Evolution)

More information

IxLoad LTE Evolved Packet Core Network Testing: enodeb simulation on the S1-MME and S1-U interfaces

IxLoad LTE Evolved Packet Core Network Testing: enodeb simulation on the S1-MME and S1-U interfaces IxLoad LTE Evolved Packet Core Network Testing: enodeb simulation on the S1-MME and S1-U interfaces IxLoad is a full-featured layer 4-7 test application that provides realworld traffic emulation testing

More information

RADIO PROTOCOLS FOR LTE AND LTE-ADVANCED

RADIO PROTOCOLS FOR LTE AND LTE-ADVANCED RADIO PROTOCOLS FOR LTE AND LTE-ADVANCED Seungjune Yi SungDuck Chun YoungDae Lee Sungjun Park SungHoon Jung LG Electronics, South Korea WILEY Foreword by Takehiro Nakamura Preface About the Authors 1 Introduction

More information

SON/RRM Functionality for Mobility Load Balancing in LTE Networks

SON/RRM Functionality for Mobility Load Balancing in LTE Networks SON/RRM Functionality for Mobility Load Balancing in LTE Networks Salvador Navarro Suria E.T.S.I. Telecomunicaciones Universidad Politécnica de Valencia A thesis sumitted for the degree of Master in Telecommunications

More information

3gpp Based LTE Network Architecture for Broad band Wireless Communication

3gpp Based LTE Network Architecture for Broad band Wireless Communication Volume 118 No. 24 2018 ISSN: 1314-3395 (on-line version) url: http://www.acadpubl.eu/hub/ http://www.acadpubl.eu/hub/ 3gpp Based LTE Network Architecture for Broad band Wireless Communication T.Vasu deva

More information

LTE Rel-9 9 and LTE-Advanced in 3GPP

LTE Rel-9 9 and LTE-Advanced in 3GPP LTE Rel-9 9 and LTE-Advanced in 3GPP May 19, 2009 Takehiro Nakamura 3GPP TSG-RAN chairman NTT DOCOMO, INC. May 19, 2009 Copyright 2008 NTT DOCOMO, Inc. All rights reserved 1 Introduction In 3GPP Rel-8

More information

Virtual Evolved Packet Core (VEPC) Placement in the Metro Core- Backhual-Aggregation Ring BY ABHISHEK GUPTA FRIDAY GROUP MEETING OCTOBER 20, 2017

Virtual Evolved Packet Core (VEPC) Placement in the Metro Core- Backhual-Aggregation Ring BY ABHISHEK GUPTA FRIDAY GROUP MEETING OCTOBER 20, 2017 Virtual Evolved Packet Core (VEPC) Placement in the Metro Core- Backhual-Aggregation Ring BY ABHISHEK GUPTA FRIDAY GROUP MEETING OCTOBER 20, 2017 LTE: All-IP, simplified network architecture [1] Introduction

More information

Separation of data and control planes

Separation of data and control planes planes Senior scientist 5Green Summer School KTH, Sweden 28 August 2014 2 Table of content Introduction Concept of separating user and control planes Modelling of control signalling traffic Impact to the

More information

Implementing a Session Aware Policy Based Mechanism for QoS Control in LTE

Implementing a Session Aware Policy Based Mechanism for QoS Control in LTE RESEARCH ARTICLE OPEN ACCESS Implementing a Session Aware Policy Based Mechanism for QoS Control in LTE Zouhair Bazzal, AbdelMehsen Ahmad, Ibrahim El Bitar, Ali Ghouwayel, and Hussein Hijazi School of

More information

POWER-ON AND POWER-OFF PROCEDURES

POWER-ON AND POWER-OFF PROCEDURES POWER-ON AND POWER-OFF PROCEDURES TABLE OF CONTENTS 1. Power-On Sequence 2. Network and Cell Selection 3. RRC Connection Establishment 4. Attach Procedure 5. Detach Procedure 1. POWER-ON SEQUENCE The following

More information

Session 4. DCE 를활용한실제 시스템과 NS-3 연동. 이규진 Multimedia & Wireless Networking Laboratory, SNU

Session 4. DCE 를활용한실제 시스템과 NS-3 연동. 이규진 Multimedia & Wireless Networking Laboratory, SNU Session 4. DCE 를활용한실제 시스템과 NS-3 연동 이규진 Multimedia & Wireless Networking Laboratory, SNU gjlee@mwnl.snu.ac.kr 1 Overview 2 NS-3 DCE DCE (Direct Code Execution) A framework provides facilities to execute

More information

1.1 Beyond 3G systems

1.1 Beyond 3G systems 1 Introduction The cellular wireless communications industry witnessed tremendous growth in the past decade with over four billion wireless subscribers worldwide. The first generation (1G) analog cellular

More information

4G LTE MOBILE TOWER TRANSMITTER RECEIVER REAL SYSTEM TRAINER MODEL - 4GLTE100

4G LTE MOBILE TOWER TRANSMITTER RECEIVER REAL SYSTEM TRAINER MODEL - 4GLTE100 4G LTE MOBILE TOWER TRANSMITTER RECEIVER REAL SYSTEM TRAINER MODEL - 4GLTE100 This trainer has been designed with a view to provide practical and experimental knowledge of 4G LTE Realtime Mobile Transmitter

More information

Peer-to-Peer Traffic over LTE: Simulated Performance during Cell Crossover

Peer-to-Peer Traffic over LTE: Simulated Performance during Cell Crossover Peer-to-Peer Traffic over LTE: Simulated Performance during Cell Crossover ENSC 833: Network Protocols and Performance Spring 2016 Project Report Presented by :Shweta Mazumder, Brett Wiens, Katherine Manson

More information

Evolution of OAI Software towards 5G NR Raymond Knopp Communication Systems Department EURECOM

Evolution of OAI Software towards 5G NR Raymond Knopp Communication Systems Department EURECOM Evolution of OAI Software towards 5G NR Raymond Knopp Communication Systems Department EURECOM Unleashing the potential of open-source in the 5G arena Outline Overview of 5G NR Network Evolution (very

More information

An LTE module for the Network Simulator 3 Giuseppe Piro, Nicola Baldo, Marco Miozzo March Wns Barcelona (Spain)

An LTE module for the Network Simulator 3 Giuseppe Piro, Nicola Baldo, Marco Miozzo March Wns Barcelona (Spain) An LTE module for the Network Simulator 3 Giuseppe Piro, Nicola Baldo, Marco Miozzo - 25 March 2011 - Wns3 2011 Barcelona (Spain) Outline About the Long Term Evolution (LTE) Development of the LTE module

More information

5G: an IP Engineer Perspective

5G: an IP Engineer Perspective 5G: an Engineer Perspective Igor Giangrossi Principal Consulting Engineer /Optical Networks igor.giangrossi@nokia.com 1 NANOG 75 A Brief History of Mobile Networks From analog voice to high speed Internet

More information

Authentication of 4G LTE-Advanced System Model

Authentication of 4G LTE-Advanced System Model Authentication of 4G LTE-Advanced System Model Ghassan A. Abed Abstract LTE-Advanced was accomplished in late of 2010 and it enhanced the LTE spectrum flexibility over carrier aggregation, further its

More information

Primebit Solution MASTERED DIPLOMA IN PROTOCOL DEVELOPMENT COURSE CONTENT

Primebit Solution MASTERED DIPLOMA IN PROTOCOL DEVELOPMENT COURSE CONTENT MASTERED DIPLOMA IN PROTOCOL DEVELOPMENT COURSE CONTENT MODULE 1 : UMTS (3G) AND GSM (2G) BASIC 2G and 3G Network Architecture - CS & PS domain. RAT- FDMA, TDMA, CDMA, WCDMA, DFDMA, SCFDMA. SDU,PDU,UMTS

More information

The Open-Source SDR LTE Platform for First Responders. Software Radio Systems

The Open-Source SDR LTE Platform for First Responders. Software Radio Systems The Open-Source SDR LTE Platform for First Responders Software Radio Systems www.softwareradiosystems.com www.github.com/srslte Outline SRS - Software Radio Systems NIST PSIAP and OpenFirst srslte The

More information

- Page 1 of 8 -

- Page 1 of 8 - LTE Load Tester v3.0 Release Notes - Page 1 of 8 - Introduction Polaris Networks LTE Load Tester is a test-tool to generate traffic load on an LTE EPC Node to measure and analyze the performance of the

More information

An Extension of the ns-3 LTE Module to Simulate Fractional Frequency Reuse Algorithms

An Extension of the ns-3 LTE Module to Simulate Fractional Frequency Reuse Algorithms An Extension of the ns-3 LTE Module to Simulate Fractional Frequency Reuse Algorithms Piotr Gaw lowicz 1 Nicola Baldo 2 Marco Miozzo 2 1 AGH University of Science and Technology Kraków, Poland 2 Centre

More information

embms application tests with the R&S CMW 500 and R&S CMWcards

embms application tests with the R&S CMW 500 and R&S CMWcards embms application tests with the R&S CMW 500 and R&S CMWcards Fig. 1: The R&S CMW500 is the first test instrument in the world to boast an integrated BM-SC service layer, with the result that it can be

More information

Release Note for LTE Signaling

Release Note for LTE Signaling Release Note 3.2.80 for LTE Signaling New Features compared to version 3.2.70: Support of RLC Throughput Measurement Support of Internal Fading with MIMO 4x2 (single cell), requires R&S CMW base software

More information

Long Term Evolution - Evolved Packet Core S1 Interface Conformance Test Plan

Long Term Evolution - Evolved Packet Core S1 Interface Conformance Test Plan Long Term Evolution - Evolved Packet Core S1 Interface Conformance Test Plan Table of Contents 1 SCOPE... 10 2 REFERENCES... 10 3 ABBREVIATIONS... 11 4 OVERVIEW... 14 5 TEST CONFIGURATION... 16 5.1 NETWORK

More information

Primebit Solution EXPERT DIPLOMA IN PROTOCOL TESTING COURSE CONTENT

Primebit Solution EXPERT DIPLOMA IN PROTOCOL TESTING COURSE CONTENT EXPERT DIPLOMA IN PROTOCOL TESTING COURSE CONTENT MODULE 1 : UMTS (3G) AND GSM (2G) BASIC 2G and 3G Network Architecture - CS & PS domain. RAT- FDMA, TDMA, CDMA, WCDMA, DFDMA, SCFDMA. SDU,PDU,UMTS N/W

More information

Original Circular Letter

Original Circular Letter LTE-Advanced Original Circular Letter LTE-Advanced will be an evolution of LTE. Therefore LTE- Advanced must be backward compatible with LTE Release 8. LTE-Advanced requirements will meet or even exceed

More information

LTE-Advanced The solution for IMT-Advanced

LTE-Advanced The solution for IMT-Advanced LTE-Advanced The solution for IMT-Advanced Hideshi Murai, Maria Edvardsson and Erik Dahlman Ericsson Research Definitions IMT-Advanced A family of radio-access technologies fulfilling IMT- Advanced requirements

More information

07/08/2016. Sami TABBANE. I. Introduction II. Evolved Packet Core III. Core network Dimensioning IV. Summary

07/08/2016. Sami TABBANE. I. Introduction II. Evolved Packet Core III. Core network Dimensioning IV. Summary Core network and transmission dimensioning Sami TABBANE 1 CONTENTS I. Introduction II. Evolved Packet Core III. Core network Dimensioning IV. Summary 2 1 CONTENTS I. Introduction 3 Introduction LTE Commercialization

More information

PERFORMANCE ANALYSIS OF VoIP SERVICES IN LTE NETWORKS

PERFORMANCE ANALYSIS OF VoIP SERVICES IN LTE NETWORKS Bulletin of the Transilvania University of Braşov Vol. 9 (58) No. 2-2016 Series I: Engineering Sciences PERFORMANCE ANALYSIS OF VoIP SERVICES IN LTE NETWORKS R. CURPEN 1 S. ZAMFIR 1 I. ILIESCU 1 T. BĂLAN

More information

LTE RAN Operation (ARI0001) Course Outline

LTE RAN Operation (ARI0001) Course Outline (ARI0001) Course Outline LTE RAN Operation This four day course focuses on LTE RAN operations. ariesogeo exercises will enhance LTE/ VoLTE theory. Section 1 E-UTRA Introduction E-UTRA Features: Radio Access,

More information

5G NSA for MME. Feature Summary and Revision History

5G NSA for MME. Feature Summary and Revision History Feature Summary and Revision History, on page 1 Feature Description, on page 2 How It Works, on page 5 Configuring, on page 10 Monitoring and Troubleshooting, on page 13 Feature Summary and Revision History

More information

Temporary Document Page 2 - switches off, the allocated resources and PCC rules information of PDN GWs used by the UE in non- network will not be dele

Temporary Document Page 2 - switches off, the allocated resources and PCC rules information of PDN GWs used by the UE in non- network will not be dele Temporary Document Page 1 - TSG SA WG2 Architecture S2#58 S2-072558 25-29 June 2007 Orlando, FL, USA Source: Huawei Title: Attach Type in attach procedure Document for: Discussion / Approval Agenda Item:

More information

HSPA+ Advanced Smart Networks: Multipoint Transmission

HSPA+ Advanced Smart Networks: Multipoint Transmission Qualcomm Incorporated February 2011 Table of Contents 1. Introduction... 1 2. Multipoint HSPA Description... 2 Single Frequency Multipoint HSPA... 2 Dual Frequency Multipoint HSPA... 3 3. Advantages...

More information

3G/4G Mobile Communications Systems. Dr. Stefan Brück Qualcomm Corporate R&D Center Germany

3G/4G Mobile Communications Systems. Dr. Stefan Brück Qualcomm Corporate R&D Center Germany 3G/4G Mobile Communications Systems Dr. Stefan Brück Qualcomm Corporate R&D Center Germany Chapter IX: Mobility Control 2 Slide 2 Mobility Control Handover Types Mobility Measurements in UMTS Mobility

More information

UNIK4230: Mobile Communications Spring Semester, Per Hj. Lehne

UNIK4230: Mobile Communications Spring Semester, Per Hj. Lehne UNIK4230: Mobile Communications Spring Semester, 2015 Per Hj. Lehne per-hjalmar.lehne@telenor.com 916 94 909 Network Architecture and Functionality 5 February 2015 Contents Network Architecture Protocol

More information

Mobile Network Evolution Part 2

Mobile Network Evolution Part 2 Mobile Network Evolution Part 2 From UMTS to LTE or How to Further Increase Network Capacity and QoS Andreas Mitschele-Thiel Advanced Mobile Communication Networks 1 Outline Evolution from Circuit Switching

More information

Jae-Hyun Kim

Jae-Hyun Kim 한국통신학회차세대초저지연 / 고효율무선접속기술워크샵 Full duplex MAC 기술 2016. 07. 14. Jae-Hyun Kim jkim@ajou.ac.kr Wireless Internet and Network Engineering Research Lab. http://winner.ajou.ac.kr School of Electrical and Computer

More information

Concepts of HSUPA. Agilent Technologies. Concepts of HSUPA

Concepts of HSUPA. Agilent Technologies. Concepts of HSUPA Agilent Technologies Agenda What is HSUPA? Layer 1 Overview UE and Network HSUPA Additions: Layer 2 and 3 Overview HSUPA Throughput Page 2 What is HSUPA? Why important? Three terms for the same thing:

More information

*************************************************************************************

************************************************************************************* ************************************************************************************* Title:-Implement a fire detection system using relevant wireless sensor network install in remote area[a2] Name:- Pawar

More information

Latency for Real-Time Machine-to-Machine Communication in LTE-Based System Architecture

Latency for Real-Time Machine-to-Machine Communication in LTE-Based System Architecture Latency for Real-Time Machine-to-Machine Communication in LTE-Based System Architecture Navid Nikaein and Srdjan Krco Achieving LOw-LAtency in Wireless Communications (www.ict-lola.eu) FP7 ICT Objective

More information

INICTEL-UNI 15/11/2010. Tecnología de Banda Ancha Inalámbrica LTE

INICTEL-UNI 15/11/2010. Tecnología de Banda Ancha Inalámbrica LTE INICTEL-UNI 15/11/2010 Tecnología de Banda Ancha Inalámbrica LTE 1 2Market Overview 2 LTE Presentation / Alcatel-Lucent. Title January 2008 Market Trends iphone (Apple) and G1 (Google) are bandwidth drivers

More information

CCNC 2016 A System-level Assessment of Uplink CoMP in LTE-A Heterogeneous Networks. Mohamad Tavakoli, Claudio Casetti

CCNC 2016 A System-level Assessment of Uplink CoMP in LTE-A Heterogeneous Networks. Mohamad Tavakoli, Claudio Casetti CCNC 2016 A System-level Assessment of Uplink CoMP in LTE-A Heterogeneous Networks Mohamad Tavakoli, Claudio Casetti LTE-A and CoMP LTE-Advanced: higher capacity and bitrates in a cost-efficient way Increased

More information

5G Non Standalone for SAEGW

5G Non Standalone for SAEGW This chapter describes the 5G Non Standalone (NSA) feature in the following sections: Feature Summary and Revision History, on page 1 Feature Description, on page 2 How It Works, on page 3 Configuring

More information

New format LTE guide-v7_layout 1 10/01/ :33 Page 1. Understanding LTE.

New format LTE guide-v7_layout 1 10/01/ :33 Page 1. Understanding LTE. New format LTE guide-v7_layout 1 10/01/2013 10:33 Page 1 Understanding LTE www.anritsu.com New format LTE guide-v7_layout 1 10/01/2013 10:33 Page 1 Table of Contents Definition of FMC... 2 FMC motivations...

More information

DSL Transport on HSPA Performance

DSL Transport on HSPA Performance Appendix-A. DSL Transport on HSPA Performance Several investigations and analyzes have been performed in order to understand the effect of the DSL based UTRAN on the HSPA performance. Out of all these

More information

Protection Schemes for 4G Multihop wireless Networks

Protection Schemes for 4G Multihop wireless Networks Protection Schemes for 4G Multihop wireless Networks Sridevi, Assistant Professor, Department of Computer Science, Karnatak University, Dharwad Abstract:-This paper describes the relay node protection

More information

MASTER'S THESIS. Evaluating Video Quality Degradation From Data Packet Losses in an LTE Environment

MASTER'S THESIS. Evaluating Video Quality Degradation From Data Packet Losses in an LTE Environment MASTER'S THESIS 2009:111 Evaluating Video Quality Degradation From Data Packet Losses in an LTE Environment Alfonso Daniel Nombela Gordo Luleå University of Technology Master Thesis, Continuation Courses

More information

WCDMA evolution: HSPA and MBMS

WCDMA evolution: HSPA and MBMS Chapter: 3G Evolution 8 WCDMA evolution: HSPA and MBMS Isael Diaz isael.diaz@eit.lth.se Department of Electrical and Information Technology 02-Apr-2009 3G Evolution - HSPA and LTE for Mobile Broadband

More information

Technical Specification LTE; Evolved Universal Terrestrial Radio Access (E-UTRA); Layer 2 - Measurements (3GPP TS version 11.0.

Technical Specification LTE; Evolved Universal Terrestrial Radio Access (E-UTRA); Layer 2 - Measurements (3GPP TS version 11.0. TS 136 314 V11.0.0 (2012-10) Technical Specification LTE; Evolved Universal Terrestrial Radio Access (E-UTRA); Layer 2 - Measurements (3GPP TS 36.314 version 11.0.0 Release 11) 1 TS 136 314 V11.0.0 (2012-10)

More information

4G LTE Technologies: System Concepts

4G LTE Technologies: System Concepts 4G LTE Technologies: System Concepts CK Toh, PhD, Chief Technology Advisor, ALICO Systems Inc., Torrance, CA, US ABSTRACT Recently, we have witnessed the roll out of LTE (Long Term Evolution, or so called

More information

White Paper Future technologies and testing for Fixed Mobile Convergence, SAE and LTE in cellular mobile communications.

White Paper Future technologies and testing for Fixed Mobile Convergence, SAE and LTE in cellular mobile communications. White Paper Future technologies and testing for Fixed Mobile Convergence, SAE and LTE in cellular mobile communications. Contents: Definition of Fixed-Mobile Convergence. Next Generation Network Technologies.

More information

3GPP TS V ( )

3GPP TS V ( ) TS 36.314 V10.2.0 (2011-09) Technical Specification 3rd Generation Partnership Project; Technical Specification Group Radio Access Network; Evolved Universal Terrestrial Radio Access (E-UTRA); Layer 2

More information

Certkiller 4A0-M02 140q

Certkiller 4A0-M02 140q Certkiller 4A0-M02 140q Number: 4A0-M02 Passing Score: 800 Time Limit: 120 min File Version: 16.5 http://www.gratisexam.com/ 4A0-M02 Alcatel-Lucent Mobile Gateways for the LTE Evolved Packet Core Added

More information

ETSI TS V ( ) Technical Specification

ETSI TS V ( ) Technical Specification TS 136 314 V10.1.0 (2011-06) Technical Specification LTE; Evolved Universal Terrestrial Radio Access (E-UTRA); Layer 2 - Measurements (3GPP TS 36.314 version 10.1.0 Release 10) 1 TS 136 314 V10.1.0 (2011-06)

More information

Networks Simulation Corso di Tecnologie di Infrastrutture di Reti

Networks Simulation Corso di Tecnologie di Infrastrutture di Reti Networks Simulation Corso di Tecnologie di Infrastrutture di Reti Carlo Augusto Grazia Department of Engineering Enzo Ferrari University of Modena and Reggio Emilia Modena, 1 April 2015 C.A.Grazia (Unimore)

More information

RAN slicing as enabler for low latency services

RAN slicing as enabler for low latency services RAN slicing as enabler for low latency services Presented by A. Maeder, NOKIA Bell Labs Contributions by Z. Li, P. Rost, C. Sartori, A. Prasad, C. Mannweiler ITG 5.2.4 Fachgruppentreffen Dresden, June

More information

Performance Evaluation of VoLTE Based on Field Measurement Data

Performance Evaluation of VoLTE Based on Field Measurement Data Performance Evaluation of VoLTE Based on Field Measurement Data Ayman Elnashar, Mohamed A. El-Saidny, and Mohamed Yehia Abstract Voice over Long-Term Evolution (VoLTE) has been witnessing a rapid deployment

More information

5G NSA(Non-Standalone Architecture)

5G NSA(Non-Standalone Architecture) This chapter describes the following topics: Feature Summary and Revision History, page 1 Feature Description, page 2 How It Works, page 2 Configuring DCNR, page 5 Monitoring and Troubleshooting, page

More information

Carrier Aggregation. (one) Key Enabler for LTE-Advanced. Andreas Roessler. Meik Kottkamp

Carrier Aggregation. (one) Key Enabler for LTE-Advanced. Andreas Roessler. Meik Kottkamp Carrier Aggregation (one) Key Enaber for LTE-Advanced Andreas Roesser Technoogy Manager Rohde & Schwarz America andreas.roesser@rohde-schwarz.com Meik Kottkamp Technoogy Manager Rohde & Schwarz Germany

More information

Packet-oriented QoS management model for a wireless Access Point

Packet-oriented QoS management model for a wireless Access Point Packet-oriented QoS management model for a wireless Access Point draft-jobert-iccrg-ip-aware-ap-00.txt IETF 87, July 2013, Berlin Presenter: Philippe Cadro - philippe.cadro@orange.com Authors of the presentation:

More information

QOS-AWARE PROPORTIONAL FAIR (QAPF) DOWNLINK SCHEDULING ALGORITHM FOR LTE NETWORK

QOS-AWARE PROPORTIONAL FAIR (QAPF) DOWNLINK SCHEDULING ALGORITHM FOR LTE NETWORK QOS-AWARE PROPORTIONAL FAIR (QAPF) DOWNLINK SCHEDULING ALGORITHM FOR LTE NETWORK 1 ZIN MAR MYO, 2 MYAT THIDA MON 1,2 University of Computer Studies, Yangon E-mail: zinmarmyomyo@gmail.com,myattmon@gmail.com

More information

Abstract of the Book

Abstract of the Book Book Keywords IEEE 802.16, IEEE 802.16m, mobile WiMAX, 4G, IMT-Advanced, 3GPP LTE, 3GPP LTE-Advanced, Broadband Wireless, Wireless Communications, Cellular Systems, Network Architecture Abstract of the

More information

Towards Understanding TCP Performance on LTE/EPC Mobile Networks!

Towards Understanding TCP Performance on LTE/EPC Mobile Networks! Towards Understanding TCP Performance on LTE/EPC Mobile Networks! Binh Nguyen1, Arijit Banerjee1, Vijay Gopalakrishnan2, Sneha Kasera1, Seungjoon Lee2, Aman Shaikh2, and Jacobus (Kobus) Van der Merwe1

More information

3GPP TR V ( )

3GPP TR V ( ) TR 36.822 V.. (22-9) Technical Report 3rd Generation Partnership Project; Technical Specification Group Radio Access Network; LTE Radio Access Network (RAN) enhancements for diverse data applications (Release

More information

Dual Connectivity in LTE 資策會智通所 魏嘉宏

Dual Connectivity in LTE 資策會智通所 魏嘉宏 Dual Connectivity in LTE 資策會智通所 魏嘉宏 1 魏嘉宏 (Chia-Hung Wei) 現職 : 資訊工業策進會 / 智慧網通系統研究所 / 標準組 / 正工程師 2010/9~2013/1 國立台灣科技大學電子工程系博士畢 2 Background Scenario Architecture User Plane feature Control Plane feature

More information

A QoS-Aware Uplink Scheduling Paradigm for LTE Networks

A QoS-Aware Uplink Scheduling Paradigm for LTE Networks A QoS-Aware Uplink Scheduling Paradigm for LTE Networks Haidar Safa, Wassim El-Hajj, and Kamal Tohme Department of Computer Science American University of Beirut Beirut, Lebanon {hs33, we7, kgt2}@aub.edu.lb

More information

Multi-RAT Heterogeneous Networks. Presenter: S. Vasudevan, Technical Manager, Advanced Technology Standards

Multi-RAT Heterogeneous Networks. Presenter: S. Vasudevan, Technical Manager, Advanced Technology Standards Multi-RAT Heterogeneous Networks Presenter: S. Vasudevan, Technical Manager, Advanced Technology Standards What are Multi-RAT Heterogeneous Networks Integrated Networks supporting a range of cell sizes

More information

TTCN3 in Wireless Testing Eco Space

TTCN3 in Wireless Testing Eco Space TTCN3 in Wireless Testing Eco Space Accenture, its logo, and Accenture High Performance Delivered are trademarks of Accenture. Agenda Challenges in Test environment development for Wireless Products Critical

More information

ENERGY EFFICIENT VIDEO TRANSMISSION USING COOPERATION OF LTE AND WLAN

ENERGY EFFICIENT VIDEO TRANSMISSION USING COOPERATION OF LTE AND WLAN ENERGY EFFICIENT VIDEO TRANSMISSION USING COOPERATION OF LTE AND WLAN by Maryam Hamidirad B.Eng., Sharif University of Technology, 2009 A THESIS SUBMITTED IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR

More information

Acropolis Winter School on OAI4G LTE 2012

Acropolis Winter School on OAI4G LTE 2012 1 Introduction For this lab session, we make use of openairinterface.org emulation platform to analyze the control plane and data plane of LTE protocol stack. More specifically, we trace system information,

More information

The TCP Incast problem: the opposite of Buffer Bloat: what happens when ethernet switches don't have enough buffer?

The TCP Incast problem: the opposite of Buffer Bloat: what happens when ethernet switches don't have enough buffer? The TCP Incast problem: the opposite of Buffer Bloat: what happens when ethernet switches don't have enough buffer? Lincoln Dale Arista Networks Inc. ltd@aristanetworks.com About Arista How large scale

More information

Over-The-Top (OTT) Aggregation Solutions

Over-The-Top (OTT) Aggregation Solutions Over-The-Top (OTT) Aggregation Solutions Omkar Dharmadhikari, Wireless Architect odharmadhikari@cablelabscom CableLabs February 12, 2019 Agenda Introduction Why aggregation is important? Traditional Aggregation

More information

A Review on Soft Handover Schemes in LTE Cellular Networks

A Review on Soft Handover Schemes in LTE Cellular Networks http:// A Review on Soft Handover Schemes in LTE Cellular Networks Shreedhar K V M Department of Computer Science and Engineering R V College of Engineering Bengaluru, India - 560095 Abstract - Long Term

More information

Comparison between LTE and Rival Wireless Technologies (using Opnet 16)

Comparison between LTE and Rival Wireless Technologies (using Opnet 16) ENSC 427: COMMUNICATION NETWORKS SPRING 2013 Comparison between LTE and Rival Wireless Technologies (using Opnet 16) Team 10: Josh Ancill Kim Izmaylov Anton Khomutskiy jja48@sfu.ca kvi@sfu.ca aka78@sfu.ca

More information

Jurnal Teknologi. Handover Signaling for 3 Alternatives of Layer 3 Relay Node Implementation in LTE-advanced. Full paper

Jurnal Teknologi. Handover Signaling for 3 Alternatives of Layer 3 Relay Node Implementation in LTE-advanced. Full paper Jurnal Teknologi Full paper Handover Signaling for 3 Alternatives of Layer 3 Relay Node Implementation in LTE-advanced Nurzal Effiyana Ghazali a*, S. H. Syed Ariffin a, N. Fisal a, S. K. Syed Yusof a a

More information

HSDPA Protocols & Resource Allocation: Contents

HSDPA Protocols & Resource Allocation: Contents HSDPA Protocols & Resource Allocation: Contents HSDPA Transport Channel: HSDPA Protocol Architecture tasks/hsdpa Resource Allocation: Fast Packet Scheduling Fast Link Adaptation Fast H-ARQ () controls

More information

DEMONSTRATION OF AN EFFECTIVE 4G LTE NETWORK SIMULATOR TO ANALYZE PERFORMANCE AND ENSURE RELIABLE COMMUNICATION A THESIS IN ELECTRICAL ENGINEERING

DEMONSTRATION OF AN EFFECTIVE 4G LTE NETWORK SIMULATOR TO ANALYZE PERFORMANCE AND ENSURE RELIABLE COMMUNICATION A THESIS IN ELECTRICAL ENGINEERING DEMONSTRATION OF AN EFFECTIVE 4G LTE NETWORK SIMULATOR TO ANALYZE PERFORMANCE AND ENSURE RELIABLE COMMUNICATION A THESIS IN ELECTRICAL ENGINEERING Presented to the Faculty of the University Of Missouri

More information

LTE Networks: Benchmarks, Prospects and Deployment Limitation

LTE Networks: Benchmarks, Prospects and Deployment Limitation , July 2-4, 2014, London, U.K. LTE Networks: Benchmarks, Prospects and Deployment Limitation O.O. Oni, A.A.A. Atayero, F.E. Idachaba, A.S. Alatishe, Members, IAENG Abstract High speed packet access (HSPA)

More information