generator. This source route is used by each IMS component to forward the message to the next hop. In case of a network failure, the simulator can dis

Size: px
Start display at page:

Download "generator. This source route is used by each IMS component to forward the message to the next hop. In case of a network failure, the simulator can dis"

Transcription

1 Diabelli: An IMS Simulation Tool Mauricio Cortes, Jairo O. Esteban, and Hyewon Jun The IP Multimedia Subsystem (IMS) standards, defined by the 3rd Generation Partnership Project (3GPP), specify a large number of functional units. The quantity and location of these units vary widely depending on network access technology, services, and market size. We have developed Diabelli, an IMS simulation tool that models IMS functional units. This tool allows network designers to specify over 80 different parameters to simulate the interaction of IMS elements Lucent Technologies Inc. Introduction The 3rd Generation Partnership Project (3GPP) has defined a multimedia subsystem in the core network [1]. This subsystem has a large number of functional units to provide blended services residing in the Internet Protocol (IP) and public switched telephone networks. These functional units include a number of elements such as IMS entry/exit proxies, called proxy call session control functions (P-CSCFs); user home proxies, called serving call session control functions (S-CSCFs); and service applications represented by application servers. These functional units exchange Session Initiation Protocol (SIP) messages to register users and set up/tear down multimedia sessions. Service providers must make a number of choices to deploy IMS; they must choose, for example, the transport layer protocols that will carry the SIP messages, the location of the elements, the number of unit instances, and the network topology connecting these units. In this paper, we introduce Diabelli, an IMS simulator built upon the ns-2 simulation tool [3]. Diabelli allows users to study many possible IMS deployments by simulating network links; S-CSCF, interrogating CSCF (I-CSCF), and P-CSCF proxies; application servers; and user agents. The current implementation is extensible to incorporate other IMS components. In this paper, we first describe the methodology used in our design, then present an overview of the simulator and its main parameters and show the preliminary results for one architectural configuration in IMS, and finally discuss future work and enhancements. Methodology In this section, we describe key abstractions including source routing, central processing unit (CPU) models, and transaction models. We explain some of our implementation decisions and their impact on simulation accuracy. Source Routing In IMS, the path of a message is decided in flight. For example, the S-CSCF uses filter criteria to determine the next hop (i.e., the next application server or control function element to forward a message to). In addition, an application server can act as an endpoint or a proxy depending on its application logic. However, these functional units are under development. To abstract these features, we use an explicit source routing mechanism in which the message path is predetermined and stored in the simulated message header. This path is generated by a call generator at the beginning of a call, based on input parameters such as the probability to visit each application server. In this way, any improvement affecting the message path can be adopted in the call Bell Labs Technical Journal 10(4), (2006) 2006 Lucent Technologies Inc. Published by Wiley Periodicals, Inc. Published online in Wiley InterScience ( DOI: /bltj.20137

2 generator. This source route is used by each IMS component to forward the message to the next hop. In case of a network failure, the simulator can discover from the source route the stateful IMS component that needs to retransmit. Processor Usage Model Like most network simulators, ns-2 ignores the processing time of a message while modeling transmission, propagation, and queuing delay. This is a valid assumption as long as the processing time is very small. However, message processing in IMS requires creating states, starting timers, and executing filtering criteria. These steps take a significant amount of time and limit system capacity. Furthermore, Cortes, et.al. [2] showed that SIP proxies are CPU bound. In Diabelli, we have implemented a processor model to simulate the accurate delay and the resource usage of a message procedure in a network. Each IMS element runs in a separate simulated machine. Each machine is modeled by a fixed amount of memory and one or more CPUs. To simulate the processor usage, we model two first-in, first-out (FIFO) queues, representing an incoming message queue and a CPU-ready queue. The incoming message queue stores new messages, while the CPU-ready queue stores active threads. Each node can instantiate one or more CPUs. Idle threads become active when they retrieve a message from the incoming message queue. Active threads wait their turn in the CPU-ready queue. All CPU instances serve this CPU-ready queue. Finally, the simulation tracks the memory consumed by requests, transactions, and messages. Transaction Model Standard SIP transaction stateful proxies process one request by creating one or more transactions, including a copy of at least one message, and scheduling timers to retransmit messages. Each request establishes at least two transactions client and server. A single INVITE request is needed to set up a call. The proxy must create six timers and at least two transactions, while a non-invite request message creates four timers and two transactions. In contrast, IMS proxies require at least three request messages one INVITE and two PRACKs to Panel 1. Abbreviations, Acronyms, and Terms 3GPP 3rd Generation Partnership Project CPU Central processing unit CSCF Call session control function DNS Domain name system FIFO First in, first out I-CSCF Interrogating CSCF IMS IP Multimedia Subsystem IP Internet Protocol P-CSCF Proxy CSCF PRACK Acknowledgment to provisional responses RFC Request for Comments SER SIP Express Router SCIM Service capability interaction manager S-CSCF Serving CSCF SIP Session Initiation Protocol Tcl Tool Command Language establish a call. These requests will create 14 timers and 6 transactions. The creation, updating, and deletion of timers and transactions consumes a considerable amount of memory and processing time in each transaction stateful proxy. To design a scalable simulator, we trade off accuracy of implementation by employing a slightly different retransmission scheme. While our model has a client and server transaction concept like the traditional transaction model [5], a message is retransmitted only when the message or its response is lost. That is, we simulate timer expiration, and retransmission is triggered accordingly in the previous transaction stateful application. For example, a client transaction in a transaction stateful proxy transmits an INVITE message repeatedly until receiving some response. In our model, the client transaction retransmits an INVITE only when the INVITE or its corresponding 1xx response is lost. Our simulation does not include retransmitted messages that are absorbed by transaction stateful elements. Retransmissions take into account only those messages or its responses that are lost in the network. Thus, our simulator has less retransmission traffic than a real implementation. However, our solution provides the upper bound of system capacity and achieves the scalability of the simulator. 256 Bell Labs Technical Journal DOI: /bltj

3 IMS Simulator Implementation Diabelli extends the ns-2 tool to simulate IMS functional units and the interaction between them. These units can run in different network and computational configurations. Configuration Our simulator consists of two parts: C++ implementation of each component and Tcl configuration scripts. A basic IMS component class implements the interaction with the processor usage module and common message procedures. This class is inherited by specific IMS components such as S-CSCF to override message-processing methods. Tcl scripts are used to configure simulation topologies and componentspecific parameters. Figure 1 shows one of the many topologies supported by Diabelli. The user can specify bandwidth, loss rate, and transport protocol for each link and set SIP processing time, stateful/stateless proxy and other parameters for each node. Message Flow A caller generates INVITEs with exponentially distributed intervals. Using source routing, INVITEs traverse the network toward a callee. When the messages arrive, the callee sends corresponding signal messages such as 183 Progress. Upon receiving a 183 Progress message, the caller generates the next request message, PRACK. In this way, the 14 signaling messages from call setup to call termination are exchanged between caller and callee. Major Parameters The major parameters can be classified into four categories: Network topology and traffic-related parameters, such as the number of component instances, bandwidth, and message loss rates, Resource-related parameters, such as the processing time or the memory usage of different message types, Architectural choices, such as simulating stateless or stateful proxies, the probability for messages to visit each application server, and usage of the service capability interaction manager (SCIM), and Parameters to generate log files. To simulate the CPU time necessary to process incoming messages, we measured the processing time AS1 AS2 AS3 P-CSCF I-CSCF S-CSCF I-CSCF P-CSCF Call generator DNS Callee AS Application server CSCF Call session control function DNS Domain name system I-CSCF Interrogating CSCF P-CSCF Proxy CSCF S-CSCF Serving CSCF Figure 1. One of the many topologies supported by Diabelli. DOI: /bltj Bell Labs Technical Journal 257

4 of all SIP message types using the SIP Express Router (SER) [4], a freely available SIP proxy. These measurements were taken using a Sun* Enterprise 450 dual processor. We specify these measurements in Diabelli to simulate the CPU for each incoming message. S-CSCF Special Features Compared to other components in an IMS network, the S-CSCF has more responsibilities and a larger message load to process. This message load is exacerbated by message spiraling, as defined in RFC 3261 [5], when one or more application servers are involved. Thus, the S-CSCF has the potential to become a major bottleneck. Diabelli s implementation of S-CSCF simulates a filter criteria engine and application server message spiraling. Subscription and notification messages are not currently simulated. Diabelli initial results confirm that IMS system capacity is limited by the S-CSCF maximum throughput. Application Server Scalability Simulation Results Application servers add flexibility and extensibility to IMS architecture, but these come at the cost of scalability. Cortes et. al. [2] show that an S-CSCF processes 14 incoming messages in a basic topology with no application servers, plus 14 extra messages per additional application server to set up and tear down a call. This study reports that handling SIP messages is processor intensive. Therefore, a larger number of application servers in the call path will increase the number of messages per call to be handled by S-CSCF, significantly reducing the system capacity. In order to determine the impact of the number of application servers on the system capacity, we used our simulation tool to determine the maximum throughput achieved by the S-CSCF while varying the number of application servers in the path. We define the call setup time as the elapsed time between the issuance of the initial INVITE message and the caller s receipt of the corresponding 200 OK response. We define the maximum throughput as the maximum load that a S-CSCF is able to process using 70% or less of CPU time and an overall call setup time of 10 seconds or less. Call arrival rate (cps) Number of application servers in the signaling path Figure 2. System capacity of the simulated IMS network with zero or more application servers in the path. Figure 2 depicts the system capacity of the simulated IMS network with zero or more application servers in the path. As the number of application servers increases, the maximum throughput decreases. For example, without any application servers in the message paths, the maximum throughput is 290 cps. When one application server is added, the maximum throughput is reduced to 160 cps. Therefore, the system capacity can be estimated as System capacity C o (1 n), where C o is the capacity of the basic topology and n is the number of application servers in the path. Conclusions and Future Work In this paper, we describe Diabelli, a new IMS simulation tool. The current version of Diabelli models the main IMS components, including S-CSCF, P-CSCF, application servers, SCIM, and domain name system (DNS). We present preliminary simulation results on application server scalability. As expected, call-setup time increases as the number of application servers increases due to message spiraling on the S-CSCF. The maximum throughput of the S-CSCF is inversely proportional to the average number of application servers in the signaling path. Since the S-CSCF is one of the major bottlenecks in the IMS network, any gains in S-CSCF throughput will increase the overall system performance. Diabelli can be used to investigate architectural choices, mechanisms for reducing message processing 258 Bell Labs Technical Journal DOI: /bltj

5 time, and scheduling algorithms for SIP messages. We plan to enhance Diabelli by adding new IMS components, simulating application servers for instant messaging and presence, and adding support for SUB- SCRIBE/NOTIFY messages in the S-CSCF. These enhancements will allow users to simulate complex IMS networks and examine their behavior before incurring in deployment costs. *Trademarks Sun is a registered trademark of Sun Microsystems, Inc. References [1] 3rd Generation Partnership Project, IP Multimedia Call Control Protocol Based on Session Initiation Protocol (SIP) and Session Description Protocol (SDP); Stage 3, Rel. 5, 3GPP TS , V , Sept. 2004, < 24-series.htm>. [2] M. Cortes, J. R. Ensor, and J. O. Esteban, On SIP Performance, Bell Labs Tech. J., 9:3 (2004), [3] Information Sciences Institute, USC Viterbi School of Engineering, The Network Simulator ns-2, < ns/index.html>. [4] Iptel.org, SER: SIP Express Router, < [5] J. Rosenberg, H. Schulzrinne, G. Camarillo, A. Johnston, J. Peterson, R. Sparks, M. Handley, and E. Schooler, SIP: Session Initiation Protocol, IETF RFC 3261, June 2002, < 3261>. JAIRO O. ESTEBAN is a member of technical staff in the Lab at Bell Labs in Holmdel, New Jersey. His responsibilities include research and development of new techniques to build SIP elements. He received a B.S. degree in computer science from Universidad de los Andes, Bogotá, Colombia, and an M.B.A. degree from Universidad Externado de Colombia, Bogotá, Colombia. His research interests have focused on distributed systems, high-performance software techniques, and SIP applications. HYEWON JUN was formerly a summer intern in the Lab at Bell Labs in Holmdel, New Jersey. She received her B.S. and M.S. degrees in mathematics from Yonsei University in Seoul, Korea. She is currently a Ph.D. candidate in computer science at the Georgia Institute of Technology in Atlanta. Her research interests include energy-efficient sensor and ad-hoc network design, applications using wireless networks, the integration of wired and wireless networks, the fault tolerance of distributed systems, mobility support and connection migration, multimedia service and content distribution, 3G IP multimedia subsystems (IMS) architecture, and general distributed systems and networking architectures. (Manuscript approved August 2005) MAURICIO CORTES is a member of technical staff in the Lab at Bell Labs in Murray Hill, New Jersey. His responsibilities include developing core SIP technologies. He received a B.S. degree in computer science from Universidad de los Andes, Bogotá, Colombia, and M.S. and Ph.D. degrees in computer science from the State University of New York at Stony Brook. His research interests have focused on distributed systems, high-performance Internet servers, and collaborative applications. Dr. Cortes has published more than 20 papers in journals and international conference and workshop proceedings. He is a member of ACM. DOI: /bltj Bell Labs Technical Journal 259

SIP: Ringing Timer Support for INVITE Client Transaction

SIP: Ringing Timer Support for INVITE Client Transaction SIP: Ringing Timer Support for INVITE Client Transaction Poojan Tanna (poojan@motorola.com) Motorola India Private Limited Outer Ring Road, Bangalore, India 560 037 Abstract-The time for which the Phone

More information

A Simple Model for Calculating SIP Signalling Flows in 3GPP IP Multimedia Subsystems

A Simple Model for Calculating SIP Signalling Flows in 3GPP IP Multimedia Subsystems A Simple Model for Calculating SIP Signalling Flows in 3GPP IP Multimedia Subsystems Alexander A. Kist and Richard J. Harris RMIT University, BOX 2476V, Victoria 3001, Australia {kist,richard}@catt.rmit.edu.au

More information

Efficient SIP-Specific Event Notification

Efficient SIP-Specific Event Notification Efficient SIP-Specific Event Notification Bo Zhao Network Solution Group Bell Labs Beijing, China 100102 bzhao@lucent.com Chao Liu Department of Computer Science University of Illinois-UC Urbana, IL, U.S.A.

More information

SIP: Ringing Timer Support for INVITE Client Transaction

SIP: Ringing Timer Support for INVITE Client Transaction SIP: Ringing Timer Support for INVITE Client Transaction Poojan Tanna (poojan@motorola.com) Motorola India Private Limited Outer Ring Road, Bangalore, India 560 037 Abstract-The time for which the Phone

More information

Conferencing Using the IP Multimedia (IM) Core Network (CN) Subsystem

Conferencing Using the IP Multimedia (IM) Core Network (CN) Subsystem GPP X.S00-0 Version.0 Version Date: May 00 Conferencing Using the IP Multimedia (IM) Core Network (CN) Subsystem Revision: 0 COPYRIGHT GPP and its Organizational Partners claim copyright in this document

More information

SIP : Session Initiation Protocol

SIP : Session Initiation Protocol : Session Initiation Protocol EFORT http://www.efort.com (Session Initiation Protocol) as defined in IETF RFC 3261 is a multimedia signaling protocol used for multimedia session establishment, modification

More information

Open IMS Core with VoIP Quality Adaptation

Open IMS Core with VoIP Quality Adaptation Open IMS Core with VoIP Quality Adaptation Is-Haka Mkwawa, Emmanuel Jammeh, Lingfen Sun, Asiya Khan and Emmanuel Ifeachor Centre for Signal Processing and Multimedia Communication School of Computing,Communication

More information

Using Fuzzy Logic Control to Provide Intelligent Traffic Management Service for High-Speed Networks ABSTRACT:

Using Fuzzy Logic Control to Provide Intelligent Traffic Management Service for High-Speed Networks ABSTRACT: Using Fuzzy Logic Control to Provide Intelligent Traffic Management Service for High-Speed Networks ABSTRACT: In view of the fast-growing Internet traffic, this paper propose a distributed traffic management

More information

Inter-domain Authentication and Authorization Mechanisms for Roaming SIP Users 1

Inter-domain Authentication and Authorization Mechanisms for Roaming SIP Users 1 Inter-domain Authentication and Authorization Mechanisms for Roaming SIP Users 1 Dorgham Sisalem Jiri Kuthan Fraunhofer Institute for Open Communication Systems (FhG Fokus) Kaiserin-Augusta-Allee 31, 10589

More information

End-2-End QoS Provisioning in UMTS networks

End-2-End QoS Provisioning in UMTS networks End-2-End QoS Provisioning in UMTS networks Haibo Wang Devendra Prasad October 28, 2004 Contents 1 QoS Support from end-to-end viewpoint 3 1.1 UMTS IP Multimedia Subsystem (IMS)................... 3 1.1.1

More information

3 The Network Architecture

3 The Network Architecture SIP-H323: a solution for interworking saving existing architecture G. De Marco 1, S. Loreto 2, G. Sorrentino 3, L. Veltri 3 1 University of Salerno - DIIIE- Via Ponte Don Melillo - 56126 Fisciano(Sa) Italy

More information

Overview of GSMA VoLTE Profile. minimum required functions [3]. 2. Background

Overview of GSMA VoLTE Profile. minimum required functions [3]. 2. Background GSMA Overview of GSMA Profile It was agreed in the GSMA in February 2010 that voice services over LTE () shall use the platform standardized by the 3GPP with a view to maximizing international interoperability.

More information

Authentication and Authorisation for Integrated SIP Services in Heterogeneous Environments 1

Authentication and Authorisation for Integrated SIP Services in Heterogeneous Environments 1 Authentication and Authorisation for Integrated SIP Services in Heterogeneous Environments 1 Dorgham Sisalem, Jiri Kuthan Fraunhofer Institute for Open Communication Systems (FhG Fokus) Kaiserin-Augusta-Allee

More information

Design Document. Offline Charging Server (Offline CS ) Version 1.0. - i -

Design Document. Offline Charging Server (Offline CS ) Version 1.0. - i - Design Document Offline Charging Server (Offline CS ) Version 1.0 - i - Document Scope Objective The information provided in this document specifies the design details of Operations of Offline Charging

More information

Location in SIP/IP Core (LOCSIP)

Location in SIP/IP Core (LOCSIP) in SIP/IP Core (LOCSIP) Conveyance with IMS: the OMA LOCSIP Service Enabler Mike Loushine / Don Lukacs Telcordia Applied Research 2009, Telcordia Technologies Inc. in SIP/IP Core (LOCSIP) Topics General

More information

ETSI TS 124 147 V6.8.0 (2008-04) Technical Specification

ETSI TS 124 147 V6.8.0 (2008-04) Technical Specification TS 124 147 V6.8.0 (2008-04) Technical Specification Digital cellular telecommunications system (Phase 2+); Universal Mobile Telecommunications System (UMTS); Conferencing using the IP Multimedia (IM) Core

More information

Inter-Domain QoS Control Mechanism in IMS based Horizontal Converged Networks

Inter-Domain QoS Control Mechanism in IMS based Horizontal Converged Networks Inter-Domain QoS Control Mechanism in IMS based Horizontal Converged Networks Mehdi Mani Wireless Networks and Multimedia Service Department GET-INT Evry, France mehdi.mani@int-evry.fr Noel Crespi Wireless

More information

A SIP Load Balancer for Performance Enlargement on the Enterprise Network

A SIP Load Balancer for Performance Enlargement on the Enterprise Network A SIP Load Balancer for Performance Enlargement on the Enterprise etwork Mi-Ryong Park, Joo-Myung Seok, Kyou-ho Lee etwork Research Department, ETRI 161 Gajung ousung Daejon Korea, Rep. of http://www.etri.re.kr

More information

Design of a SIP Outbound Edge Proxy (EPSIP)

Design of a SIP Outbound Edge Proxy (EPSIP) Design of a SIP Outbound Edge Proxy (EPSIP) Sergio Lembo Dept. of Communications and Networking Helsinki University of Technology (TKK) P.O. Box 3000, FI-02015 TKK, Finland Jani Heikkinen, Sasu Tarkoma

More information

An Improved Mobile VoIP Call Setup with Pre-detection of Callee MS State Information

An Improved Mobile VoIP Call Setup with Pre-detection of Callee MS State Information An Improved Mobile VoIP Call Setup with Pre-detection of MS State Information Soonuk Seol 1 and Sungsoo Cho 2 1 School of Electrical, Electronics & Communication Engineering, Korea University of Technology

More information

... Figure 2: Proposed Service Invocation Mechanism. AS Service invocation 2 SC invocation 2. Session/Call Control Function

... Figure 2: Proposed Service Invocation Mechanism. AS Service invocation 2 SC invocation 2. Session/Call Control Function Next Generation Network Service Architecture in the IP Multimedia Subsystem Anahita Gouya, Noël Crespi, Lina Oueslati, {anahita.gouya, noel.crespi, lina.oueslati}@int-evry.fr, Institut National des Télécommunications

More information

SIP in Mobile Environments - Applications and Possibilities

SIP in Mobile Environments - Applications and Possibilities SIP in Mobile Environments - Applications and Possibilities Marko Berg Helsinki University of Technology Marko.Berg@iki.fi Abstract With the recent emergence of a myriad of mobility-enabling technologies,

More information

Cloudified IP Multimedia Subsystem (IMS) for Network Function Virtualization (NFV)-based architectures

Cloudified IP Multimedia Subsystem (IMS) for Network Function Virtualization (NFV)-based architectures 4th Workshop on Mobile Cloud Networking, June 19th, 2014, Lisbon, Portugal Cloudified IP Multimedia Subsystem (IMS) for Network Function Virtualization (NFV)-based architectures Giuseppe Carella, Marius

More information

Transport Layer Protocols

Transport Layer Protocols Transport Layer Protocols Version. Transport layer performs two main tasks for the application layer by using the network layer. It provides end to end communication between two applications, and implements

More information

Evaluating the Performance of an IMS/NGN Deployment

Evaluating the Performance of an IMS/NGN Deployment Evaluating the Performance of an IMS/NGN Deployment Dirk Thißen, Juan Miguel Espinosa Carlín, and René Herpertz {thissen, espinosa, herpertz}@nets.rwth-aachen.de Abstract: The IP Multimedia Subsystem (IMS)

More information

vice processing conditions (state information) occurs in a server, it loses state information

vice processing conditions (state information) occurs in a server, it loses state information Elastic Core Network Virtualization SDN/ A Study to Achieve High Reliability and Availability on Core Networks with Network Virtualization Core networks need to efficiently handle increasing service control

More information

Load Balancing Support for Self-Organizing IMS Networks

Load Balancing Support for Self-Organizing IMS Networks Load Balancing Support for Self-Organizing IMS Networks Christian Makaya, Ashutosh Dutta, Subir Das, Dana Chee, F. Joe Lin Telcordia Technologies, Inc. Piscataway, NJ, USA Email: adutta@research.telcordia.com

More information

A Scenario of Machine-to-Machine (M2M) Health Care Service

A Scenario of Machine-to-Machine (M2M) Health Care Service A Scenario of Machine-to-Machine (M2M) Health Care Service Jung-Ho Kim*, Ya-Ting Wei*, Jae-Oh Lee* * Dept. of Electrical, Electronics &, Korea University of Technology and Education, Korea {jungho32, weiyating,

More information

TRIM: an Architecture for Transparent IMS-based Mobility

TRIM: an Architecture for Transparent IMS-based Mobility TRIM: an Architecture for Transparent IMS-based Mobility Ivan Vidal a,, Antonio de la Oliva a, Jaime Garcia-Reinoso a, Ignacio Soto b a Universidad Carlos III de Madrid. Avda. de la Universidad 30 28911

More information

This specification this document to get an official version of this User Network Interface Specification

This specification this document to get an official version of this User Network Interface Specification This specification describes the situation of the Proximus network and services. It will be subject to modifications for corrections or when the network or the services will be modified. Please take into

More information

Architectural Overview of IP Multimedia Subsystem -IMS

Architectural Overview of IP Multimedia Subsystem -IMS Architectural Overview of IP Multimedia Subsystem -IMS Presented by: Masood Khosroshahy June 2006 B E G I N N I N G 1 Project supervisor: Prof. Elie Najm Simplified view of the layered architecture in

More information

ETM System SIP Trunk Support Technical Discussion

ETM System SIP Trunk Support Technical Discussion ETM System SIP Trunk Support Technical Discussion Release 6.0 A product brief from SecureLogix Corporation Rev C SIP Trunk Support in the ETM System v6.0 Introduction Today s voice networks are rife with

More information

of the existing VoLTE roaming and interconnection architecture. This article compares existing circuit-switched models with the earlier

of the existing VoLTE roaming and interconnection architecture. This article compares existing circuit-switched models with the earlier VoLTE 3GPP Roaming Further Development of LTE/LTE-Advanced LTE Release 10/11 Standardization Trends VoLTE Roaming and ion Standard Technology In 3GPP Release 11, the VoLTE roaming and interconnection architecture

More information

Mobile P2PSIP. Peer-to-Peer SIP Communication in Mobile Communities

Mobile P2PSIP. Peer-to-Peer SIP Communication in Mobile Communities Mobile P2PSIP -to- SIP Communication in Mobile Communities Marcin Matuszewski, Esko Kokkonen Nokia Research Center Helsinki, Finland marcin.matuszewski@nokia.com, esko.kokkonen@nokia.com Abstract This

More information

Advanced SIP Series: SIP and 3GPP Operations

Advanced SIP Series: SIP and 3GPP Operations Advanced S Series: S and 3GPP Operations, Award Solutions, Inc Abstract The Session Initiation Protocol has been chosen by the 3GPP for establishing multimedia sessions in UMTS Release 5 (R5) networks.

More information

An Evaluation of Architectures for IMS Based Video Conferencing

An Evaluation of Architectures for IMS Based Video Conferencing An Evaluation of Architectures for IMS Based Video Conferencing Richard Spiers, Neco Ventura University of Cape Town Rondebosch South Africa Abstract The IP Multimedia Subsystem is an architectural framework

More information

Delivery of Voice and Text Messages over LTE

Delivery of Voice and Text Messages over LTE 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

More information

SIP OVER NAT. Pavel Segeč. University of Žilina, Faculty of Management Science and Informatics, Slovak Republic e-mail: Pavel.Segec@fri.uniza.

SIP OVER NAT. Pavel Segeč. University of Žilina, Faculty of Management Science and Informatics, Slovak Republic e-mail: Pavel.Segec@fri.uniza. SIP OVER NAT Pavel Segeč University of Žilina, Faculty of Management Science and Informatics, Slovak Republic e-mail: Pavel.Segec@fri.uniza.sk Abstract Session Initiation Protocol is one of key IP communication

More information

A Scalable Multi-Server Cluster VoIP System

A Scalable Multi-Server Cluster VoIP System A Scalable Multi-Server Cluster VoIP System Ming-Cheng Liang Li-Tsung Huang Chun-Zer Lee Min Chen Chia-Hung Hsu mcliang@nuk.edu.tw {kpa.huang, chunzer.lee}@gmail.com {minchen, chhsu}@nchc.org.tw Department

More information

A Proposed Model For QoS guarantee In IMSbased Video Conference services

A Proposed Model For QoS guarantee In IMSbased Video Conference services International Journal of Intelligent Information Technology Application, 2009, 2(5):243-249 A Proposed Model For QoS guarantee In IMSbased Video Conference services Maryam Kiani Department of Electrical

More information

TSGS#27(05)0115. Technical Specification Group Services and System Aspects Meeting #27, 14-17 March 2005,Tokyo, Japan

TSGS#27(05)0115. Technical Specification Group Services and System Aspects Meeting #27, 14-17 March 2005,Tokyo, Japan Technical Specification Group Services and System Aspects Meeting #27, 14-17 March 2005,Tokyo, Japan TSGS#27(05)0115 Source: TSG SA WG2 Title: CR(s) to 23.981 Agenda item: 7.2.3 Document for: APPROVAL

More information

OpenFlow-based Routing Mechanism for Call Session State Migration in the IMS

OpenFlow-based Routing Mechanism for Call Session State Migration in the IMS -based Routing Mechanism for Call Session State Migration in the IMS MANABU ITO, SATOSHI KOMORITA, YOSHINORI KITATSUJI, and HIDETOSHI YOKOTA KDDI R&D Laboratories, Inc. 2-1-15 Ohara, Fujimino-shi, Saitama,

More information

Migration of Enterprise VoIP/SIP Solutions towards IMS

Migration of Enterprise VoIP/SIP Solutions towards IMS 1 Migration of Enterprise VoIP/SIP Solutions towards IMS Ram Kumar 1, Frank Reichert 1, Andreas Häber 1, Anders Aasgard 2, Lian Wu 2 Abstract Voice-over-IP (VoIP) solutions are now widely spread and accepted

More information

SIP Server Overload Control: Design and Evaluation

SIP Server Overload Control: Design and Evaluation SIP Server Overload Control: Design and Evaluation Charles Shen and Henning Schulzrinne Columbia University Erich Nahum IBM T.J. Watson Research Center Session Initiation Protocol (SIP) Application layer

More information

Session Initiation Protocol Deployment in Ad-Hoc Networks: a Decentralized Approach

Session Initiation Protocol Deployment in Ad-Hoc Networks: a Decentralized Approach Session Initiation Protocol Deployment in Ad-Hoc Networks: a Decentralized Approach Simone Leggio, Jukka Manner, Antti Hulkkonen, Kimmo Raatikainen Department of Computer Science University of Helsinki,

More information

Analysis of SIP Traffic Behavior with NetFlow-based Statistical Information

Analysis of SIP Traffic Behavior with NetFlow-based Statistical Information Analysis of SIP Traffic Behavior with NetFlow-based Statistical Information Changyong Lee, Hwankuk-Kim, Hyuncheol Jeong, Yoojae Won Korea Information Security Agency, IT Infrastructure Protection Division

More information

Two-Stage Forking for SIP-based VoIP Services

Two-Stage Forking for SIP-based VoIP Services Two-Stage Forking for SIP-based VoIP Services Tsan-Pin Wang National Taichung University An-Chi Chen Providence University Li-Hsing Yen National University of Kaohsiung Abstract SIP (Session Initiation

More information

Part II. Prof. Ai-Chun Pang Graduate Institute of Networking and Multimedia, Dept. of Comp. Sci. and Info. Engr., National Taiwan University

Part II. Prof. Ai-Chun Pang Graduate Institute of Networking and Multimedia, Dept. of Comp. Sci. and Info. Engr., National Taiwan University Session Initiation Protocol oco (SIP) Part II Prof. Ai-Chun Pang Graduate Institute of Networking and Multimedia, Dept. of Comp. Sci. and Info. Engr., National Taiwan University Email: acpang@csie.ntu.edu.tw

More information

Research on Initial Filter Criteria of IP Multimedia Subsystem

Research on Initial Filter Criteria of IP Multimedia Subsystem Research on Initial Filter Criteria of IP Multimedia Subsystem Yafang WANG e-mail: wangyafang@hebust.edu.cn Xiaozhe ZHENG e-mail: zhengxiaozhe12@163.com Leilei KANG e-mail: lei-736@163.com Bingyang CHENG

More information

Proposition of a new approach to adapt SIP protocol to Ad hoc Networks

Proposition of a new approach to adapt SIP protocol to Ad hoc Networks , pp.133-148 http://dx.doi.org/10.14257/ijseia.2014.8.7,11 Proposition of a new approach to adapt SIP protocol to Ad hoc Networks I. Mourtaji, M. Bouhorma, M. Benahmed and A. Bouhdir Computer and Communication

More information

Adopting SCTP and MPLS-TE Mechanism in VoIP Architecture for Fault Recovery and Resource Allocation

Adopting SCTP and MPLS-TE Mechanism in VoIP Architecture for Fault Recovery and Resource Allocation Adopting SCTP and MPLS-TE Mechanism in VoIP Architecture for Fault Recovery and Resource Allocation Fu-Min Chang #1, I-Ping Hsieh 2, Shang-Juh Kao 3 # Department of Finance, Chaoyang University of Technology

More information

Controlling Overload in Networks of SIP Servers

Controlling Overload in Networks of SIP Servers Controlling Overload in Networks of SIP Servers Volker Hilt and Indra Widjaja Bell Labs, Alcatel-Lucent Holmdel, NJ 7733, USA Bell Labs, Alcatel-Lucent Murray Hill, NJ 7974, USA Abstract The Session Initiation

More information

7 SIP (II) Call flow for basic call scenario In the case of registration and finding the SIP user Collecting the bill Multiparty conferencing with SIP

7 SIP (II) Call flow for basic call scenario In the case of registration and finding the SIP user Collecting the bill Multiparty conferencing with SIP Burapha University ก Department of Computer Science 7 SIP (II) Call flow for basic call scenario In the case of registration and finding the SIP user Collecting the bill Multiparty conferencing with SIP

More information

Session Initiation Protocol

Session Initiation Protocol TECHNICAL OVERVIEW Session Initiation Protocol Author: James Wright, MSc This paper is a technical overview of the Session Initiation Protocol and is designed for IT professionals, managers, and architects

More information

AV@ANZA Formación en Tecnologías Avanzadas

AV@ANZA Formación en Tecnologías Avanzadas SISTEMAS DE SEÑALIZACION SIP I & II (@-SIP1&2) Contenido 1. Why SIP? Gain an understanding of why SIP is a valuable protocol despite competing technologies like ISDN, SS7, H.323, MEGACO, SGCP, MGCP, and

More information

CS268 Exam Solutions. 1) End-to-End (20 pts)

CS268 Exam Solutions. 1) End-to-End (20 pts) CS268 Exam Solutions General comments: ) If you would like a re-grade, submit in email a complete explanation of why your solution should be re-graded. Quote parts of your solution if necessary. In person

