Implementation of Real Time Tracking using Unstructured Supplementary Service Data

Size: px
Start display at page:

Download "Implementation of Real Time Tracking using Unstructured Supplementary Service Data"

Transcription

1 Implementation of Real Time Tracking using Unstructured Supplementary Service Data Aniket Dabas, and Chetna Dabas Abstract Real time tracking is required in many aspects of life like tracking vehicle fleet for optimized use of resources, tracing a stolen object and so on. Unstructured Supplementary Services Data (USSD) is a GSM service that allows high-speed interactive communication between the subscribers and applications across a GSM Network. The primary benefits of USSD are that it is cheaper then existing methods and allows for very fast communication between the user and an application giving the system real-time characteristics. This paper proposes a unique real-time tracking method with its architecture using USSD and GPS system on mobile station which even works in VPLMN and is faster than existing methods. The proposed method has been implemented using GPS, GSM and AJAX technologies. Keywords USSD, Real-time tracking, Implementation, Architecture. I. INTRODUCTION NSTRUCTURED Supplementary Service Data (USSD) U is a technology unique to GSM. It is a capability built into the GSM standard for support of transmitting information over the signaling channels of the GSM network. USSD provides session-based communication, enabling a variety of applications. USSD is widely preferred over other existing technologies due to its key attributes described next. Firstly, USSD is instead session oriented, unlike SMS, which is a store-and-forward, transaction-oriented technology. Secondly, turnaround response times for interactive applications are shorter for USSD than SMS because of the session-based feature of USSD, and because it is NOT a store and forward service. Thirdly, users do not need to access any particular phone menu to access services with USSD- they can enter the Unstructured Supplementary Services Data (USSD) command direct from the initial mobile phone screen. Fourthly, USSD commands are routed back to the home mobile network s Home Location Register (HLR), allowing for the virtual home environment concept the ability for services (based on USSD in this case) to work just as well and in exactly the same way when users are roaming. Fifthly, Unstructured Supplementary Services Data (USSD) works on all existing GSM mobile phones. And lastly, both SIM Application Toolkit and the Wireless Application Protocol support USSD. This paper aims to exploit these USSD features to propose a unique real-time tracking method, which even works in roaming and is faster then SMS and GPRS. The network resources and hardware requirement of USSD is very low. II. METHODS AND MATERIALS The proposed method is a unique real-time tracking method, which is faster than SMS and GPRS and even works in roaming environment. The network resources and hardware requirement of USSD is very low and hence helps in the encouraged use of the proposed method. The system specifications and proposed architecture of the proposed method have been described ahead. A. System Specifications Interface definitions There are various interfaces involved in order to achieve real time tracking in the architecture involved (some of which have been designed specially for the purpose). Three of the most relevant ones are described below: i. Application to application interface design For a proper communication to take place there has to be an agreement between the transmitting node and the end node involved (in this case mobile station and a website) in a welldefined format. In our case, total length of the USSD data = 20. The first 10 digits represent X axis and latter 10 represent Y axis. Each 10 is explained in Fig. 1. Fig. 1 Format of 10 bits of USSD data For example, if the X coordinate = and Y coordinate = the full USSD string formed will be *SAC* # It is illustrated in Figure 2. MS can send this string with the help of AT commands/modem commands (Below you can see an example of account interrogation through an AT command). 241

2 Fig. 2 Snapshot of USSD String generation When data part of the USSD string reaches application on web server, it is decoded in accordance to the format described. ii. USSD communication between network and Intelligent Network This string is routed to SCP/IN by HLR. The message flow between different entities in this case is provided below. Fig. 3 USSD sequence of events between network and IN The Intelligent Network sends the acknowledgement of data reception in end message if the data is saved, in all other cases not ok message is sent. In case a Not OK message is received or time-out occurs the application tries to resend data at some other time. The snapshot below shows the flow of messages for the example taken above. Fig. 4 Emulator result of IN-Network communication iii. IN-Web server interface In the proposed method, following interface is designed in order to make message exchange between IN and web server: XML request form IN <?xml version="1.0"?> <!DOCTYPE cp_request SYSTEM "cp_req_websvr.dtd"> <in_comm_out> //type of request <user></user> //From where or source identification <password></password> //Authentication <user_id></user_id> //user identification <transaction_id></transaction_id> //session information <data sno="" timestemp="">coordinates</data> //data part with serial number and time stemp <application></application> //for internal identification within IN <mode></mode> //mode of operation real time or one shot </in_comm_out> //end of request XML request form Web server <in_comm_in> <user></user> <password></password> <user_id></user_id> <transaction_id></transaction_id> <application></application> <mode></mode> </in_comm_in> The fields in the XML document have the following details associated with them: user & password: Used to identify and authenticate the source of the party sending the XML request i.e. both IN and Web server use this field use this field to authenticate to each other. For the 242

