Linux Telephony a Short Overview

Total Page:16

File Type:pdf, Size:1020Kb

Linux Telephony a Short Overview Linux Telephony A Short Overview Paul P. Komkoff Anna Anikina Roman Zhnichkov Google Ireland Ltd. Saratov State University Saratov State University [email protected] [email protected] [email protected] Abstract are obvious quality of service (QOS) requirements for signalling and data—signalling requires guaranteed de- This paper covers the topic of implementing voice ser- livery of every message, and data requires low-latency vices in packet-switched Voice Over IP (VoIP) and transmission, but can lose individual samples/frames. circuit-switched (traditional telephony) networks using Linux and commodity hardware. It contains a short 1.1 VoIP introduction into general telephony, VoIP, and Public Switched Telephony Networks (PSTN). It also provides Voice over IP (VoIP) is widely used to describe various an overview of VoIP services, including the open-source services, setups, and protocols that pass audio data in software packages used to implement them, and the ker- pseudo real-time over IP networks. Although the actual nel interfaces they include. It explains kernel support implementations are very different, the basic require- for connecting Public Switched Telephony Networks us- ments are to pass voice data in two directions and to ing digital interfaces (E1/T1) via the Zaptel framework, allow two-party conversation. VoIP is packet-switched and user-space integration issues. The conclusion ex- telephony because the underlying network is packet- amines current trends in Linux-based and open-source switched. To make conversations possible a virtual cir- telephony. cuit is built between parties. A basic understanding of networking concepts is helpful There are many protocols used for VoIP conversa- for understanding this presentation. tions. The most widespread is Session Initiation Pro- tocol (SIP). This is a signalling protocol in that it only 1 Introduction to general telephony, VoIP and handles call setup and termination. Actual session setup PSTN between endpoints is handled by SDP (Session Descrip- tion Protocol), and data is transmitted by RTP (Real- Time Protocol). SIP is described in RFC3561 and en- Although VoIP products like SkypeTM and Google TalkTM dorsed by IETF as an Internet standard. are storming the telecommunications landscape, almost everyone still owns a telephone and uses it daily. Under- Another protocol with a large user-base is H.323. While standing how telephony works is still an obscure topic SIP is designed mostly by network people it is similar for most people. As a result, we would like to begin to HTTP (its messages are text Name:Value pairs). our paper with a short introduction to telephony in gen- H.323, being endorsed by ITU—telephony people— eral, combined with two major types presently in use— looks like a traditional telephony protocol. Its messages packet-switched and circuit-switched. and information elements are described in ASN.1 (Ab- stract Syntax Notation) and coded by ASN.1 BER (Ba- Every telephony system needs to transmit data between sic Encoding Rules). H.323 is also a signalling protocol, parties, but before it can do so, it needs to find the other and also uses RTP for data transmission. party and a route to it. This is called call setup. Ac- tivity of this nature is usually performed by a signalling Inter-Asterisk Exchange (IAX) is another major VoIP protocol. Data can be passed via the same route and protocol. It was invented by the Asterisk R authors. In channel as signalling, or via the same route and a dif- this protocol, data and signalling streams are not sepa- ferent channel, or via an entirely different route. There rated, which allows easier NAT traversal. IAX is also • 231 • 232 • Linux Telephony able to pack multiple conversations into a single stream, a single protocol, but a protocol stack. It contains parts thus reducing trunking overhead. There are two versions which facilitate running SS7 itself and allows user parts of IAX, although IAX1 is deprecated, and IAX2 is used to run on top of it. The user part that is responsible for under name of IAX. voice call setup between parties is called ISUP (ISDN User Part). Services for mobile subscribers, ranging Other lesser known VoIP protocols are either proprietary from registration to SMS, are handled by MAP over SCCP ( is used in Cisco phones) or designed for specific TCAP (Mobile Application Part over Transaction Capa- MGCP purpose ( —Media Gateway Control Protocol— bilities Application Part) of SS7. used to manipulate VoIP gateways). Some protocols al- low direct conversation between endpoints while others require a server to operate. 2 Implementing VoIP services on Linux VoIP protocols define the way voice data should be To implement any voice service using VoIP, we do not transmitted. Conversion of digitized audio into pay- need any special hardware. Both clients and servers are load (portions of data to be delivered by the VoIP pro- done in software. We only need to implement a particu- tocol) is performed by voice codecs. The most popular lar VoIP protocol (SIP, H.323, IAX, MGCP, SCCP) and voice codecs are: G.711, G.723, G.726-G.729, iLBC, a particular set of voice codecs. GSM06.10, and Speex. Each has different bandwidth requirements, CPU requirements, quality, and patents After we have everything ready on the protocol and associated with them. These codecs are not all VoIP- codec sides, we can implement the voice service. For specific—G.711 is used in traditional telephony, and example, we can build a server that will handle client GSM06.10 is used in GSM mobile networks. registrations and calls to each other. This piece of soft- ware is typically called a softswitch because it func- 1.2 PSTN tions much like a hardware switch—building virtual cir- cuits between parties. Softswitches typically have the Public Switched Telephony Network (PSTN) is the tra- ability to provide optional services commonly found in ditional telephony network. Capable nodes in this traditional proprietary PBXes like conferencing, voice- network are addressed using global and unique E.164 mail, and IVR (Interactive Voice Responce) for an addi- addresses—telephone numbers. Nowadays PSTN in- tional charge. Modern opensource VoIP software logic cludes not only traditional telephones, but mobile is driven by powerful scripting languages—domain- phones as well. Most of the PSTN is digital (except specific (for building dialplans) or general purpose. This customer analog lines and very old installments in de- allows us to integrate with almost anything. For exam- veloping countries). PSTN is circuit-switched, which ple, we can try opensource speech synthesis/recognition means that the call setup procedure assembles a circuit software. between the parties on the call for the duration of the entire call. The circuit is either fixed-bandwidth digi- Many softswitches utilize special properties of partic- tal (typically 64kbps for traditional telephone networks ular VoIP protocols. For example, SIP and the H.323 and 9600bps for mobile networks) or analog—spanning architecture provide the ability to pass data directly be- multiple units of communication equipment. In digi- tween endpoints to reduce contention and minimize la- tal networks the circuit is made over E1 (for Europe) tency. Thousands of endpoints can be registered to one or T1 (America) lines, which contain 31 or 24 DS0 SIP server to control only signalling, allowing billing (64kbps) circuits, TDM-multiplexed together and thus and additional services. This is much better than sit- often called timeslots. ting in the middle of RTP streams between those clients. Moreover, sometimes it is possible to pass data directly The call management, call routing, circuit assignment between two endpoints while one of them is using SIP and maintenance procedures are performed by the sig- and another—H.323. This setup is called a signalling naling protocol. The de facto standard for intercon- proxy. necting networks is Signaling System 7 (SS7). Connec- tions to customer PBX (Private Branch Exchange) are Some softswitches are suitable only for VoIP clients (in- often performed using ISDN PRI (Primary Rate Inter- cluding VoIP-PSTN gateways acting as VoIP endpoint) face) connections and ISDN Q.931 signaling. SS7 is not while more general solutions are able to act as a switch 2007 Linux Symposium, Volume One • 233 between different VoIP protocols and PSTN itself. The Popular open source softphones include: Ekiga (pre- softswitches of the first kind are, for example, SIP viously Gnome Meeting), Kphone, and Kiax, which Express Router and sipX, while the major play- support major protocols (H.323, SIP, and IAX). The ers of the second kind are: Asterisk, CallWeaver supported voice codecs list is not as long as it might be (described later on), YATE, and FreeSwitch. due to patent issues. Even with access to an entirely free alternative like Speex, the user is forced to use patented To test the most widespread softswitch—Asterisk— codecs to connect to proprietary VoIP gateways and con- using VoIP only, download its source code from http: sumer devices. //asterisk.org, compile it, and install. With- out any additional software you have out-of-the-box SkypeTM , a very popular proprietary softphone, imple- support for SIP and IAX, a working IVR demo (in ments its own proprietary VoIP protocol. extensions.conf file), and many functions which you can attach to numbers in extensions.conf—asterisk applications. However, conferencing won’t work and 3 Connecting to PSTN music-on-hold can stutter. Call-center solutions based on Asterisk usually utilize In order to allow PSTN users to use the services de- Queue() application. Using different AGI (Asterisk scribed above, or at a minimum send and receive calls Gateway Interface) scripts and builtin applications like from other VoIP users, they need to connect to the SayNumber(), you can build an automatic answer- PSTN. There are several ways to do that: ing machine which reports the current time or account balance.
Recommended publications
  • Microwave Engineering Europe Are Subject to Reproduction in Information Storage and Retrieval Products Systems
    May/June 2014 european business press engineeringengineering europeeurope Test & Measurement Antennas www.mwee.com The European journal for the microwave and wireless design engineer 130204_FRSH_MW_EU_Snipe.indd 1 1/30/13 10:49 AM Missing a Pulse Can Be Deadly. The Smartest, Fastest and Only Real-Time USB Peak Power Sensor. Don’t fall victim to conventional power measurement • Real-Time Power Processing™ for gap-free analysis techniques that will leave you missing valuable data • 100 MSa/sec SUSTAINED sample rate is world’s fastest - we capture every pulse with no missed glitches. • 10 GSa/sec effective rate for superb waveform fidelity The new 55 Series delivers unsurpassed speed and • <5 ns risetime and 70+ MHz video bandwidth accuracy for the most demanding RF power mea- • 100 ps time resolution for enhanced trigger stability surements thanks to Boonton’s Real-Time Power Processing™ technology. With this revolutionary • Triggered acquisition speeds over 40,000 sweeps/sec technique, all processing steps take place in parallel, • Capture and analyze data more than 100x faster guaranteeing gap-free signal acquisition and reliable than conventional power sensors capture of all transients, dropouts or interference. For more information visit us at boonton.com or call +1 973-386-9696. The new Boonton 55 Series delivers real results no one else can see. Taking Performance to a New Peak. Watch measurements come alive with Real-Time Power Processing™ Boonton 140131_TOPB_MWE_EU.indd 1 1/27/14 11:36 AM Missing a Pulse Can Be Deadly. The Smartest, Fastest and Only Real-Time USB Peak Power Sensor. Don’t fall victim to conventional power measurement • Real-Time Power Processing™ for gap-free analysis techniques that will leave you missing valuable data • 100 MSa/sec SUSTAINED sample rate is world’s fastest - we capture every pulse with no missed glitches.
    [Show full text]
  • Implementation of Private Gsm Network for Disaster Management and Detection of Hazardous Gases in Sewages and Manholes
    International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 04 | Apr-2018 www.irjet.net p-ISSN: 2395-0072 IMPLEMENTATION OF PRIVATE GSM NETWORK FOR DISASTER MANAGEMENT AND DETECTION OF HAZARDOUS GASES IN SEWAGES AND MANHOLES Dr.D.Sivakumar1, Mathioli Anbarasu2, Mohammed Thameem Ansari3, Rahul B4 1,2,3,4 Department of Electronics and Communication Engineering, Easwari Engineering College, Chennai, Tamil Nadu, India ---------------------------------------------------------------------***--------------------------------------------------------------------- ABSTRACT -In the twenty-first century, communication has 2. A BRIEF OVERVIEW OF THE BTS SYSTEM become as important as oxygen for the survival of humankind. The communication is an essential part of our day to day life, The BTS System consists of the following components namely: however during the advent of any natural disaster such as an earthquake, Tsunami or floods the conventional base transceiver RASPBERRY PI which acts as a Linux server and also as the station (BTS) suffers from a sudden breakdown and hence loses host processor to drive the commands of the YATE its wireless connectivity resulting in a communication loss It also consists of an SDR which acts as a transceiver and leading to miserable scenarios. The aim of the project is to conventional power amplifiers and antennas in order to establish a low powered, highly dynamic, cost-efficient and enhance the range of communication. compact sized small-scale private GSM Network. The BTS system has the following components it requires a host processor to run 2.1 Software Defined Radio the telephony engine for which a raspberry pi model 3B/2B would be highly ideal.
    [Show full text]
  • University of Mumbai Faculty of Science & Technology
    AC: 23/7/2020 Item No. : 126 UNIVERSITY OF MUMBAI Bachelor of Engineering in Information Technology Engineering Second Year with Effect from AY 2020-21 Third Year with Effect from AY 2021-22 Final Year with Effect from AY 2022-23 (REV- 2019 ‘C’ Scheme) from Academic Year 2019 – 20 Under FACULTY OF SCIENCE & TECHNOLOGY (As per AICTE guidelines with effect from the academic year 2019–2020) AC: 23/7/2020_ Item No. 126 UNIVERSITY OF MUMBAI Syllabus for Approval Sr. No. Heading Particulars Second Year B.E. Information Technology 1 Title of the Course Engineering After Passing First Year Engineering as per the 2 Eligibility for Admission Ordinance 0.6242 3 Passing Marks 40% Ordinances / 4 Ordinance 0.6242 Regulations ( if any) 5 No. of Years / Semesters 8 semesters P.G. / U.G./ Diploma / Certificate 6 Level (Strike out which is not applicable) Yearly / Semester 7 Pattern (Strike out which is not applicable ) New / Revised 8 Status (Strike out which is not applicable ) To be implemented from 9 With effect from Academic Year: 2020-2021 Academic Year Date :23/7/2020 Dr. S. K. Ukarande Dr Anuradha Muzumdar Associate Dean Dean Faculty of Science and Technology Faculty of Science and Technology University of Mumbai University of Mumbai Preamble To meet the challenge of ensuring excellence in engineering education, the issue of quality needs to be addressed, debated and taken forward in a systematic manner. Accreditation is the principal means of quality assurance in higher education. The major emphasis of accreditation process is to measure the outcomes of the program that is being accredited.
    [Show full text]
  • Technische Universität Ilmenau Fakultät Für Elektrotechnik Und
    Technische Universitat¨ Ilmenau Fakult¨at fur¨ Elektrotechnik und Informationstechnik Diplomarbeit Further development of VoIP softphone based on ’Microsoft RTC Client API’ vorgelegt von: Carla Garc´ıa S´anchez eingereicht am: 15. 11. 2006 geboren am: Studiengang: Elektrotechnik und Informationstechnik Anfertigung im Fachgebiet: Kommunikationsnetze Fakult¨at fur¨ Elektrotechnik und Informationstechnik Verantwortlicher Professor: Prof. Dr. rer. nat. habil. Jochen Seitz Wissenschaftlicher Betreuer: Dipl.-Ing. Yevgeniy Yeryomin Thanksgiving Many people have helped me in one way or another during the course of this project. Through these lines, I would like to express to them my most sincere gratitude. To my professors, thank you for guiding and advising me at any moment. Every suggestion has been constantly useful to improve this work. I appreciate all the support from the personnel of the department of Communication Networks. To my family and friends, thank you for your unconditional support, for encouraging me in the hardest and most stressful moments. I appreciate that you have been there for me and trusted me. Especially, I want to show my gratefulness to my roommates and close friends in Ilmenau, because they have been sharing the everyday life with me these last months. Finally, I would like to thank TU - Ilmenau for allowing me to develop this project. Once again, thank you everyone. Abstract In the time being, VoIP has become a widespread technology because enhances real- time communication making it easier and more natural, regardless where people are located. Voice over Internet Protocol (VoIP), like its name says, is a technology that enables voice communication over the network. This project intends to achieve the further development of a VoIP softphone based on SIP that was implemented as part of a PhD thesis in the department of Communication Networks.
    [Show full text]
  • Gnu Radio and the Usrp As a Solution for Remote Emergency Monitoring
    Annals of the University of North Carolina Wilmington Master of Science in Computer Science and Information Systems GNU RADIO AND THE USRP AS A SOLUTION FOR REMOTE EMERGENCY MONITORING Douglas Casey Tucker A Capstone Project Submitted to the University of North Carolina at Wilmington in Partial Fulfillment of the Requirements for the Degree of Master of Science Department of Computer Science Department of Information Systems and Operations Management University of North Carolina at Wilmington 2009 Approved by Advisory Committee Accepted By _______________________________ Dean, Graduate School Abstract GNU Radio and the USRP as a solution for remote emergency monitoring. Douglas Casey Tucker, 2009. Capstone Paper, University of North Carolina at Wilmington. Software-Defined Radio (SDR) is a field that has emerged to solve the problem of interoperability between differing radio frequency (RF) communication standards. Instead of requiring different hardware for each waveform as in traditional analog radio, SDR attempts to provide a more hardware-independent solution by moving the software closer to the antenna. In this document the author presents the case of an information providing company whose goal is to expand into remote locations, the evolution of its operations from low-tech to high-tech automated information systems, and its interest in a particular application of SDR in conjunction with streaming audio and Voice over IP (VoIP) services. 2 Table of Contents 1. INTRODUCTION ...............................................................................................................5
    [Show full text]
  • Openbts Application Suite User Manual
    OpenBTS Application Suite Release 4.0 User Manual Revision date: April 15, 2014 Copyright 2011-2014 Range Networks, Inc. This document is distributed and licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License. Contents 1 General Information 7 1.1 Scope and Audience.........................................8 1.2 License and Copyright........................................8 1.3 Disclaimers..............................................8 1.4 Source Code Availability....................................... 10 1.5 Abbreviations............................................ 11 1.6 References.............................................. 12 1.7 Contact Information & Support................................... 13 2 Introduction to OpenBTS Application Suite 14 2.1 Key Programs............................................ 15 2.2 Network Organization........................................ 16 3 Getting to Know Your OpenBTS System 19 3.1 Accessing the System........................................ 19 3.2 Starting and Stopping Applications................................. 20 3.3 OpenBTS Command Line Interface (CLI)............................. 20 3.4 Using the OpenRANUI....................................... 24 3.5 Databases.............................................. 25 3.6 Folder Structure........................................... 25 3.7 Logging............................................... 26 4 OpenBTS Data Tables and Structures 27 4.1 Manipulating OpenBTS Databases................................. 27 4.2 The Configuration Table.....................................
    [Show full text]
  • Master's Thesis
    Eindhoven University of Technology MASTER Automated 2G traffic interception and penetration testing Veens, T. Award date: 2018 Link to publication Disclaimer This document contains a student thesis (bachelor's or master's), as authored by a student at Eindhoven University of Technology. Student theses are made available in the TU/e repository upon obtaining the required degree. The grade received is not published on the document as presented in the repository. The required complexity or quality of research of student theses may vary by program, and the required minimum study period may vary in duration. General rights Copyright and moral rights for the publications made accessible in the public portal are retained by the authors and/or other copyright owners and it is a condition of accessing publications that users recognise and abide by the legal requirements associated with these rights. • Users may download and print one copy of any publication from the public portal for the purpose of private study or research. • You may not further distribute the material or use it for any profit-making activity or commercial gain Eindhoven University of Technology Department of Mathematics and Computer Science Security Research Group Automated 2G Traffic Interception and Penetration Testing Master's Thesis Thomas Veens Supervisors: prof.dr.ir. W.P.A.J. Michiels, TU/e R. Moonen, Secura Final Version Eindhoven, 19th October, 2018 Abstract While mobile phone users have moved on to 4G, there are still many embed- ded devices around that make use of the 2G cellular network. In the field of penetration testing, security researches are often confronted with such devices that still use 2G data services.
    [Show full text]
  • Version 1.8.0.0
    Synway AST Series Version 1.8.0.0 Synway Information Engineering Co., Ltd www.synway.net Synway Information Engineering Co., Ltd Contents Contents .........................................................................................................................................i Copyright Declaration ..................................................................................................................ii Software License Agreement......................................................................................................iii Revision History ..........................................................................................................................iv Preface ..........................................................................................................................................v Chapter 1 Overview ......................................................................................................................1 1.1 FXM....................................................................................................................................1 1.2 TEJ.....................................................................................................................................2 1.3 CDC ...................................................................................................................................3 Chapter 2 Hardware Installation ..................................................................................................4 Chapter 3 Driver Installation
    [Show full text]
  • Openbts for Dummies
    OpenBTS for dummies Axelle Apvrille, Fortinet January 15, 2013 Abstract This document is to be seen as a guideline or a collection of notes for newbies to OpenBTS who struggle to get it working, or are lost in the wiki pages and wonder where to start. Mostly, I detail here how I got it to work on my side, from step to step, with answers I found to a few issues I faced or my understanding of the problem. I am very (very) far from being an OpenBTS expert. So, please feel free to send in corrections, and also understand that I am probably unable to help you on your specific OpenBTS issues :( If you need some more help, your best choice is certainly to read (and read again) the OpenBTS wiki [Ran], the user manual [Netc] and to subscribe to the mailing-list [ML]. Contents 1 What is OpenBTS? (brief) 3 2 Want to skip to configuration of OpenBTS? Get a Development Kit 3 3 Hardware 3 3.1 Requirements . .3 3.2 My personal configuration . .4 3.3 From the USRP kit to the USRP - newbies only . .4 3.4 Clocks . .5 3.5 Do I really need another clock? . .5 3.6 52Mhz clocks . .6 3.7 Installing the clock . .7 3.8 Software patches . .9 4 Software 9 4.1 OpenBTS P2.8 . .9 4.2 OpenBTS 2.6 . 10 5 Configuration 15 5.1 Basic steps . 15 5.2 Configuring 2.8 . 15 5.3 Configuring 2.6 . 18 1 CONTENTS CONTENTS 6 Testing GnuRadio 21 6.1 USRP Benchmark .
    [Show full text]
  • 601HW User Guide
    601HW User Guide 1 Introduction Introduction.........................................................................3 Getting Started Parts & Functions.............................................................. 6 Home Screen........................................................................ 6 Notification for Setting Maximum Traffic.................... 10 USIM Card..........................................................................10 Inserting/Removing Battery.............................................13 601HW User Guide Contents Charging Battery.............................................................. 14 Power On/Off................................................................... 16 Connecting with WLAN WLAN (Wi-Fi).....................................................................20 Activating WLAN (Wi-Fi) Function..................................21 Connecting Windows PC...................................................21 Connecting Mac.................................................................25 Connecting Android™ Device........................................... 26 Connecting iPhone/iPod touch/iPad................................27 Connecting Nintendo 3DS LL/3DS...................................30 Connecting Wii U/Wii....................................................... 32 Connecting PlayStation®Vita........................................... 34 Connecting PlayStation®4................................................ 35 Connecting PlayStation®3...............................................
    [Show full text]
  • IMSL C Numerical Library Function Catalog Version
    IMSL® C Numerical Library Function Catalog Version 8.0 CORPORATE HEADQUARTERS Rogue Wave Software 5500 Flatiron Parkway Suite 200 Boulder, CO 80301 USA www.roguewave.com IMSL Libraries Contact Information Contact Support Products Overview Products Overview © 1970-2012 Rogue Wave Software. The Rogue Wave Software name and logo, IMSL and PV-WAVE are registered trademarks of Rogue Wave Software, Inc. or its subsidiaries in the US and other countries. JMSL, JWAVE, TS-WAVE, and PyIMSL are trademarks of Rogue Wave Software, Inc. or its subsidiaries. All other company, product or brand names are the property of their respective owners. IMPORTANT NOTICE: Information contained in this documentation is subject to change without notice. Use of this document is subject to the terms and conditions of a Rogue Wave Software License Agreement, including, without limitation, the Limited Warranty and Limitation of Liability. If you do not accept the terms of the license agreement, you may not use this documentation and should promptly return the product for a full refund. This documentation may not be copied or distributed in any form without the express written consent of Rogue Wave. C, C#, Java™ and Fortran Application Development Tools Table of Contents ® IMSL C NUMERICAL LIBRARY VERSION 8.0 2 Mathematical Functionality Overview 5 Statistical Functionality Overview 6 ® IMSL Libraries are also available for Fortran, Java, C# for .NET and Python 7 IMSL C MATH LIBRARY 8 CHAPTER 1: LINEAR SYSTEMS ...................................................................................................................
    [Show full text]
  • Research Article a Survey of Open Source Products for Building a SIP Communication Platform
    Hindawi Publishing Corporation Advances in Multimedia Volume 2011, Article ID 372591, 21 pages doi:10.1155/2011/372591 Research Article A Survey of Open Source Products for Building a SIP Communication Platform Pavel Segec and Tatiana Kovacikova Department of InfoCom Networks, University of Zilina, Univerzitna 8215/1, 010 26 Zilina, Slovakia Correspondence should be addressed to Tatiana Kovacikova, [email protected] Received 29 July 2011; Revised 31 October 2011; Accepted 15 November 2011 Academic Editor: T. Turletti Copyright © 2011 P. Segec and T. Kovacikova. This is an open access article distributed under the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited. The Session Initiation Protocol (SIP) is a multimedia signalling protocol that has evolved into a widely adopted communication standard. The integration of SIP into existing IP networks has fostered IP networks becoming a convergence platform for both real- time and non-real-time multimedia communications. This converged platform integrates data, voice, video, presence, messaging, and conference services into a single network that offers new communication experiences for users. The open source community has contributed to SIP adoption through the development of open source software for both SIP clients and servers. In this paper, we provide a survey on open SIP systems that can be built using publically available software. We identify SIP features for service deve- lopment and programming, services and applications of a SIP-converged platform, and the most important technologies support- ing SIP functionalities. We propose an advanced converged IP communication platform that uses SIP for service delivery.
    [Show full text]