More information

Internet Engineering Task Force (IETF) Request for Comments: 7092 Category: Informational ISSN: 2070-1721 December 2013

Internet Engineering Task Force (IETF) Request for Comments: 7092 Category: Informational ISSN: 2070-1721 December 2013 Internet Engineering Task Force (IETF) Request for Comments: 7092 Category: Informational ISSN: 2070-1721 H. Kaplan Oracle V. Pascual Quobis December 2013 A Taxonomy of Session Initiation Protocol (SIP)

More information

SIP Overload Control IETF Design Team Summary

SIP Overload Control IETF Design Team Summary SIP Overload Control IETF Design Team Summary Eric Noel Carolyn Johnson AT&T Labs 27 AT&T Knowledge Ventures. All rights reserved. AT&T and the AT&T logo are trademarks of AT&T Knowledge Ventures. Introduction

More information

2.2 SIP-based Load Balancing. 3 SIP Load Balancing. 3.1 Proposed Load Balancing Solution. 2 Background Research. 2.1 HTTP-based Load Balancing

2.2 SIP-based Load Balancing. 3 SIP Load Balancing. 3.1 Proposed Load Balancing Solution. 2 Background Research. 2.1 HTTP-based Load Balancing SIP TRAFFIC LOAD BALANCING Ramy Farha School of Electrical and Computer Engineering University of Toronto Toronto, Ontario Email: rfarha@comm.utoronto.ca ABSTRACT This paper presents a novel solution to