3 purpose it is necessary the both the Web server account and the SIM card account should be present on IN. user_id: This field identifies the end user (being tracked) whose information being communicated. transaction_id: This field is used to distinguish between different call contexts of a given user (as for single user may be running many different types of operations at once. For example a user may be recharging his account through website and making a voice call and the location information may be updating at the same time in this case transaction_id is used to distinguish between different call contexts on IN). Transaction id is calculated using an encryption algorithm that uses system time, user id, password, call context on IN and a public private key system. If the data is being sent in real-time authentication (user and password) and user_id are only required in first request. In rest of the transactions only transaction_id is required since this is a unique number generated by IN and is only valid until the time the call context is present on IN (this context is cleared at the end of each call). <data sno="" timestemp="">coordinates</data> This tag contains the actual data: serial number sno and timestamp (this field is a UNIX time stamp which is the number of seconds since 1970), which contains time at which the coordinates are also transmitted with coordinates. The number of such tags is variable and depends on the amount of data that has to be transmitted in one go. This greatly reduces the number of messages required during first communication between IN and web server where large amount of data is involved. application: Since there are many applications running on IN which utilize this XML request interface, this tag helps identify the type of request and the application that will process it on IN. mode: This tag indicates if the data is required in real-time or only when requested. Fig. 5 The Proposed System Architecture This architecture need software development on MS, IN and web server software. The application on the MS reads the GPS data and transmits this data in form of a USSD string. This data is routed to IN through HLR. On IN the transmitted data is saved and confirmation of successful operation is sent back to the mobile application. Instead of being saved this data can also be sent to web server as XML but this will increases load on IN-web server interface, hence this is done only when the end user is online and data is required in real time to be displayed to him. The data sent by MS is in no way manipulated by IN, so a defined standard needs to be in place for this data. When end user requests web server for the required data through a web browser, a XML request is sent by the server to IN, in reply server gets all the data since its last request and a flag is sent on IN which tells it that user is now on line and that data is required in real time now (from now onwards IN does not save any data in data base but it sends it directly to the web server). For each XML post by IN containing data the web server sends an acknowledgement back to it. B. The Proposed Architecture In the proposed architecture the service of real time tracking is provided be a website which also provides software for the MS. This website is responsible for presenting the real time location related data to the end user in presentable format. Several websites like these can be client of a given IN that performs all the data collection and charging related operations. SIM cards in all the tracked entities hold an account on IN like any other cell phone user. 243

4 After location related data is communicated to web server it combines this information with maps from a maps server (or it may have maps available locally) and provides visual display to user. A live feed of information is sent to web browser where AJAX provides an interactive way to handle and display this data. Fig. 6 Successful case Call Flow If the acknowledgement is not received by IN within a specified period of time, a timeout occurs on IN and the XML post is sent again. If after 3 consecutive failures no reply is received, the connection is assumed to be broken and the flag that indicates online presence of end user is unset. Fig. 8 Implementation To control the application on the mobile station the service provider site sends commands to it. IN sends these commands are as SMS to the mobile station, where application reads and executes it. In above architecture interface for authentication and connection establishment is similar to bank refill. Since Data relating to each website is kept on SDP, real-time charging can be gone either on customer account or on website account (in case if the website is providing end to end service to the end user). INDRs will be generated for statistical and record purpose. III. RESULTS The paper proposes a unique architecture and its implementation using USSD, which ensures real-time behavior for location update while being cheaper and faster than the existing methods. Fig. 7 Time out Call Flow Other condition in which flag is unset when web server asks IN to change the mode of operation to offline. Every day in low traffic hours all the data collected during the day is transferred to web server via FTP to clear IN database and to keep data on web server up to date at least to a certain level. IV. DISCUSSION With the existing methods being used in the telecom industry, in order to display the location of the tracked entity, the GPRS service is used to communicate the location related data to the web server. Here HTTP interface is used to update the location of the tracked entity using GET or POST methods. In this case, if the roaming facility of the user is not activated then, he will not be able to access the GPRS service and hence the location related information of the tracked entity will not be updated on the web server. As a result, the entity would no longer remains traceable while in roaming. Another very important factor is cost. While on roaming and many times even within a country rates for GPRS service is higher out side local area. Also a lot of network resources are required for GPRS as compared to USSD (since USSD communication takes place on control channel). The proposed system takes care of the fact that even if the 244

5 roaming facility of the user is not activated, the location of the tracked entity can still be updated and hence displayed. This becomes possible because the proposed system makes use of USSD service and USSD requests are always routed back to the home HLR. As a consequence, the location related information still reaches IN and hence the web server to be displayed to the end user. Also in many countries use of control channel is free, cost of this system is dramatically cut. This is especially true if MAP gateway is used (if some organization wants to use it instead of IN in case of high usage). REFERENCES [1] Ard Oerlemans, Joachim T. Rijsdam, Michael S.Lew, Real Time object tracking with relevance feedback,civr 07 Proceeding of the 6th ACM International conference on Image and Video retrieval, July [2] N. T. Siebel, and S. Maybank, "Real-time tracking of pedestrians and vehicles", Performance Evaluation of Tracking and Surveillance PETS 2001 (with CVPR 2001), Kauai, Hawaii, Dec 9th, CD-ROM proceedings. [3] Ismail Haritaoglu, Davis Harwood, Larry S. David, Real-Time Surveillance of People and Their Activities, IEEE Transactions on Pattern Analysis and Machine Intelligence, v.22 n.8, p , August

USSD. The USSD Evolution. txtnation provides carrier grade USSD API and interface options. Global Reach, Personal Touch.

USSD. The USSD Evolution. txtnation provides carrier grade USSD API and interface options. Global Reach, Personal Touch. USSD. The USSD Evolution txtnation provides carrier grade USSD API and interface options, enabling the delivery of high throughput messaging and session based menu systems. txtnation provides carrier grade

More information

Basics of GSM in depth

Basics of GSM in depth This document will be helpful for the telecom engineers who deal with GSM as well as for the fresher /interested readers. This document has some advantages over other GSM texts in that it quickly gets

More information

Short Message Service (SMS)

Short Message Service (SMS) TECQUI Ayra M.-B. Short Message Service (SMS) Introduction Short message service is a mechanism of delivery of short messages over the mobile networks. It is a store and forward way of transmitting messages

More information

JP-3GA (R99) Technical realisation of Operator Determined Barring (ODB)

JP-3GA (R99) Technical realisation of Operator Determined Barring (ODB) JP-3GA-23.015(R99) Technical realisation of Operator Determined Barring (ODB) Version 1 Mar 31, 2000 THE TELECOMMUNICATION TECHNOLOGY COMMITTEE JP-3GA-23.015(R99) Technical realization of Operator Determined

More information

TECHNICAL BRIEFING: MOBILE ACCESS TO THE INTERNET. Bornholm, October 2003

