High-Performance and Energy-Efficient Mobile Web

Total Page:16

File Type:pdf, Size:1020Kb

High-Performance and Energy-Efficient Mobile Web High-Performance and Energy-Efficient Mobile Web Browsing on Big/Little Systems Yuhao Zhu and Vijay Janapa Reddi Department of Electrical and Computer Engineering The University of Texas at Austin [email protected], [email protected] Abstract plex and computationally intensive over the past decade. For Internet web browsing has reached a critical tipping point. example, Fig. 1 shows the network transmission time and Increasingly, users rely more on mobile web browsers to ac- content processing time for www.cnn.com over the past 11 cess the Internet than desktop browsers. Meanwhile, webpages years. We randomly pick one image from each year archived over the past decade have grown in complexity by more than by Internet Archive [ 3], and measure on a dual-core ARM tenfold. The fast penetration of mobile browsing and ever- Cortex-A9 mobile processor connected to a 100Mb/s Ethernet. richer webpages implies a growing need for high-performance The trend-line in the plot indicates a tenfold relative increase mobile devices in the future to ensure continued end-user in webpage computational intensity from the perspective of browsing experience. Failing to deliver webpages meeting compute versus network. hard cut-off constraints could directly translate to webpage As the computational intensity of webpages increases, there abandonment or, for e-commerce websites, great revenue loss. is growing concern over webpage loading time. A recent in- However, mobile devices’ limited battery capacity limits the vestigation concluded that users tend to abandon webpages degree of performance that mobile web browsing can achieve. that do not load within a certain cut-off latency [ 4]. Related In this paper, we demonstrate the benefits of heterogeneous statistics on e-commerce websites reveal that a 1-second delay systems with big/little cores each with different frequencies to in webpage load could result in a $2.5 million loss in sales achieve the ideal trade-off between high performance and en- per year [5]. The hard-constraint of cut-off latency implies a ergy efficiency. Through detailed characterizations of different need for high-performance mobile devices. However, energy webpage primitives based on the hottest 5,000 webpages, we constraints limit us from achieving desktop-level compute build statistical inference models that estimate webpage load capability on mobile devices. Therefore, the challenge is to time and energy consumption. We show that leveraging such ensure high performance while minimizing the energy con- predictive models lets us identify and schedule webpages us- sumption. Owing to a large scheduling space, heterogeneous ing the ideal core and frequency configuration that minimizes systems with big/little cores each with DVFS capabilities en- energy consumption while still meeting stringent cut-off con- able a flexible trade-off between performance and energy. straints. Real hardware and software evaluations show that In this paper, we demonstrate the benefits of big/little het- our scheduling scheme achieves 83.0% energy savings, while erogeneous systems in achieving an ideal performance and only violating the cut-off latency for 4.1% more webpages energy trade-off via scheduling. We harness the key insight as compared with a performance-oriented hardware strategy. that different webpages contain strong variances in load time Against a more intelligent, OS-driven, dynamic voltage and and energy consumption. Leveraging this fact, we propose frequency scaling scheme, it achieves 8.6% energy savings webpage-aware scheduling, a mechanism that explores the and 4.0% performance improvement simultaneously. webpage variance and intelligently schedules webpages using different core and frequency configurations for minimizing the 1. Introduction energy while still meeting the cut-off constraint. Mobile web browsing is shifting the balance of Internet Specifically, Fig. 2 shows the load time and energy con- traffic. Recent statistics indicate that users now spend 50.2% of sumption of six hot webpages loaded on the Cortex-A9 at their time using the web browser [1], causing mobile Internet 1.2 GHz. We observe strong variances across the webpages. traffic to surpass the amount of desktop Internet traffic in major For example, www.cnn.com takes approximately 6 seconds regions of the world [ 2]. The proliferation of mobile devices to load while consuming 8.9 Joules of energy. In contrast, and social networks is fueling this trend. Meanwhile, web www.craigslist.org takes less than 1 second to load monetization (i.e., the average revenue per user) is still 5X while consuming only 1.6 Joules of energy. Detailed charac- lower on mobile than desktop [ 1]. Media and advertisement terizations reveal that such variance is the result of inherent providers are harnessing this opportunity, and thus causing an variances of webpage primitives (e.g., HTML, CSS). Regres- even-faster penetration of mobile web browsing. sion modeling techniques capture the inherent webpage vari- Accompanying the critical mass of the mobile market is ance, and let us estimate the webpage load time and energy the trend that webpages are becoming significantly more com- consumption under different core and frequency combinations. 4 8000 15 User JavaScript External events Computation Webpage Loading Time Data flow Energy Consumption Actions Engine Network Internal execution 12 3 6000 Data structures Browser components DOM Render 9 Tree External objects 2 4000 Trend line for computation 6 Style Time (s) Server Parsing Layout Paint Display Resolution 1 2000 Trend line 3 for network www.163.com www.cnn.com www.imdb.com www.ebay.com www.facebook.com www.craigslist.org Energy Consumption Energy Consumption (J) Page Loading Page Loading Time (ms) Style 0 0 0 Rules 2000 2005 2010 Webpages Year Fig. 3: Overview of the web browser architecture. Fig. 1: Increasing computa- Fig. 2: Load time and energy tional intensity of webpages. consumption of webpages. additional second. A 4 second webpage load time can translate to a 25% increase in webpage abandonment [ 5]. On the basis of the estimations, we predict the ideal execution Furthermore, in a world where mobile web-based e- core and frequency for webpages and schedule them accord- commerce is rapidly emerging as the new means of conducting ingly to satisfy the cut-off constraint with the least energy. In online sales, missing the cut-off load time can have signifi- summary, we make the following contributions in this paper: cant financial ramifications to institutions [ 1]. A recent study 1. We explore the energy-delay trade-off of big/little systems concluded that an e-commerce website generating a revenue for mobile web browsing and demonstrate the potential of $100,000 per day stands to lose up to $2.5 million in sales benefits (Sec. 4). each year for every second of delay in webpage load [ 5]. 2. We identify the root cause of webpage variance by char- acterizing and quantifying different aspects of webpage 2.2. The Web Browser Architecture primitives (Sec. 5). At the center of the web browser architecture is the render- 3. We show that webpage load time and energy consumption ing engine, which processes the webpage documents returned can be predicted via regression models (Sec. 6). from the server and displays them on the screen. After the 4. We demonstrate how to leverage a big/little system effec- webpage is loaded, users can dynamically interact with the tively via the proposed webpage-aware scheduling (Sec. 7). webpage through JavaScript. In this paper, we focus only on Measured hardware results, of a synthesized big/little system the rendering engine because it is the first determinant part of based on the ARM Cortex-A9 and A8 processors, demon- the mobile web browsing experience. Dynamic webpage inter- strate that as compared with a performance-oriented hardware action is beyond the scope of this work, and we refer readers strategy, webpage-aware scheduling achieves 83.0% energy to Sec. 8 for a discussion about JavaScript. Using Fig. 3, we savings, while only violating the cut-off latency for 4.1% present an overview of the web browser architecture. more webpages. Against a more intelligent OS-driven DVFS The rendering engine starts with parsing HTML and CSS strategy, webpage-aware scheduling achieves 8.6% energy documents. HTML contains the text and overall skeleton of reduction while shortening load time by 4.0% on average. a webpage through a combination of tags, each associated with zero or more attributes. Along with parsing the HTML 2. Mobile Web Browsing file, the rendering engine dynamically constructs the DOM We explain what is important for end users during the mo- (Document Object Model) tree data structure, in which each bile web browsing experience (Sec. 2.1). Following that we node corresponds to a HTML tag, an attribute, or a section of provide a brief overview of how a web browser works, and we text. The DOM tree can be viewed as an abstract and concise identify potential sources of computational intensity (Sec. 2.2). representation of the webpage structure. Complementary to HTML, CSS determines the webpage’s 2.1. The Mobile Web Browsing Experience visual style information through a set of style rules, each with A neurological study conducted in 2010 by the CA Tech- a selector and a set of properties. Each rule is intended to nologies concluded that poor web browsing experience can select one or a group of HTML tags to apply the properties. lead to “web stress” that causes users to use a rival website During parsing, the rendering engine extracts CSS rules and or abandon the transaction altogether [ 4]. Google engineers constructs the corresponding data structure. measured this effect, stating that “a 400 ms delay leads to a Given the DOM tree and CSS rules, the style resolution mod- 0.44% drop in search volume” [ 6]. With over 2.27 billion ule determines the webpage’s style information (e.g.
Recommended publications
  • An Architecture of Mobile Web 2.0 Context-Aware Applications in Ubiquitous Web
    JOURNAL OF SOFTWARE, VOL. 6, NO. 4, APRIL 2011 705 An Architecture of Mobile Web 2.0 Context-aware Applications in Ubiquitous Web I-Ching Hsu Department of Computer Science and Information Engineering National Formosa University 64, Wenhua Rd., Huwei Township, Yunlin County 632, Taiwan [email protected] Abstract—The rapid development of the wireless an uniformly access to cope with the heterogeneous communication technologies, including wireless sensors, effects, including various context presentation, context intelligent mobile devices, and communication protocols, information, mobile device constraints, and context has led to diverse mobile devices of accessing various middleware [4]. To allow interoperability among the context-aware systems. Existing context-aware systems only various context-aware systems and mobile devices, a focus on characterize the situation of an entity to exhibit the advantage of contextual information association. The common standard is needed to uniformly access context contextual information can represent semantic implications information provided via a fundamental infrastructure. to provide decidable reasoning services, but it has no The Web 2.0 technologies provide a catalytic solution to mechanism to facilitating the interoperability and this problem. reusability among heterogeneous context-aware systems and Within the last two to three years, the Internet has various mobile devices. This study addresses these issues greatly changed our way of sharing resources and developing a Multi-layer Context Framework (MCF) that information. As well known, Web 2.0 is recognized as integrates Web 2.0 technologies into context-aware system the next generation of web applications proposed by T. for supporting ubiquitous mobile environment. The O’Reilly [5].
    [Show full text]
  • Web & Mobile Security
    WEB & MOBILE SECURITY KNOWLEDGE AREA (DRAFT FOR COMMENT) AUTHOR: Sascha Fahl – Leibniz University EDITOR: Emil Lupu – Imperial College London © Crown Copyright, The National Cyber Security Centre 2019. Following wide community consultation with both academia and industry, 19 Knowledge Areas (KAs) have been identified to form the scope of the CyBOK (see diagram below). The Scope document provides an overview of these top-level KAs and the sub-topics that should be covered under each and can be found on the project website: https://www.cybok.org/. We are seeking comments within the scope of the individual KA; readers should note that important related subjects such as risk or human factors have their own knowledge areas. It should be noted that a fully-collated CyBOK document which includes issue 1.0 of all 19 Knowledge Areas is anticipated to be released in October 2019. This will likely include updated page layout and formatting of the individual Knowledge Areas. Web and Mobile Security Sascha Fahl September 2019 INTRODUCTION The purpose of this Knowledge Area is to provide an overview of security mechanisms, attacks and defences in modern web and mobile ecosystems. This overview is intended for use in academic courses in web and mobile security, and to guide industry professionals who are interested in an overview of web and mobile security. Web and mobile security have a long history, and their impact on overall information security is tremendous due to the sheer prevalence of web and mobile applications. Covering both web and mobile security, this Knowledge Area emphasises the intersection of their security mechanisms, vul- nerabilities and mitigations.
    [Show full text]
  • Multimedia Messaging Service : an Engineering Approach To
    Multimedia Messaging Service Multimedia Messaging Service An Engineering Approach to MMS Gwenael¨ Le Bodic Alcatel, France Copyright 2003 John Wiley & Sons Ltd, The Atrium, Southern Gate, Chichester, West Sussex PO19 8SQ, England Telephone (+44) 1243 779777 Email (for orders and customer service enquiries): [email protected] Visit our Home Page on www.wileyeurope.com or www.wiley.com All Rights Reserved. No part of this publication may be reproduced, stored in a retrieval system or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, scanning or otherwise, except under the terms of the Copyright, Designs and Patents Act 1988 or under the terms of a licence issued by the Copyright Licensing Agency Ltd, 90 Tottenham Court Road, London W1T 4LP, UK, without the permission in writing of the Publisher. Requests to the Publisher should be addressed to the Permissions Department, John Wiley & Sons Ltd, The Atrium, Southern Gate, Chichester, West Sussex PO19 8SQ, England, or emailed to [email protected], or faxed to (+44) 1243 770620. This publication is designed to provide accurate and authoritative information in regard to the subject matter covered. It is sold on the understanding that the Publisher is not engaged in rendering professional services. If professional advice or other expert assistance is required, the services of a competent professional should be sought. Other Wiley Editorial Offices John Wiley & Sons Inc., 111 River Street, Hoboken, NJ 07030, USA Jossey-Bass, 989 Market Street, San Francisco, CA 94103-1741, USA Wiley-VCH Verlag GmbH, Boschstr. 12, D-69469 Weinheim, Germany John Wiley & Sons Australia Ltd, 33 Park Road, Milton, Queensland 4064, Australia John Wiley & Sons (Asia) Pte Ltd, 2 Clementi Loop #02-01, Jin Xing Distripark, Singapore 129809 John Wiley & Sons Canada Ltd, 22 Worcester Road, Etobicoke, Ontario, Canada M9W 1L1 Wiley also publishes its books in a variety of electronic formats.
    [Show full text]
  • Mobile Banking Frequently Asked Questions How Much Does This Service Cost?
    Mobile Banking Frequently Asked Questions How much does this service cost? There is currently no charge associated with the service. However, there may be charges associated with text messaging and data usage on your phone. Check with your wireless phone carrier for more information. Is it secure? Yes, the mobile banking service utilizes best practices from online banking, such as HTTPS, 128-bit SSL encryption, PIN, or password access and application time-out when your phone is not in use. Only the phones that you personally enroll in the service can access your accounts. In addition, no account data is ever stored on your phone. And in the event your phone is lost or stolen, the service can be immediately disabled by either going online to the Mobile Banking enrollment website or calling us. Do I need a text message or data plan? Yes, a text messaging and/or data plan is typically needed, as data usage can become expensive without them. Please check with your wireless carrier for more information. I'm not enrolled for online banking. What mobile carriers are supported? The Norrymobile banking app can be accessed through the following carriers: AT&T, Sprint, Verizon, T- Mobile, and any of their supported carriers. Can I still use this? You must first enable your bank account(s) for online banking before using mobile. What is Activation? Activation is a one-time process that helps ensure your security. After you enroll a phone, you will receive an activation code which will be required to begin using Text or Mobile Banking on your device.
    [Show full text]
  • Critical Mass the Worldwide State of the Mobile Web
    Critical Mass The Worldwide State of the Mobile Web Nielsen Mobile July 2008 Critical Mass: The Worldwide State of the Mobile Web Introduction Key Takeaways It is increasingly difficult to talk about the Internet, or media and marketing in general, without the conversation quickly • The US, UK and Italy are leaders in mobile Internet turning to mobile phones. penetration. 15.6 percent of mobile subscribers in the US, 12.9 percent of subscribers in the UK and 40 million mobile subscribers in the US, plus millions more 11.9 percent in Italy actively use the mobile Internet across Europe and Asia, surf the web through a mobile phone each month—checking email, exploring their social • We believe mobile Internet has reached a critical networks, making bank transactions and engaging in other mass as an advertising medium in the US. As of web activities right from their hands. May 2008, there were 40 million active users of the mobile Internet in the US, with individual sites that How has mobile Internet so quickly become part of the attract millions of unique users. This provides consumer media experience for millions? Through a scalable marketing potential with demographic confluence of essential factors in mobile Internet adoption breadth. and use, mobile Internet reached a critical mass this year, offering a large and diverse enough base of users to • Unlimited data packages are an important part of support large-scale mobile marketing efforts. the growth of the mobile Internet and are increasingly popular with US consumers. Today 14 percent of US wireless subscribers have unlimited data packages, and 50 percent of data users say they would prefer to have such a package.
    [Show full text]
  • Mobile Web Design This Webinar Is Presented by W3C to the Web Community As Part of an EU IST Project (3Gweb)
    Mobile Web Design This webinar is presented by W3C to the Web community as part of an EU IST project (3GWeb). The content of this webinar does not necessarily represent the official position of the W3C, or the position of any of the W3C members or W3C’s host institutions. (Lawyer says ‘Hi’!) 2 © MMVI Cameron Moll. This document is available under the W3C Document License. You are... Experienced with XHTML/CSS. Familiar with good markup techniques. Unsure about this “mobile web thing”. 3 © MMVI Cameron Moll. This document is available under the W3C Document License. Legacy 1910 5 © MMVI Cameron Moll. This document is available under the W3C Document License. “Pocket watches provide the closest historical parallel to the remarkable rise of the mobile phone.” —Jon Agar, Constant Touch 6 © MMVI Cameron Moll. This document is available under the W3C Document License. Staggering Numbers 1996 GSM phones in 103 countries 2000 10 million i-mode users (Japan) 2002 1 billion mobile phone users worldwide 2009 3 billion mobile phone users worldwide 7 © MMVI Cameron Moll. This document is available under the W3C Document License. UK More mobile phones than humans... 8 © MMVI Cameron Moll. This document is available under the W3C Document License. Quandary Reader Poll Highly scientific, statistically significant (not really!) 10 © MMVI Cameron Moll. This document is available under the W3C Document License. ~400 Participants 159 Unique handsets (Motorola RAZR, Palm Treo 650, Sony Ericsson K750i / K700i / T610, Nokia 6230...) 19 Manufacturers 44 Countries 11 © MMVI Cameron Moll. This document is available under the W3C Document License.
    [Show full text]
  • Apps and Mobile Web
    IAB Mobile Marketing Center of Excellence Apps and Mobile Web: Understanding the Two Sides of the Mobile Coin 16 December 2014 Agenda • Introduction • Where Mobile Users Spend Their Time • Explaining the “App Gap” • Search and Social are the Mobile “Front Door” for Web Content 1 Introduction Mobile internet use is divided into two modes: browsing the mobile web and using mobile applications (“apps”). Many kinds of content or service can be provided or accessed equally well via either app or mobile web; however, some are available exclusively via one or the other. Media companies, agencies, and marketers face some confusion regarding whether they should focus their strategies predominantly on apps or mobile web. At the simplest level, many measurement firms report that mobile internet usage gravitates very heavily toward mobile apps, and so a naïve view emerges that apps have somehow “won,” and that mobile web is unimportant. This overlooks the important role mobile websites play in people’s total mobile internet experiences. In practice, in daily use of the mobile internet, consumers make use of both apps and mobile browsing, trading off based on expediency and personal preference. To investigate the question of browsing versus using mobile apps, the IAB commissioned Harris Poll to survey over 2,000 U.S. adults about their views on apps and mobile websites, and how they find and share both apps and websites that they access on their smartphones. The survey was conducted online in December, 2014. Source: IAB 2014 Apps and Mobile Web Consumer Survey, conducted online by Harris Poll, 2 December 12-16, 2014.
    [Show full text]
  • Libraries and Mobile Technologies
    On the Move with the Mobile Web: Libraries and Mobile Technologies Ellyssa Kroski http://www.ellyssakroski.com Kroski, Ellyssa On the Move with the Mobile Web: Libraries and Mobile Technologies Chapter One: What is the Mobile Web?............................................................................................3 The Mobile Web Defined.............................................................................................................. 3 Who Are the Early Adopters? ....................................................................................................... 3 What Are People Doing with Their Mobile Devices? .................................................................. 4 Benefits of the Mobile Web .......................................................................................................... 6 Mobile Web Challenges ................................................................................................................ 6 Mobile Web Resources & Reports................................................................................................ 7 Notes ............................................................................................................................................. 8 Chapter 2: Mobile Devices ............................................................................................................. 10 Mobile Phone Devices ................................................................................................................ 10 Mobile Phone Manufacturers.......................................................................................................11
    [Show full text]
  • SMS-Based Web Search for Low-End Mobile Devices
    SMS-Based Web Search for Low-end Mobile Devices Jay Chen Lakshmi Subramanian Eric Brewer New York University New York University University of California, [email protected] [email protected] Berkeley [email protected] ABSTRACT 1. INTRODUCTION Short Messaging Service (SMS) based mobile information The exceptional growth of the mobile phone market has services have become increasingly common around the world, motivated the design of new forms of mobile information especially in emerging regions among users with low-end mo- services. With the growth of Twitter [1], SMS GupShup [2] bile devices. This paper presents the design and implemen- and other social messaging networks, the past few years have tation of SMSFind, an SMS-based search system that en- witnessed a growing prevalence of Short-Messaging Service ables users to obtain extremely concise (one SMS message (SMS) based applications and services. SMS-based services of 140 bytes) and appropriate search responses for queries are also increasingly common in developing regions. Despite across arbitrary topics in one round of interaction. SMS- the increasing power of mobile devices with the advent of Find is designed to complement existing SMS-based search “smart phones”, a significant fraction of mobile devices in services that are either limited in the topics they recognize developing regions are still simple low-cost devices with lim- or involve a human in the loop. ited processing and communication capabilities. Due to a Given an unstructured search query, SMSFind, uses a con- combination of social and economic factors, voice and SMS ventional search engine as a back-end to elicit several search will likely continue to remain the primary communication responses and uses a combination of information retrieval channels available for a non-trivial fraction of the popula- techniques to extract the most appropriate 140-byte snippet tion in developing regions.
    [Show full text]
  • Internet and Online Media Usage on Mobile Phones Among Low-Income Urban Youth in Cape Town
    Internet and Online Media Usage on Mobile Phones among Low-Income Urban Youth in Cape Town Tino Kreutzer Centre for Film and Media Studies University of Cape Town [email protected] Paper submitted to the preconference workshop at the 2009 conference of 1 the International Communication Association (ICA), Chicago, 20-21 May, 2009 Some rights reserved: This work is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License. Complete results, survey topline, questionnaire and dataset are available on tinokreutzer.org/mobile Introduction Mobile phones have long surpassed traditional landlines as the most common voice communication technology – particularly due to the marked growth in new mobile phone users in most so-called developing countries (Feldmann, 2003). In South Africa, a country still trying to escape its legacy of dramatic racial inequalities, mobiles have enjoyed spectacular growth over the past decade, with more than 60% of all South Africans above the age of 16 already owning a phone themselves (Research ICT Africa [RIA], 2009; All Media and Product Survey [AMPS], 2008). This rapid growth – up from just 18% in 2000 (International Telecommunications Union [ITU], 2001) – is at least partly due to the immense popularity of prepaid subscriptions and low-cost phones (Hodge, 2005; Esselaar & Stork, 2005), which have made it possible even for many of the country’s youth (most of whom remain in stark poverty) to own or use a phone themselves. But this growth extended beyond the number of young people texting or calling each other: As 1 The data capturing process for this project was funded in part by the Council for Scientific and Industrial Research.
    [Show full text]
  • 1/14/2015 6244-0455-PII-006.Docx: 171 Chapter 6 Mobile Internet the Politics of Code and Networks Lela Mosemghvdlishvili Introd
    1/14/2015 6244-0455-PII-006.docx: 171 Chapter 6 Mobile Internet The Politics of Code and Networks Lela Mosemghvdlishvili Introduction The term mobile internet refers to accessing the internet through (cellular) mobile devices and represents the convergence of mobile telephony, internet services, and personal computing. Whereas iMode (mobile internet and data services) was introduced in Japan as long ago as 1999 and became widely used (Barnes & Huff, 2003; Daliot-Bul, 2007), the release of the iPhone is commonly regarded as the decisive moment in popularizing mobile internet and smartphones in the West (Goggin, 2009; West & Mace, 2010; Campbell & La Pastina, 2010). The convergence of mobile phones into programmable hand-held computers has reshaped the ICT industry and created a lucrative mobile internet business that spans the telecommunications, handset manufacturer, and software sectors. Goggin (2012, p.742) rightly points out that mobile media nowadays represents ‘a new, exciting, but troubling set of developments.’ Mobile technologies are indeed exciting, as they symbolize a new cultural platform and one of the most personal technologies available today. However, their development is also troubling, because critical issues such as net neutrality, access to the internet, and control over and the commodification of user data are extended to the mobile domain and require timely evaluation. Exploring the development of the mobile internet is crucial for understanding the ubiquitous internet. Indeed, it is not only that increasingly more users access the web through mobile devices, but industry standards, structures, and practices are also changing, with implications for society at large. In this chapter, I aim to pinpoint the most discernible patterns of how the mobile internet is shaped.
    [Show full text]
  • 2G GSM GPRS Wireless Lab Simulation Presentation
    2G GSM GPRS Wireless Lab Simulation 818 West Diamond Avenue - Third Floor, Gaithersburg, MD 20878 Phone: (301) 670-4784 Fax: (301) 670-9187 Email: [email protected] Website: http://www.gl.com 1 COMMUNICATIONS NETWORKS LAB (CNL) ❑ Each LAB test system emulates all the 2G network elements and traffic types within the Wireless infrastructure. ❑ Provides a base network environment that enables the researchers to test applications, devices, and services prior to deployment on real-time networks 2 2G 3G 4G COMMUNICATIONS NETWORKS 3 2G LAB DIAGRAM 4 MAPS™ (Message Automation & Protocol Simulation) ❑ Multi-protocol, Multi-technology Platform. ❑ Simulate any node, and any interface in network with MAPS™ (except Air interface). ❑ Supports Emulation, Conformance, and Load testing of a variety of protocols over IP, TDM, and Wireless networks. 5 2G CALL SCENARIOS Various GSM GPRS network procedures are supported Mobile to simulated UE SMS (CS) simulating the 2G elements and multi-interfaces: Mobile-to-Mobile Voice Call (CS) Mobile Web Browsing (PS) Mobile Originated Call (MOC) Simulated UE web browsing (PS) Mobile Terminated Call (MTC) Attach Procedures Simulated UE to mobile voice call (CS) Identity Procedures Mobile to Simulated UE voice call (CS) PDP Context Creation, Simulated UE to simulated UE voice call (CS) Activation, Update Deactivation Mobile-to-Mobile SMS Call (CS) and Deletion Procedures Mobile Originated SMS Web Browsing GPRS Session Mobile Terminated SMS Detach Procedures Simulated UE to mobile SMS (CS) 6 Complete 2G and
    [Show full text]