More information

Acme Packet Net-Net SIP Multimedia-Xpress

Acme Packet Net-Net SIP Multimedia-Xpress Acme Packet Net-Net SIP Overview Net-Net SIP (SMX) combines IP Multimedia Subsystem (IMS) session management with leading session border control (SBC) functions to reduce the complexity and cost of delivering

More information

A Fuzzy Algorithm for QoS-Based Routing in MPLS Network

A Fuzzy Algorithm for QoS-Based Routing in MPLS Network A Fuzzy Algorithm for QoS-Based Routing in MPLS Network Nahid Ebrahimi Majd, Mohammad Hossien Yaghmaee Communication and Computer Research Lab.,Ferdowsi University of Mashhad Mashhad, Iran e-mails: {na_eb92@stu-mail.um.ac.ir,

More information

Performance Evaluation of AODV, OLSR Routing Protocol in VOIP Over Ad Hoc

Performance Evaluation of AODV, OLSR Routing Protocol in VOIP Over Ad Hoc (International Journal of Computer Science & Management Studies) Vol. 17, Issue 01 Performance Evaluation of AODV, OLSR Routing Protocol in VOIP Over Ad Hoc Dr. Khalid Hamid Bilal Khartoum, Sudan dr.khalidbilal@hotmail.com

More information

Sangheon Pack, EunKyoung Paik, and Yanghee Choi

Sangheon Pack, EunKyoung Paik, and Yanghee Choi 1 Design of SIP Server for Efficient Media Negotiation Sangheon Pack, EunKyoung Paik, and Yanghee Choi Multimedia & Communication Laboratory, Seoul National University, Korea ABSTRACT Voice over IP (VoIP)

More information

SIP Protocol as a Communication Bus to Control Embedded Devices

SIP Protocol as a Communication Bus to Control Embedded Devices 229 SIP Protocol as a Communication Bus to Control Embedded Devices Ramunas DZINDZALIETA Institute of Mathematics and Informatics Akademijos str. 4, Vilnius Lithuania ramunas.dzindzalieta@gmail.com Abstract.

More information

A Call Conference Room Interception Attack and its Detection

A Call Conference Room Interception Attack and its Detection A Call Conference Room Interception Attack and its Detection Nikos Vrakas 1, Dimitris Geneiatakis 2 and Costas Lambrinoudakis 1 1 Department of Digital Systems, University of Piraeus 150 Androutsou St,

More information

Smart Queue Scheduling for QoS Spring 2001 Final Report

Smart Queue Scheduling for QoS Spring 2001 Final Report ENSC 833-3: NETWORK PROTOCOLS AND PERFORMANCE CMPT 885-3: SPECIAL TOPICS: HIGH-PERFORMANCE NETWORKS Smart Queue Scheduling for QoS Spring 2001 Final Report By Haijing Fang(hfanga@sfu.ca) & Liu Tang(llt@sfu.ca)

More information

How To Provide Qos Based Routing In The Internet

How To Provide Qos Based Routing In The Internet CHAPTER 2 QoS ROUTING AND ITS ROLE IN QOS PARADIGM 22 QoS ROUTING AND ITS ROLE IN QOS PARADIGM 2.1 INTRODUCTION As the main emphasis of the present research work is on achieving QoS in routing, hence this

More information

Influence of Load Balancing on Quality of Real Time Data Transmission*

Influence of Load Balancing on Quality of Real Time Data Transmission* SERBIAN JOURNAL OF ELECTRICAL ENGINEERING Vol. 6, No. 3, December 2009, 515-524 UDK: 004.738.2 Influence of Load Balancing on Quality of Real Time Data Transmission* Nataša Maksić 1,a, Petar Knežević 2,

More information

MODELLING OF INTELLIGENCE IN INTERNET TELEPHONE SYSTEM

MODELLING OF INTELLIGENCE IN INTERNET TELEPHONE SYSTEM MODELLING OF INTELLIGENCE IN INTERNET TELEPHONE SYSTEM Evelina Nicolova Pencheva, Vessela Liubomirova Georgieva Department of telecommunications, Technical University of Sofia, 7 Kliment Ohridski St.,

More information

Chapter 6: Conclusion

Chapter 6: Conclusion Chapter 6: Conclusion In this research we have designed the bandwidth optimization control protocol to manage the proposed Dual-bandwidth data path for the CDMA2000-WLAN integrated network. The user s

More information

Investigation and Comparison of MPLS QoS Solution and Differentiated Services QoS Solutions

Investigation and Comparison of MPLS QoS Solution and Differentiated Services QoS Solutions Investigation and Comparison of MPLS QoS Solution and Differentiated Services QoS Solutions Steve Gennaoui, Jianhua Yin, Samuel Swinton, and * Vasil Hnatyshin Department of Computer Science Rowan University

More information

Presence SIMPLE Architecture

Presence SIMPLE Architecture Presence SIMPLE Architecture Approved Version 1.1 27 Jun 2008 Open Mobile Alliance OMA-AD-Presence_SIMPLE-V1_1-20080627-A OMA-AD-Presence_SIMPLE-V1_1-20080627-A Page 2 (21) Use of this document is subject

More information

ANALYSIS OF LONG DISTANCE 3-WAY CONFERENCE CALLING WITH VOIP

ANALYSIS OF LONG DISTANCE 3-WAY CONFERENCE CALLING WITH VOIP ENSC 427: Communication Networks ANALYSIS OF LONG DISTANCE 3-WAY CONFERENCE CALLING WITH VOIP Spring 2010 Final Project Group #6: Gurpal Singh Sandhu Sasan Naderi Claret Ramos (gss7@sfu.ca) (sna14@sfu.ca)

More information

Network Convergence and the NAT/Firewall Problems

Network Convergence and the NAT/Firewall Problems Network Convergence and the NAT/Firewall Problems Victor Paulsamy Zapex Technologies, Inc. Mountain View, CA 94043 Samir Chatterjee School of Information Science Claremont Graduate University Claremont,

More information

NAT TCP SIP ALG Support

NAT TCP SIP ALG Support The feature allows embedded messages of the Session Initiation Protocol (SIP) passing through a device that is configured with Network Address Translation (NAT) to be translated and encoded back to the

More information

Internet, Part 2. 1) Session Initiating Protocol (SIP) 2) Quality of Service (QoS) support. 3) Mobility aspects (terminal vs. personal mobility)