TECHNICAL BRIEFING: MOBILE ACCESS TO THE INTERNET. Bornholm, October 2003 Electronic Communications Committee (ECC) within the European Conference of Postal and Telecommunications Administrations (CEPT) TECHNICAL BRIEFING: MOBILE ACCESS TO THE INTERNET Bornholm, October 2003

More information

Procedia Computer Science

Procedia Computer Science Procedia Computer Science 3 (2011) 949 953 Procedia Computer Science 00 (2010) 000 000 Procedia Computer Science www.elsevier.com/locate/procedia www.elsevier.com/locate/procedia WCIT 2010 An Implementation

More information

28 Deploying IN Services in a Mobile Environment

28 Deploying IN Services in a Mobile Environment 28 Deploying IN Services in a Mobile Environment D. Haran Comverse Network Systems 170 Crossways Park Drive, Woodbury, New York 11797 USA Tel: (516) 677-7200, Fax: (516) 677-7355 E-mail danny_haran@comverse.com

More information

10 Call Set-up. Objectives After this chapter the student will: be able to describe the activities in the network during a call set-up.

10 Call Set-up. Objectives After this chapter the student will: be able to describe the activities in the network during a call set-up. 10 Call Set-up Objectives After this chapter the student will: be able to describe the activities in the network during a call set-up. 10.1 INTRODUCTION... 2 10.2 CALL TO MS (MT)... 3 10.3 CALL FROM MS

More information

Chapter 3 GSM and Similar Architectures

Chapter 3 GSM and Similar Architectures CSF645 Mobile Computing 行動計算 Chapter 3 GSM and Similar Architectures 吳俊興 國立高雄大學資訊工程學系 Chapter 3 GSM and Similar Architectures 3.1 GSM Services and System Architecture 3.2 Radio Interfaces 3.3 Protocols

More information

Axis Dial (NUUP) service. All about Axis Dial. Entities eligible for Easy Access Savings Account

Axis Dial (NUUP) service. All about Axis Dial. Entities eligible for Easy Access Savings Account Axis Dial (NUUP) service All about Axis Dial Entities eligible for Easy Access Savings Account Axis Dial (NUUP) is an easy and secure way to stay connected to your bank account. It provides an interactive

More information

To: All Deposit Money Banks, Switches, Mobile Money Operators, Payment Solution Service Providers, Micro Finance Banks & Others

To: All Deposit Money Banks, Switches, Mobile Money Operators, Payment Solution Service Providers, Micro Finance Banks & Others . BANKING AND PAYMENTS SYSTEM DEPARTMENT CEN BANK OF NIGERIA Central Business District P.M.B. 0187, Gar1ci, Abuja. +234-0946238445 BPS/DIR/GEN/CIR/05/002 April 17, 2018 To: All Deposit Money Banks, Switches,

More information

3G TS V3.1.0 ( )

3G TS V3.1.0 ( ) Technical Specification 3rd Generation Partnership Project; Technical Specification Group Core Network; Organization of subscriber data () The present document has been developed within the 3 rd Generation

More information

PSB MOBILE BANKING SERVICE

PSB MOBILE BANKING SERVICE PSB MOBILE BANKING SERVICE Frequently Asked Questions on Mobile Banking Services 1. What is Mobile Banking? Mobile banking (also known as M-Banking) is a term used for performing balance checks, account

More information

NOKIA 30 GSM CONNECTIVITY TERMINAL PRODUCT GUIDE. Copyright Nokia Corporation All rights reserved. Version 2.0

NOKIA 30 GSM CONNECTIVITY TERMINAL PRODUCT GUIDE. Copyright Nokia Corporation All rights reserved. Version 2.0 NOKIA 30 GSM CONNECTIVITY TERMINAL PRODUCT GUIDE Copyright Nokia Corporation 2002. All rights reserved. Version 2.0 Contents DEFINITIONS AND TERMINOLOGY... 2 1. DOCUMENT SCOPE... 3 2. PRODUCT CONCEPT AND

More information

Mitel MiContact Center Enterprise SMS GATEWAY USER GUIDE. Release 9.2

Mitel MiContact Center Enterprise SMS GATEWAY USER GUIDE. Release 9.2 Mitel MiContact Center Enterprise SMS GATEWAY USER GUIDE Release 9.2 NOTICE The information contained in this document is believed to be accurate in all respects but is not warranted by Mitel Networks

More information

RELEASE NOTES SHORETEL MS DYNAMICS CRM CLIENT VERSION 8

RELEASE NOTES SHORETEL MS DYNAMICS CRM CLIENT VERSION 8 RELEASE NOTES SHORETEL MS DYNAMICS CRM CLIENT VERSION 8 Compatibility Supports MS Dynamics CRM 2011, 2013, 2015 and 2016 (Online and Onpremises) as well as CRM deployed within Office 365 environments.

More information

Communication Networks 2 Signaling 2 (Mobile)

Communication Networks 2 Signaling 2 (Mobile) Communication Networks 2 Signaling 2 (Mobile) Gusztáv Adamis BME TMIT 2017 GSM signaling Signaling of GSM is based on the ISDN signaling systems SS7/DSS1 But, because of mobility, roaming, radio access

More information

GSM System Overview. Ph.D. Phone Lin.

GSM System Overview. Ph.D. Phone Lin. GSM System Overview Phone Lin Ph.D. Email: plin@csie.ntu.edu.tw 1 Outlines Introduction GSM Architecture Location Tracking and Call Setup Security GSM Data Services Unstructured Supplementary Service Data

More information

GLOBAL SYSTEM FOR MOBILE COMMUNICATION (2) ETI2511 Friday, 31 March 2017