Internet, Part 2. 1) Session Initiating Protocol (SIP) 2) Quality of Service (QoS) support. 3) Mobility aspects (terminal vs. personal mobility) Internet, Part 2 1) Session Initiating Protocol (SIP) 2) Quality of Service (QoS) support 3) Mobility aspects (terminal vs. personal mobility) 4) Mobile IP Session Initiation Protocol (SIP) SIP is a protocol

More information

An enhanced TCP mechanism Fast-TCP in IP networks with wireless links

An enhanced TCP mechanism Fast-TCP in IP networks with wireless links Wireless Networks 6 (2000) 375 379 375 An enhanced TCP mechanism Fast-TCP in IP networks with wireless links Jian Ma a, Jussi Ruutu b and Jing Wu c a Nokia China R&D Center, No. 10, He Ping Li Dong Jie,

More information

Explaining the Impact of Network Transport Protocols on SIP Proxy Performance

Explaining the Impact of Network Transport Protocols on SIP Proxy Performance Explaining the Impact of Network Transport Protocols on SIP Proxy Performance Kaushik Kumar Ram, Ian C. Fedeli, Alan L. Cox, and Scott Rixner {kaushik,ifedeli,alc,rixner}@rice.edu Rice University Abstract

More information

PART III. OPS-based wide area networks

PART III. OPS-based wide area networks PART III OPS-based wide area networks Chapter 7 Introduction to the OPS-based wide area network 7.1 State-of-the-art In this thesis, we consider the general switch architecture with full connectivity

More information

Programming SIP Services University Infoline Service

Programming SIP Services University Infoline Service Programming SIP Services University Infoline Service Tatiana Kováčiková, Pavol Segeč Department of Information Networks University of Zilina Moyzesova 20, 010 26 SLOVAKIA Abstract: Internet telephony now

More information

Implementing Conditional Conference Call Use Case over IMS and Non IMS Testbed an experimental results through comparison approach

Implementing Conditional Conference Call Use Case over IMS and Non IMS Testbed an experimental results through comparison approach Proceedings of the 6th WSEAS International Conference on Applications of Electrical Engineering, Istanbul, Turkey, May 27-29, 2007 109 Implementing Conditional Conference Call Use Case over IMS and Non

More information

Behavior Analysis of TCP Traffic in Mobile Ad Hoc Network using Reactive Routing Protocols

Behavior Analysis of TCP Traffic in Mobile Ad Hoc Network using Reactive Routing Protocols Behavior Analysis of TCP Traffic in Mobile Ad Hoc Network using Reactive Routing Protocols Purvi N. Ramanuj Department of Computer Engineering L.D. College of Engineering Ahmedabad Hiteishi M. Diwanji