GLOBAL SYSTEM FOR MOBILE COMMUNICATION (2) ETI2511 Friday, 31 March 2017 GLOBAL SYSTEM FOR MOBILE COMMUNICATION (2) ETI2511 Friday, 31 March 2017 1 SYLLABUS GSM General architecture and interfaces of cellular system and the PSTN and Internet networks: BTS, MSC, Internetworking,

More information

ETSI TS V6.1.0 ( )

ETSI TS V6.1.0 ( ) TS 100 533 V6.1.0 (1999-07) Technical Specification Digital cellular telecommunications system (Phase 2+); Technical realization of Operator Determined Barring (ODB) (GSM 03.15 version 6.1.0 Release 1997)

More information

UNIT-5. GSM System Operations (Traffic Cases) Registration, call setup, and location updating. Call setup. Interrogation phase

UNIT-5. GSM System Operations (Traffic Cases) Registration, call setup, and location updating. Call setup. Interrogation phase UNIT-5 GSM System Operations (Traffic Cases) Registration, call setup, and location updating Call setup Interrogation phase For the interrogation phase The initial address message comes outside the GSM

More information

3GPP TS V7.0.0 ( )

3GPP TS V7.0.0 ( ) TS 22.041 V7.0.0 (2007-03) Technical Specification 3rd Generation Partnership Project; Technical Specification Group Services and System Aspects; Operator Determined Barring (ODB) (Release 7) GLOBAL SYSTEM

More information

Technical description of international mobile roaming May 2010

Technical description of international mobile roaming May 2010 Technical description of international mobile roaming May 2010 Prepared by the Ministry of Economic Development of New Zealand and the Department of Broadband, Communications and the Digital Economy of

More information

Quad BRI GSM Gateway with 8 GSM Ports

Quad BRI GSM Gateway with 8 GSM Ports Quad BRI GSM Gateway with 8 GSM Ports HG-2000/3U Cost Saving Customer Premises Equipment with Carrier Grade Performance Product Description November 2009 Contents Next Page Hypermedia HG-2000/3U 3 Contents

More information

ETSI TS V6.4.0 ( )

ETSI TS V6.4.0 ( ) TS 100 526 V6.4.0 (2000-06) Technical Specification Digital cellular telecommunications system (Phase 2+); Organization of subscriber data (GSM 03.08 version 6.4.0 Release 1997) GLOBAL SYSTEM FOR MOBILE

More information

ETSI TS V7.2.0 ( )

ETSI TS V7.2.0 ( ) TS 101 285 V7.2.0 (2001-12) Technical Specification Digital cellular telecommunications system (Phase 2+); Customised Applications for Mobile network Enhanced Logic (CAMEL); Service definition; Stage 1

More information

Subscriber Data Management

Subscriber Data Management Subscriber Data Management XML Notifications-XML Interface Description 910-6553-001 Revision C September 2013 Copyright 2012 2013 Tekelec. All Rights Reserved. Printed in USA. Legal Information can be

More information

S911 Personal Locator V4 Utility & Quick Start Manual

S911 Personal Locator V4 Utility & Quick Start Manual Document No.: Document Type: 233-UM-002 User Manual S911 Personal Locator V4 Utility & Quick Start Manual (Preliminary) Version 2.0 May 18, 2012 Copyright 2012 Laipac Technology Inc. Release History Revision

More information

ARIB STD-T64-C.S v1.0. Unstructured Supplementary Service Data (USSD) Service Options for Spread Spectrum Systems:Service Options 78 and 79

ARIB STD-T64-C.S v1.0. Unstructured Supplementary Service Data (USSD) Service Options for Spread Spectrum Systems:Service Options 78 and 79 ARIB STD-T-C.S00-0 v.0 Unstructured Supplementary Service Data (USSD) Service Options for Spread Spectrum Systems:Service Options and Refer to "Industrial Property Rights (IPR)" in the preface of ARIB

More information

TS-3GA (R99)v Operator Determined Call Barring

TS-3GA (R99)v Operator Determined Call Barring TS-3GA-22.041(R99)v.3.3.1 Operator Determined Call Barring May 29, 2001 THE TELECOMMUNICATION TECHNOLOGY COMMITTEE TS-3GA-22.041(R99)v.3.3.1 Operator Determined Call Barring 1. Application level

More information

ETSI TS V3.3.1 ( )

ETSI TS V3.3.1 ( ) Technical Specification Digital cellular telecommunications system (Phase 2+) (GSM); Universal Mobile Telecommunications System (UMTS); Operator Determined Barring (ODB) () GLOBAL SYSTEM FOR MOBILE COMMUNICATIONS

More information

Application Note For FTP in FlexiPanels and FlexiLogics Series HMI/PLCs

Application Note For FTP in FlexiPanels and FlexiLogics Series HMI/PLCs Application Note For FTP in FlexiPanels and FlexiLogics Series HMI/PLCs This document explains about the FTP feature in FlexiPanels and FlexiLogics Series HMI/PLCs. - 1 -Application Note for FTP Table

More information

Group name :TECHNICAL MOTIVATION Members: Merris mary chacko Sneha baby thomas Ancy mariam babu Meena jose

Group name :TECHNICAL MOTIVATION Members: Merris mary chacko Sneha baby thomas Ancy mariam babu Meena jose Group name :TECHNICAL MOTIVATION Members: Merris mary chacko Sneha baby thomas Ancy mariam babu Meena jose Short message service (SMS) is a globally accepted wireless service. SMS appeared on the wireless

More information

Information Technology Mobile Computing Module: GSM Handovers

Information Technology Mobile Computing Module: GSM Handovers Information Technology Mobile Computing Module: GSM Handovers Learning Objectives Recap of previous modules Basic functions of Network Sub System Entities that form NSS namely MSC,GMSC,HLR and VLR Functions

More information

Configuring GPRS Tunneling Protocol Support