More information

SHORT DESCRIPTION OF THE PROJECT...3 INTRODUCTION...4 MOTIVATION...4 Session Initiation Protocol (SIP)...5 Java Media Framework (JMF)...

SHORT DESCRIPTION OF THE PROJECT...3 INTRODUCTION...4 MOTIVATION...4 Session Initiation Protocol (SIP)...5 Java Media Framework (JMF)... VoIP Conference Server Evgeny Erlihman jenia.erlihman@gmail.com Roman Nassimov roman.nass@gmail.com Supervisor Edward Bortnikov ebortnik@tx.technion.ac.il Software Systems Lab Department of Electrical

More information

Highly Available Mobile Services Infrastructure Using Oracle Berkeley DB

Highly Available Mobile Services Infrastructure Using Oracle Berkeley DB Highly Available Mobile Services Infrastructure Using Oracle Berkeley DB Executive Summary Oracle Berkeley DB is used in a wide variety of carrier-grade mobile infrastructure systems. Berkeley DB provides

More information

Bridging the gap between peer-to-peer and conventional SIP networks

Bridging the gap between peer-to-peer and conventional SIP networks 1 Bridging the gap between peer-to-peer and conventional SIP networks Mosiuoa Tsietsi, Alfredo Terzoli, George Wells Department of Computer Science Grahamstown, South Africa Tel: +27 46 603 8291 hezekiah@rucus.ru.ac.za

More information

Chapter 4. Distance Vector Routing Protocols

Chapter 4. Distance Vector Routing Protocols Chapter 4 Distance Vector Routing Protocols CCNA2-1 Chapter 4 Note for Instructors These presentations are the result of a collaboration among the instructors at St. Clair College in Windsor, Ontario.

More information

Final for ECE374 05/06/13 Solution!!

Final for ECE374 05/06/13 Solution!! 1 Final for ECE374 05/06/13 Solution!! Instructions: Put your name and student number on each sheet of paper! The exam is closed book. You have 90 minutes to complete the exam. Be a smart exam taker -

More information

QoS Parameters. Quality of Service in the Internet. Traffic Shaping: Congestion Control. Keeping the QoS

QoS Parameters. Quality of Service in the Internet. Traffic Shaping: Congestion Control. Keeping the QoS Quality of Service in the Internet Problem today: IP is packet switched, therefore no guarantees on a transmission is given (throughput, transmission delay, ): the Internet transmits data Best Effort But:

More information

Developing and Integrating Java Based SIP Client at Srce

Developing and Integrating Java Based SIP Client at Srce Developing and Integrating Java Based SIP Client at Srce Davor Jovanovi and Danijel Matek University Computing Centre, Zagreb, Croatia Davor.Jovanovic@srce.hr, Danijel.Matek@srce.hr Abstract. In order