Configuring GPRS Tunneling Protocol Support The GPRS Tunneling Protocol Support feature provides firewall support for General Packet Radio Switching (GPRS) Tunneling Protocol (GTP). GPRS is a data network architecture, which integrates with existing

More information

APPROACHING ROAMING CHARGES PRAGMATICALLY

APPROACHING ROAMING CHARGES PRAGMATICALLY APPROACHING ROAMING CHARGES PRAGMATICALLY Simon Forge, SCF Associates Ltd Following a study for European Parliament's committee on Industry, Research and Energy (ITRE) with briefing for European Parliament,

More information

Mitel for Microsoft Dynamics CRM Client V5 Release Notes

Mitel for Microsoft Dynamics CRM Client V5 Release Notes Mitel for Microsoft Dynamics CRM Client V5 Release Notes February 08, 2018. Mitel for Microsoft Dynamics CRM Client V5 Release Notes Description: This Application Note Consists of the dates and version

More information

ETSI TS V4.1.0 ( )

ETSI TS V4.1.0 ( ) TS 122 041 V4.1.0 (2001-03) Technical Specification Digital cellular telecommunications system (Phase 2+) (GSM); Universal Mobile Telecommunications System (UMTS); Operator Determined Barring (ODB) (3GPP

More information

Software Description Application Software OTT Hydras 3 net

Software Description Application Software OTT Hydras 3 net English Software Description Application Software OTT Hydras 3 net We reserve the right to make technical changes and improvements without notice! Table of contents 1 Overview of OTT Hydras 3 net 5 2 Data

More information

Replication Monitor User s Guide

Replication Monitor User s Guide Replication Monitor User s Guide Version 6.0.2 (041209) DOC Marimba Product Line Copyright 1996 2004 BMC Software, Inc. All rights reserved. This publication is protected by copyright and international

More information

GPRS billing: getting ready for UMTS

GPRS billing: getting ready for UMTS GPRS billing: getting ready for UMTS In his first article about UMTS, Lucas Baugé looks into the key challenges of GPRS billing. He seeks to show how solving these challenges will help operators succeed

More information

ETSI TC SMG#28 SMG Tdoc Milan, Italy 8 th - 12 th February Title: GSM Camel Phase 3 Version 1.0.0

ETSI TC SMG#28 SMG Tdoc Milan, Italy 8 th - 12 th February Title: GSM Camel Phase 3 Version 1.0.0 TC SMG#28 SMG Tdoc 99-044 Milan, Italy 8 th - 12 th February 1999 Agenda Item: Source: 6.1 (GSM) SMG1 Title: GSM 02.78 Camel Phase 3 Version 1.0.0 Document for: Information Technical Specification Digital

More information

Semi-Active GSM Monitoring System SCL-5020SE

Semi-Active GSM Monitoring System SCL-5020SE Semi-Active GSM Monitoring System SCL-5020SE Technology Introduction: GSM networks are most popular and widespread wireless communication media across the world, having a wide customer base in Europe and

More information

Robo Tester Evolution (RTE) Automation Tool for GSM Tariff Tests

Robo Tester Evolution (RTE) Automation Tool for GSM Tariff Tests International Journal of Computing Academic Research (IJCAR) ISSN 2305-9184, Volume 5, Number 4 (August 2016), pp.202-206 MEACSE Publications http://www.meacse.org/ijcar Robo Tester Evolution (RTE) Automation

More information

GPRS security. Helsinki University of Technology S Security of Communication Protocols

GPRS security. Helsinki University of Technology S Security of Communication Protocols GPRS security Helsinki University of Technology S-38.153 Security of Communication Protocols vrantala@cc.hut.fi 15.4.2003 Structure of the GPRS Network BSS GTP PLMN BSS-Base Station sub-system VLR - Visiting

More information

CLIENT DASHBOARD. With Cloud Communication Solution (C.C.S).

CLIENT DASHBOARD. With Cloud Communication Solution (C.C.S). CLIENT DASHBOARD. CLIENT DASHBOARD Content CCS Presentation... 3 SMS... 3 Channels... 3 Requirement... 3 1.1 To read before connect... 4 1.2 Glossary of symbols... 5 1.3 CONNECTION... 6 1.3.1 Choice of

More information

Delivery of Voice and Text Messages over LTE 13 年 5 月 27 日星期 一

Delivery of Voice and Text Messages over LTE 13 年 5 月 27 日星期 一 Delivery of Voice and Text Messages over LTE 1. The Market for Voice and SMS 2. Third Party Voice over IP 3. The IP Multimedia Subsystem 4. Circuit Switched Fallback 5. VoLGA LTE was designed as a data

More information

Offline Accessible System for Agricultural E-Commerce Using Unstructured Supplementary Services Data Application

Offline Accessible System for Agricultural E-Commerce Using Unstructured Supplementary Services Data Application International Journal of Computer Science and Telecommunications [Volume 9, Issue 6, November 2018] 5 ISSN 2047-3338 Offline Accessible System for Agricultural E-Commerce Using Unstructured Supplementary

More information

SMS Service Extension

SMS Service Extension Smart SIM Server Manager SMS Service Extension AddPac Technology 2013, Sales and Marketing www.addpac.com Contents Main Features Service Network Diagram System Requirement Manager Login Configuration Management

More information

4. The transport layer

4. The transport layer 4.1 The port number One of the most important information contained in the header of a segment are the destination and the source port numbers. The port numbers are necessary to identify the application

More information

VOIP²ALL SERIES. 4 Channel Gateway User Guide. Version 5.38

VOIP²ALL SERIES. 4 Channel Gateway User Guide. Version 5.38 VOIP²ALL SERIES 4 Channel Gateway User Guide Version 5.38 Contents CONTENTS 1. INTRODUCTION TO THE VOIP²ALL GATEWAY... 4 1.1. The VoIP²ALL Gateway Solution Overview... 4 1.2. About this Manual... 5 1.3.

More information

3GPP TS V6.4.0 ( )

3GPP TS V6.4.0 ( ) TS 22.234 V6.4.0 (2006-06) Technical Specification 3rd Generation Partnership Project; Technical Specification Group Services and System Aspects; Requirements on system to Wireless Local Area Network (WLAN)

More information

HLR Lookup Service (Release 1.1.0)

HLR Lookup Service (Release 1.1.0) 1. Introduction 1.1. Summary This document will illustrate the HLR Lookup Service (or Network Query) 1.2. Scope The information contained in this document may be used by all third parties that need to

More information

GSM Interception IMSI Catcher and Voice Interception

GSM Interception IMSI Catcher and Voice Interception GSM Interception IMSI Catcher and Voice Interception Part of the product line Product overview go2intercept passive: GSM interception Passive, massive, of the air. (page 3-4) go2intercept active basic:

More information

The Mobile Finnish Identity Certificate

The Mobile Finnish Identity Certificate The Mobile Finnish Identity Certificate Dr.Tech. Göran Pulkkis and BSc (Eng.) Jonny Karlsson ARCADA Polytechnic Helsinki Finland PRESENTATION OUTLINE Finnish Electronic Identity (FINEID) as a Smartcard

More information

WIRELESS SYSTEM AND NETWORKING

WIRELESS SYSTEM AND NETWORKING LECTURE 6 WIRELESS SYSTEM AND NETWORKING References: Rappaport (Chapter 9 and 10) Bernhard (Chapter 3, 4 and 5) Garg (Chapter 8 and 9) Kaarenen (Chapter 1-5 and 9) WIRELESS EVOLUTION Japan Europe Americas

More information

EDW-ML8021 GSM GPRS Modem User s Manual. Page 1

EDW-ML8021 GSM GPRS Modem User s Manual.   Page 1 EDW-ML8021 GSM GPRS Modem User s Manual sales@eddywireless.com www.eddywireless.biz Page 1 Content EDW-ML8021 GPRS Modem User s Manual... 1 1. Introduction... 3 2. Product concept... 3 3. Application interface...

More information

amaysim Mobile Service Description

amaysim Mobile Service Description Valid as of 24 March 2015 amaysim Australia Pty Ltd, PO Box R567, Royal Exchange NSW 1225, Australia, ABN 65 143 613 478, ACN 143 613 478 Table of Contents 1. About this service description 1 2. The Service

More information

The ETSI Register of supplementary service codes

The ETSI Register of supplementary service codes The ETSI Register of supplementary service codes Abbreviated dialling, Packet selection 50 Short code dialling Abbreviated dialling is the possibility for a subscriber to make a call by sending a short

More information

Cellular Communication

Cellular Communication Cellular Communication Cellular Communication Cellular communication is designed to provide communications between two moving units, or between one mobile unit and one stationary phone or land unit (PSTN).

More information

Pertemuan 7 GSM Network. DAHLAN ABDULLAH

Pertemuan 7 GSM Network. DAHLAN ABDULLAH Pertemuan 7 GSM Network DAHLAN ABDULLAH Email : dahlan.unimal@gmail.com Contents GSM-Introduction Architecture Technical Specification & Operation Frame Structure Channels Call Routing Security Characteristics

More information

Hands-On Modern Mobile and Long Term Evolution LTE

Hands-On Modern Mobile and Long Term Evolution LTE Hands-On LTE Course Description With 3G mobile technologies already rolled out by over 200 operators in over 80 countries, standards bodies, manufacturers and operators are looking towards the next generation

More information

TS V6.0.0 ( )

TS V6.0.0 ( ) Technical Specification Digital cellular telecommunications system (Phase 2+); Signalling requirements relating to routeing of calls to mobile subscribers GLOBAL SYSTEM FOR MOBILE COMMUNICATIONS R 2 Reference

More information

Smart Vehicle with Theft Prevention using GSM and GPS

Smart Vehicle with Theft Prevention using GSM and GPS Smart Vehicle with Theft Prevention using GSM and GPS Sushanth K J 1, Aysha Farana 2, Sachin 2, Bushra Salina 2, Mahammad Isthikar 2 Assistant Professor, Electronics and Communication Engineering Department,

More information

Mobile Intelligent Network

Mobile Intelligent Network E1-E2 UPGRADATION COURSE CONSUMER MOBILITY Mobile Intelligent Network Page: 1 Chapter Five Mobile Intelligent Network Intelligent Network: IN is an architectural concept for the operation and provision

More information

Thermoguard. Thermoguard GSM Modem COM Server Version Version 2.94

Thermoguard. Thermoguard GSM Modem COM Server Version Version 2.94 Thermoguard Thermoguard GSM Modem COM Server Version Version 2.94 Contents - Introduction... 3 - Versions / Parts... 4 - Inserting the SIM card... 5 - Connecting the device... 6 - Assigning an IP address

More information

APPLICATION LAYER APPLICATION LAYER : DNS, HTTP, , SMTP, Telnet, FTP, Security-PGP-SSH.

APPLICATION LAYER APPLICATION LAYER : DNS, HTTP,  , SMTP, Telnet, FTP, Security-PGP-SSH. APPLICATION LAYER : DNS, HTTP, E-mail, SMTP, Telnet, FTP, Security-PGP-SSH. To identify an entity, the Internet used the IP address, which uniquely identifies the connection of a host to the Internet.

More information

Vertical and Horizontal Handover in Heterogeneous Wireless Networks using OPNET

Vertical and Horizontal Handover in Heterogeneous Wireless Networks using OPNET Vertical and Horizontal Handover in Heterogeneous Wireless Networks using OPNET Abhishek Dhiman M.E, E.C.E Department, Thapar University, Patiala Karamjit Singh Sandha Asst. Professor, E.C.E Department

More information

EnGenius Quick Start Guide

EnGenius Quick Start Guide T he operates seamlessly in the 2.4 GHz frequency spectrum supporting the 802.11b (2.4GHz, 11Mbps) and the newer, faster 802.11g (2.4GHz, 54Mbpswireless standard. High output power and high sensitivity

More information

Presentation Content

Presentation Content SMS Fleet (Pty) Ltd Privately owned company established in 2006 Our product My Tracer is a locally developed, brilliant, fully internet based GPS Vehicle tracking system integrated with an innovative automated

More information

ETSI TS V8.0.0 ( ) Technical Specification

ETSI TS V8.0.0 ( ) Technical Specification TS 123 011 V8.0.0 (2009-01) Technical Specification Digital cellular telecommunications system (Phase 2+); Universal Mobile Telecommunications System (UMTS); LTE; Technical realization of Supplementary

More information

EUROPEAN ETS TELECOMMUNICATION November 1996 STANDARD

EUROPEAN ETS TELECOMMUNICATION November 1996 STANDARD EUROPEAN ETS 300 522 TELECOMMUNICATION November 1996 STANDARD Third Edition Source: ETSI TC-SMG Reference: RE/SMG-030302PR2 ICS: 33.020 Key words: Digital cellular telecommunications system, Global System

More information

INTRODUCTION TO GSM DATA SERVICES. ETI25111 Monday, April 3, 2017

INTRODUCTION TO GSM DATA SERVICES. ETI25111 Monday, April 3, 2017 INTRODUCTION TO GSM DATA SERVICES ETI25111 Monday, April 3, 2017 BASIC GSM SERVICES 1. Teleservices (a) Voice full-rate (13kbs) (b) Voice Half-rate (6.5 kbps) (c) SMS (up to 160 characters) (d) MMS (e)

More information

This tutorial is prepared for beginners to help them understand the basic-to-advanced concepts related to GPRS.

This tutorial is prepared for beginners to help them understand the basic-to-advanced concepts related to GPRS. 1 About the Tutorial General Packet Radio Service (GPRS) is a Mobile Data Service accessible to GSM and IS- 136 mobile phones users. This service is packet-switched where several number of users can divide

More information

PRESENTED FOR INFORMATION

PRESENTED FOR INFORMATION ETSI TC SMG Tdoc SMG 072 / 98 Sophia Antipolis, March 16-20, 1998 Agenda Item: 6.1 GLOBAL SYSTEM FOR MOBILE COMMUNICATIONS R Digital cellular telecommunications system (Phase 2+); Mobile Station Application

More information

Mobile Station Execution Environment (MExE( MExE) Developing web applications for PDAs and Cellphones. WAP (Wireless Application Protocol)

Mobile Station Execution Environment (MExE( MExE) Developing web applications for PDAs and Cellphones. WAP (Wireless Application Protocol) Developing web applications for PDAs and Cellphones Mobile Station Execution Environment (MExE( MExE) MExE is a standard for defining various levels of wireless communication These levels are called classmarks

More information

Canvas USSD Service Center Interac ve Services for a Mobile World. Copyright 2018 Telenity Confiden al & Proprietary

Canvas USSD Service Center Interac ve Services for a Mobile World. Copyright 2018 Telenity Confiden al & Proprietary Canvas USSD Service Center Interac ve for a Mobile World Copyright 2018 Telenity Confiden al & Proprietary Canvas USSD Service Center Canvas USSD Service Center wireless operators to offer rapid and secure

More information

SK Telecom Roaming Business

SK Telecom Roaming Business SK Telecom Roaming Business - Experiences and Outlook - SK Telecom 2003.Dec.11 Presentation Material for CDMA Global Roaming Forum SK Telecom CDMA Roaming Service Currently Covers 12 countries outbound

More information

Dual Mode Phone FAQ TECHNICAL SPECIFICATION

Dual Mode Phone FAQ TECHNICAL SPECIFICATION Dual Mode Phone FAQ TECHNICAL SPECIFICATION 1. Which are the main GSM bandwidths supported by the phone? Pirelli Dual Mode Phone support GSM 900/1800/1900MHZ. DP-L10 support also the GPRS Class B, multi-slot

More information

Custom Connect. All Area Networks. customer s guide to how it works version 1.0

Custom Connect. All Area Networks. customer s guide to how it works version 1.0 All Area Networks Custom Connect customer s guide to how it works version 1.0 The information in this technical user guide and the glossary of terms has been prepared in good faith and is correct at the

More information

Cellular Mobile Systems and Services (TCOM1010) GSM Architecture

Cellular Mobile Systems and Services (TCOM1010) GSM Architecture GSM Architecture 1 GSM NETWORK INFRASTRUCTURE...2 2 NETWORK SWITCHING SUBSYSTEM (NSS)...3 2.1 Home Location Register...4 2.2 Mobile Switching Center and Visitor Location Register...4 2.3 Authentication

More information

International Journal of Advanced Research in Computer Science and Software Engineering

International Journal of Advanced Research in Computer Science and Software Engineering Volume 3, Issue 8, August 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com An Enhanced Authentication

More information

QUICK GUIDE. Publication number PEBBELL_v2_V9.1_ QUICK GUIDE HOIP TELECOM, 2016

QUICK GUIDE. Publication number PEBBELL_v2_V9.1_ QUICK GUIDE HOIP TELECOM, 2016 QUICK GUIDE Publication number PEBBELL_v2_V9.1_4402.1625 QUICK GUIDE HOIP TELECOM, 2016 1GETTING TO KNOW YOUR DEVICE STARTING PEBBELL 2 1 STARTING PEBBELL 2 2DEVICE CHARGING The Pebbell v2 device is equipped

More information

CHAPTER 4 SYSTEM IMPLEMENTATION 4.1 INTRODUCTION

CHAPTER 4 SYSTEM IMPLEMENTATION 4.1 INTRODUCTION CHAPTER 4 SYSTEM IMPLEMENTATION 4.1 INTRODUCTION The most important part of any project i.e., implementation. It describes the various functionalities step by step under each module with their outputs.

More information

MV-370S/MV-372S. 1/2 Ports SMS Gateway. User Manual

MV-370S/MV-372S. 1/2 Ports SMS Gateway. User Manual MV-370S/MV-372S 1/2 Ports SMS Gateway User Manual Content 1 Introduction... 1 2 Parts list... 2 3 Dimension: 14.5cm x 17cm x 3.9cm... 2 4 MV-370S Panel description... 3 5 MV-372S Panel description... 4

More information

SGSN in a 2.5G GPRS Network, page 1

SGSN in a 2.5G GPRS Network, page 1 , page 1 2.5G SGSN Configuration Components, page 2 How the 2.5G SGSN Works, page 4 Information Required for the 2.5G SGSN, page 7 This chapter outlines the basic configuration and operation of the Serving

More information

ECB GoMobile Frequently Asked Questions

ECB GoMobile Frequently Asked Questions ECB GoMobile Frequently Asked Questions 1. GENERAL Why should I sign up for ECB GoMobile? ECB GoMobile is a fast, easy and secure way of accessing your bank 24 hours a day 7 days a week from wherever you

More information

Human Motion Detection and Tracking for Video Surveillance

Human Motion Detection and Tracking for Video Surveillance Human Motion Detection and Tracking for Video Surveillance Prithviraj Banerjee and Somnath Sengupta Department of Electronics and Electrical Communication Engineering Indian Institute of Technology, Kharagpur,

More information

ETSI TS V4.5.0 ( )

ETSI TS V4.5.0 ( ) TS 122 078 V4.5.0 (2002-03) Technical Specification Digital cellular telecommunications system (Phase 2+) (GSM); Universal Mobile Telecommunications System (UMTS); Customized Applications for Mobile network

More information

Dominique Carrega, Emmanuel Fournier, Hervé Muyal (Tecsi).

Dominique Carrega, Emmanuel Fournier, Hervé Muyal (Tecsi). Project Number: Project Title: Deliverable Type: (K/N)* AC343 MOVE K CEC Deliverable Number: AC343 / TEC / WP1 / DS / K / 1 / Contractual Date of Delivery to the CEC: July 1998 Actual Date of Delivery

More information

ETSI TR V1.1.1 ( )

ETSI TR V1.1.1 ( ) TR 102 314-3 V1.1.1 (2005-03) Technical Report Fixed network Multimedia Messaging Service (F-MMS); PSTN/ISDN; Part 3: Network architecture and interconnection 2 TR 102 314-3 V1.1.1 (2005-03) Reference

More information

3GPP TS V3.2.0 ( )

3GPP TS V3.2.0 ( ) TS 23.088 V3.2.0 (2000-10) Technical Specification 3rd Generation Partnership Project; Technical Specification Group Core Network Call Barring (CB) Supplementary Services - Stage 2 (Release 1999) The present

More information

ETSI TS V8.0.0 ( )

ETSI TS V8.0.0 ( ) TS 101 180 V8.0.0 (2000-05) Technical Specification Digital cellular telecommunications system (Phase 2+); Security mechanisms for the SIM Application Toolkit; Stage 1 (GSM 02.48 version 8.0.0 Release

More information

FAQs on *99# Service

FAQs on *99# Service FAQs on *99# Service 1. What is *99#? *99# is a USSD (Unstructured Supplementary Service Data) based mobile banking service from NPCI that brings together diverse ecosystem partners such as Banks & TSPs

More information

NetPro. from Wireless Logic. Available on a per SIM license basis. No CAPEX. Retain your Airtime Contracts with your existing providers

NetPro. from Wireless Logic. Available on a per SIM license basis. No CAPEX. Retain your Airtime Contracts with your existing providers NetPro from Available on a per SIM license basis Real-time usage monitoring of Data SIMs Retain your Airtime Contracts with your existing providers No CAPEX Secure and resilient connectivity via VPN Be

More information

SMS Based Household Appliance Monitoring and Controlling System Ms.Shraddha G.Rajkuwar*1, Ms.Rupali G.Bhople*2, Ms.Pooja V.

SMS Based Household Appliance Monitoring and Controlling System Ms.Shraddha G.Rajkuwar*1, Ms.Rupali G.Bhople*2, Ms.Pooja V. SMS Based Household Appliance Monitoring and Controlling System Ms.Shraddha G.Rajkuwar*1, Ms.Rupali G.Bhople*2, Ms.Pooja V.Kendale*3 *1 (student of IT Department, AEC, Chikhli (MS), INDIA) *2 (student

More information

Presentation Content

Presentation Content SMS Fleet (Pty) Ltd Privately owned company established in 2006 Our product My Tracer is a locally developed, brilliant, fully internet based GPS Vehicle tracking system integrated with an innovative automated

More information

Additional laboratory

Additional laboratory Additional laboratory This is addicional laboratory session where you will get familiar with the working environment. Firstly, you will learn about the different servers present in the lab and how desktops

More information

Service Requestor/User Protection Document

Service Requestor/User Protection Document Service Requestor/User Protection Document 1- The Service Provider must not put any conditions, obligations or restrictions on the user that contradict or violate any provisions contained in the Communication

More information

INTERNET BASED FLEET MANAGEMENT USING GPS AND GSM/GPRS

INTERNET BASED FLEET MANAGEMENT USING GPS AND GSM/GPRS INTERNET BASED FLEET MANAGEMENT USING GPS AND GSM/GPRS Item Type text; Proceedings Authors Cangzhou, Yuan; Qishan, Zhang; Zhongkan, Liu Publisher International Foundation for Telemetering Journal International

More information