More information

The Design and Implementation of Multimedia Conference Terminal System on 3G Mobile Phone

The Design and Implementation of Multimedia Conference Terminal System on 3G Mobile Phone 2010 International Conference on E-Business and E-Government The Design and Implementation of Multimedia Conference Terminal System on 3G Mobile Phone Li Shangmeng, Shang Yanlei, Ha Jingjing, Chen Junliang

More information

An investigation into multimedia service creation using SIP

An investigation into multimedia service creation using SIP An investigation into multimedia service creation using SIP M.C. Hsieh, J. Okuthe and A. Terzoli Department of Computer Science, Rhodes University Grahamstown, 6140, South Africa Email: g9610645@campus.ru.ac.za

More information

SIP: NAT and FIREWALL TRAVERSAL Amit Bir Singh Department of Electrical Engineering George Washington University

SIP: NAT and FIREWALL TRAVERSAL Amit Bir Singh Department of Electrical Engineering George Washington University SIP: NAT and FIREWALL TRAVERSAL Amit Bir Singh Department of Electrical Engineering George Washington University ABSTRACT The growth of market for real-time IP communications is a big wave prevalent in

More information

Session Border Controller

Session Border Controller CHAPTER 13 This chapter describes the level of support that Cisco ANA provides for (SBC), as follows: Technology Description, page 13-1 Information Model Objects (IMOs), page 13-2 Vendor-Specific Inventory

More information

Advanced SIP Series: SIP and 3GPP

Advanced SIP Series: SIP and 3GPP Advanced SIP Series: SIP and 3GPP, Award Solutions, Inc Abstract The Session Initiation Protocol has been selected as the main signaling protocol of the Third Generation Partnership Projects IP Multimedia

More information

ISSUES IN PARALLEL DISCRETE EVENT SIMULATION FOR AN INTERNET TELEPHONY CALL SIGNALING PROTOCOL

ISSUES IN PARALLEL DISCRETE EVENT SIMULATION FOR AN INTERNET TELEPHONY CALL SIGNALING PROTOCOL ISSUES IN PARALLEL DISCRETE EVENT SIMULATION FOR AN INTERNET TELEPHONY CALL SIGNALING PROTOCOL Phillip M. Dickens Vijay K. Gurbani Paper code: S262 Department of Computer Science and Applied Mathematics

More information

Performance Analysis of AQM Schemes in Wired and Wireless Networks based on TCP flow

Performance Analysis of AQM Schemes in Wired and Wireless Networks based on TCP flow International Journal of Soft Computing and Engineering (IJSCE) Performance Analysis of AQM Schemes in Wired and Wireless Networks based on TCP flow Abdullah Al Masud, Hossain Md. Shamim, Amina Akhter

More information

NTP VoIP Platform: A SIP VoIP Platform and Its Services

NTP VoIP Platform: A SIP VoIP Platform and Its Services NTP VoIP Platform: A SIP VoIP Platform and Its Services Speaker: Dr. Chai-Hien Gan National Chiao Tung University, Taiwan Email: chgan@csie.nctu.edu.tw Date: 2006/05/02 1 Outline Introduction NTP VoIP

More information

An Efficient Server Load Balancing using Session Management

An Efficient Server Load Balancing using Session Management An Efficient Server Load Balancing using Session Management S.Tharani 1, Balika.J.Chelliah 2, Dr.J.Jagadeesan 3 1 M.Tech.Computer Science and Engg, Ramapuram campus, 2 Asst.prof, Ramapuram campus, 3 Prof,

More information

Implementing SIP and H.323 Signalling as Web Services

Implementing SIP and H.323 Signalling as Web Services Implementing SIP and H.323 Signalling as Web Services Ge Zhang, Markus Hillenbrand University of Kaiserslautern, Department of Computer Science, Postfach 3049, 67653 Kaiserslautern, Germany {gezhang, hillenbr}@informatik.uni-kl.de

More information

Multimedia Requirements. Multimedia and Networks. Quality of Service

Multimedia Requirements. Multimedia and Networks. Quality of Service Multimedia Requirements Chapter 2: Representation of Multimedia Data Chapter 3: Multimedia Systems Communication Aspects and Services Multimedia Applications and Transfer/Control Protocols Quality of Service

More information