Node.Js Come Into the Picture

Total Page:16

File Type:pdf, Size:1020Kb

Node.Js Come Into the Picture WebRTC Integrator's Guide Altanai Chapter No. 1 "Running WebRTC with and without SIP" In this package, you will find: The author’s biography A preview chapter from the book, Chapter no.1 "Running WebRTC with and without SIP" A synopsis of the book’s content Information on where to buy this book About the Author Altanai, born into an Indian army family, is a bubbly, vivacious, intelligent computer geek. She is an avid blogger and writes on Research and Development of evolving technologies in Telecom (http://altanaitelecom.wordpress.com). She holds a Bachelor's degree in Information Technology from Anna University, Chennai. She has worked on many Telecom projects worldwide, specifically in the development and deployment of IMS services. She firmly believes in contributing to the Open Source community and is currently working on building a WebRTC-based JS library with books for more applications. Her hobbies include photography, martial arts, oil canvas painting, river rafting, horse riding, and trekking, to name a few. This is her first book, and it contains useful insight into WebRTC for beginners and integrator in this field. The book has definitions and explanations that will cover many interesting concepts in a clear manner. Altanai can be contacted at [email protected]. For More Information: www.packtpub.com/web-development/webrtc-integrators-guide WebRTC Integrator's Guide WebRTC Integrator's Guide is a deep dive into the world of real-time telecommunication and its integration with the telecom network. This book covers a wide range of WebRTC solutions, such as GSM, PSTN, and IMS, designed for specific network requirement. It also addresses the implementation woes by describing every minute detail of the WebRTC platform setup from the APIs to the architecture, code-to-server installations, RCS-to-Codec interoperability, and much more. It also describes various enterprise-based use cases that can be built around WebRTC. What This Book Covers Chapter 1, Running WebRTC with and without SIP, is a quick brush-up of WebRTC basics such as Media APIs. It also describes the use of plain WebSocket signaling to deliver WebRTC-based browser-to-browser communication. Chapter 2, Making a Standalone WebRTC Communication Client, talks about the use of the Session Initiation Protocol (SIP) as the signaling mechanism for WebRTC. It describes the setup of the SIP server for this purpose. Chapter 3, WebRTC with SIP and IMS, outlines the interaction of a SIP-based WebRTC client with the IP Multimedia Subsystem (IMS). Chapter 4, WebRTC Integration with Intelligent Network, describes the ways in which WebRTC can be made interoperable with mobile phones, as the majority of mobile communications today are still on GSM under the IN model. Chapter 5, WebRTC Integration with PSTN, describes the backward compatibility of the WebRTC technology to the old, fixed-line telephones. Chapter 6, Basic Features of WebRTC over SIP, describes the basic WebRTC SIP services such as audio/video call, messaging, call transfer, call hold/resume, and others. Chapter 7, WebRTC with Industry Standard Frameworks, discusses the development of the WebRTC client over the industry-adopted framework (that is, Model- View-Controller). For More Information: www.packtpub.com/web-development/webrtc-integrators-guide Chapter 8, WebRTC and Rich Communication Services, discusses how RCS enriches the communication technology with features such as file transfer, Presence, phonebook, and others. Chapter 9, Native SIP Application and Interaction with WebRTC Clients, addresses a very important concern, that is, the WebRTC interoperability with other SIP endpoints such as desktop clients, SIP hardphones, and mobile-based SIP applications. Chapter 10, Other WebRTC Use Cases, presents an interesting array of WebRTC use cases that are both innovative and practical with the current WebRTC standards. For More Information: www.packtpub.com/web-development/webrtc-integrators-guide Running WebRTC with and without SIP WebRTC lets us make calls right from a web page without any plugin. This was made possible using media APIs of the browser to fetch user media, WebSocket for transportation, and HTML5 to render the media on the web page. Thus, WebRTC is an evolved form of WebSocket communication. WebSocket is a Transport Layer protocol that carries data. The WebSocket API is an Application Programming Interface (API) that enables web pages to use the WebSocket protocol for (duplex) communication with a remote host. In this chapter, we will study how WebRTC really works. We will also demonstrate the use of WebRTC media APIs to capture and render input from a user's microphone and camera onto a web page. In the later part of chapter, we will fi nd out how to build a simple standalone WebRTC client using the plain WebSocket protocol as the signaling mechanism. JavaScript Session Establishment Protocol (JSEP) The communication model between a client and remote host is based on the JSEP architecture, which differentiates the signaling and media transaction into different layers. For More Information: www.packtpub.com/web-development/webrtc-integrators-guide Running WebRTC with and without SIP The differentiation is shown in the following fi gure: WebRTC: JSEP Approach Signaling vs Media Network Signaling Signaling App App App SessionDescription SessionDescription WebRTC Browser Browser Media Caller Callee JSEP signaling and media As an example, let's consider two peers, A and B, where A initiates communication with B. Initially, in the fi rst case, A being the offerer will have to call the createOffer function to begin a session. A also mentions details such as codecs through a setLocalDescription function, which sets up its local confi g. The remote party, B, reads the offer and stores it using the setRemoteDescription function. The remote party, B, calls the createAnswer function to generate an appropriate answer, applies it using the setLocalDescription function, and sends the answer back to the initiator over the signaling channel. When A gets the answer, it also stores it using the setRemoteDescription function, and the initial setup is complete. This is repeated for multiple offers and answers. The latest on JSEP specifi cations can be read from the Internet Engineering Task Force (IETF) site at http://datatracker. ietf.org/doc/draft-ietf-rtcweb-jsep/. Signal and media fl ows The differentiation between signal and media fl ows is an important aspect of the WebRTC call setup. The signaling mechanism can be any among HTTP/REST, JavaScript Object Notation (JSON) via XMLHttpRequest (XHR), Session Initiation Protocol (SIP) over websockets, XMPP, or any custom or proprietary protocol. The media (audio/video) is defi ned through the Session Description Protocol (SDP) and fl ows from peer to peer. [ 8 ] For More Information: www.packtpub.com/web-development/webrtc-integrators-guide Chapter 1 A few instances of end-to-end signaling and media fl ow variants are shown in the following screenshot: JSONvia XMLHttpRequest Network JSONvia XMLHttpRequest Signaling Signaling App App App SessionDescription SessionDescription WebRTC RTP Browser Browser Media Caller Callee websocket subprotocol JSON XMR The preceding fi gure depicts signaling over the WebRTC API in the JSON format via XHR. Now, the following fi gure depicts signaling over the WebRTC API in eXtensible Messaging and Presence Protocol (XMPP): XMPP Network XMPP Signaling Signaling App App App SessionDescription SessionDescription WebRTC Browser Browser Media Caller Callee eXtensible Messaging and Presence Protocol (XMPP) [ 9 ] For More Information: www.packtpub.com/web-development/webrtc-integrators-guide Running WebRTC with and without SIP While it's very popular to use the WebRTC API with SIP support through JavaScript libraries such as JSSIP, SIPML5, PJSIP, and so on, these libraries cater to the SIP/IMS (IP Multimedia Subsystem) world and are not mandatory for setting up enterprise-level WebRTC Infrastructure. In fact, it is a misconception that WebRTC is coupled with SIP in itself; it isn't. IP Multimedia System (IMS) is part of the Next Generation Network (NGN) model for IP-based communication. Running WebRTC without SIP HTML5 websockets can be defi ned by ws:// followed by the URL in the server fi eld while readying a WebRTC client for registration. This enables bidirectional, duplex communications with server-side processes, that is, server-side push events to the client. It also enables the handshake after sharing media metadata such as ports, codecs, and so on. It should be noted that WebRTC works in an offer/answer mode and has ways of traversing the Network Address Translation (NAT) and fi rewalls by means of Interactive Connectivity Establishment (ICE). ICE makes use of the Session Traversal Utilities for NAT (STUN) protocol and its extension, Traversal Using Relay NAT (TURN). This is covered later in the chapter. Sending media over WebSockets WebRTC mainly comprises three operations: fetching user media from a camera/microphone, transmitting media over a channel, and sending messages over the channel. Now, let's take a look at the summarized description of every operation type. getUserMedia The JavaScript getUserMedia function (also known as MediaStream) is used to allow the web page to access users' media devices such as camera and microphone using the browser's native API, without the need of any other third-party plugins such as Adobe Flash and Microsoft Silverlight. [ 10 ] For More Information: www.packtpub.com/web-development/webrtc-integrators-guide
Recommended publications
  • FOSDEM 2017 Schedule
    FOSDEM 2017 - Saturday 2017-02-04 (1/9) Janson K.1.105 (La H.2215 (Ferrer) H.1301 (Cornil) H.1302 (Depage) H.1308 (Rolin) H.1309 (Van Rijn) H.2111 H.2213 H.2214 H.3227 H.3228 Fontaine)… 09:30 Welcome to FOSDEM 2017 09:45 10:00 Kubernetes on the road to GIFEE 10:15 10:30 Welcome to the Legal Python Winding Itself MySQL & Friends Opening Intro to Graph … Around Datacubes Devroom databases Free/open source Portability of containers software and drones Optimizing MySQL across diverse HPC 10:45 without SQL or touching resources with my.cnf Singularity Welcome! 11:00 Software Heritage The Veripeditus AR Let's talk about The State of OpenJDK MSS - Software for The birth of HPC Cuba Game Framework hardware: The POWER Make your Corporate planning research Applying profilers to of open. CLA easy to use, aircraft missions MySQL Using graph databases please! 11:15 in popular open source CMSs 11:30 Jockeying the Jigsaw The power of duck Instrumenting plugins Optimized and Mixed License FOSS typing and linear for Performance reproducible HPC Projects algrebra Schema Software deployment 11:45 Incremental Graph Queries with 12:00 CloudABI LoRaWAN for exploring Open J9 - The Next Free It's time for datetime Reproducible HPC openCypher the Internet of Things Java VM sysbench 1.0: teaching Software Installation on an old dog new tricks Cray Systems with EasyBuild 12:15 Making License 12:30 Compliance Easy: Step Diagnosing Issues in Webpush notifications Putting Your Jobs Under Twitter Streaming by Open Source Step. Java Apps using for Kinto Introducing gh-ost the Microscope using Graph with Gephi Thermostat and OGRT Byteman.
    [Show full text]
  • Smart Communication Platforms for Prototyping Smart City Applications
    Competence Center NGNI Fraunhofer FOKUS Keynote at National Research Council of Thailand (NRCT) Annual Meeting, Bangkok, Thailand, August 25, 2013 Smart Communication Platforms for Prototyping Smart City Applications Prof. Dr. Thomas Magedanz Fraunhofer FOKUS / TU Berlin [email protected] www.fokus.fraunhofer.de/go/ngni Competence Center NGNI Fraunhofer FOKUS Agenda Smart Cities as Future Internet Show Case Smart City communication infrastructures requirements The Role of IP Multimedia Subsystem, Machine Type Communication, Evolved Packet Core and related Open APIs within emerging Smart City SDPs FOKUS Toolkits and practical examples Summary Q&A Competence Center NGNI Fraunhofer FOKUS Main Messages of the Talk Convergence of fixed and mobile networks plus internet technologies was the driver for Next Generation Network (NGN) IMS (plus an SDP) is the common control platform of the NGN today Over the top (OTT) services challenge operators and IMS platforms Future Internet (FI) is a hot research topic and equates to emerging Smart City (SC) ICT platforms and applications Smart Cities relate to the domains of Internet of Things ( M2M) and Internet of Services ( SDP) Smart Cities are driving even more convergence of networks and control platforms Evolved Packet Core (EPC) and Machine Type Communication (MTC) platforms are becoming key pillars around IP Multimedia System (IMS) in the context of emerging Smart City ICT platforms Nevertheless Open APIs will abstract from the specifics of the platforms FOKUS tools
    [Show full text]
  • A Case for SIP in Javascript", IEEE Communications Magazine , Vol
    Copyright © IEEE, 2013. This is the author's copy of a paper that appears in IEEE Communications Magazine. Please cite as follows: K.Singh and V.Krishnaswamy, "A case for SIP in JavaScript", IEEE Communications Magazine , Vol. 51, No. 4, April 2013. A Case for SIP in JavaScript Kundan Singh Venkatesh Krishnaswamy IP Communications Department IP Communications Department Avaya Labs Avaya Labs Santa Clara, USA Basking Ridge, USA [email protected] [email protected] Abstract —This paper presents the challenges and compares the applications independent of the specific SIP extensions alternatives to interoperate between the Session Initiation supported in the vendor's gateway. Protocol (SIP)-based systems and the emerging standards for the Web Real-Time Communication (WebRTC). We argue for an We observe that decoupled development across services , end-point and web-focused architecture, and present both sides tools and applications promotes interoperability. Today, the of the SIP in JavaScript approach. Until WebRTC has ubiquitous web developers can build applications independent of a cross-browser availability, we suggest a fall back strategy for web particular service (Internet service provider) or vendor tool developers — detect and use HTML5 if available, otherwise fall (browser, web server). Unfortunately, many existing SIP back to a browser plugin. systems are closely integrated and have overlap among two or more of these categories, e.g., access network provider Keywords- SIP; HTML5; WebRTC; Flash Player; web-based (service) wants to control voice calling (application), or three communication party calling (application) depends on your telephony provider (service). The main motivation of the endpoint approach (also I. INTRODUCTION known as SIP in JavaScript) is to separate the applications In the past, web developers have resorted to browser (various SIP extensions and telephony features) from the plugins such as Flash Player to do audio and video calls in the specific tools (browsers or proxies) or VoIP service providers.
    [Show full text]
  • Krivenko Eugene
    Krivenko Eugene city: Kiev E-mail: [email protected] CONTACT Website: https://www.linkedin.com/in/eugen- krivenko Phone: +380632141113 OBJECTIVE I'm a Front-end developer seeking an opportunity to participate in an interesting project and to become a part of a great team. Desire to work with React, NodeJS etc. Love for minimalizm, optimisation, clean code, structuring, best practices. PROFESSIONAL SKILLS Javascript, Typescript React, AngularJS, Angular2 Redux, RxJS Webpack, Gulp WebSockets (socket.io, signalR, sip.js) Node.JS (Hapi, Express) Bootstrap, HTML, CSS, SCSS, SASS, Angular Material D3.js SEO understanding WORK EXPERIENCE Maxitech 04.2019 — 03.2021 Frontend developer Responsibilities: Implement new features and improve existing ones Improve Redux store structure Improve components architecture Code review Bug fixing Interview new candidates Mentoring Environment: React, Redux, Redux Toolkit, RxJS, signalR, socket.io, Express, Typescript, Git, PostCSS, Jest, Webpack Krivenko Eugene 1 MWDN 09.2017 — 03.2019 Frontend developer Responsibilities: Implement new features and improve existing ones Maintain existing projects AngularJs/React Migrate project from AngularJS to React Refactoring Code review Bug fixing Interview new candidates Environment: React, AngularJS, Git, SASS, CSSinJS, Redux, Webpack, MobX, ES6, Typescript, Jenkins, Hapi.js, MongoDB, D3, Jira Evoplay 09.2016 — 08.2017 Frontend developer Lead Responsibilities: Create new project from scratch Implement new features and improve existing ones Participate in project
    [Show full text]
  • Webrtc 2 Voip Flowroute Dids Now Support Web Originated Calls
    ClueCon 2019 WebRTC 2 VoIP Flowroute DIDs now support web originated calls Julien Chavanton Lead software engineer - voice routing - flowroute.com presentation agenda : WebRTC 2 VoIP and share some insights about the design and features. ➔ How we are using Kamailio to do our web edge-proxies, providing SIP over WebSockets, Topology hiding and SDP normalization. (With sipwise RTP-engine) ➔ JS libraries, to help our customers integrate WebRTC for inbound audio calls on Flowroute DIDs using JSSIP, we will look at our provided Javascript libraries jssip_client and jssip_ui ➔ How we are monitoring QoS stats for audio sessions and audio streams with G.711 and Opus. ➔ The current state of our platform and how we were able to reuse our multiple point of presences and APIs to enable new possibilities for our customers. Addition to carrier infrastructure using Kamailio sip-proxy Kamailio SIP over websocket rfc7118 https://kamailio.org/docs/modules/stable/modules/websocket.html 5.1. ws_handle_handshake() This function checks an HTTP GET request for the required headers and values, and (if successful) upgrades the connection from HTTP to WebSocket. Below is an example of a WebSocket handshake in which the client requests the WebSocket SIP subprotocol support from the server: GET / HTTP/1.1 Host: sip-ws.example.com Upgrade: websocket Connection: Upgrade Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ== Origin: http://www.example.com Sec-WebSocket-Protocol: sip Sec-WebSocket-Version: 13 The handshake response from the server accepting the WebSocket SIP subprotocol would look as follows: HTTP/1.1 101 Switching Protocols Upgrade: websocket Connection: Upgrade Sec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo= Sec-WebSocket-Protocol: sip Once the negotiation has been completed, the WebSocket connection is established and can be used for the transport of SIP requests and responses.
    [Show full text]
  • Making the Right Signalling Choice
    Making the Right Signalling Choice Session: D1-3 Erik Linask Group Editorial Director TMC [email protected] Session Presenters • Peter Dunkley – Technical Director – Crocodile RCS Ltd • Steven Northridge – Director SDP Product Marketing Oracle • Erik Lagerway – Co-founder – Hookflash Peter Dunkley Technical Director Crocodile RCS Ltd [email protected] Signalling Options • Signalling is required to discover endpoints to communicate with • There are many options • Proprietary – RESTful – BOSH – WebSockets • Standards based – XMPP over BOSH/WebSockets – SIP over WebSockets Open standards are usually best • Promotes interoperability • Many years of development have solved most resilience and scaling problems – SIP: ~17 years of development – XMPP: ~14 years of development • Stand on the shoulders of giants • Existing server infrastructure can be reused with little or no modification • Usually many open-source options to get started with SIP has many advantages • Less complicated than most people think • The widest used, standard, session initiation protocol in the world • Many open-source SIP over WebSocket implementations, including – Servers: Asterisk, Kamailio, OverSIP, reSIProcate – Clients: jain-sip.javascript, JsSIP, QoffeeSIP, sipml5 • SDP and SIP work well together Steve Northridge Director SDP Product Marketing Oracle [email protected] WebRTC Landscape RTC becomes part of Existing communications the Web experience extended to the Web Interoperate Communications islands interoperate Signaling Options • REST
    [Show full text]
  • FRAFOS ABC SBC Handbook Release 4.5
    FRAFOS ABC SBC Handbook Release 4.5 FRAFOS GmbH November 10, 2020 Contents 1 About the ABC Session Border Controller1 1.1 How to Start?.............................................2 1.2 Credits................................................3 2 Release Notes 4 2.1 Release Notes for ABC SBC version 4.5..............................4 2.2 Release Notes for ABC Monitor version 4.5.............................5 3 Introduction 6 3.1 A Brief Introduction to History and Architecture of SIP......................6 3.2 What is a Session Border Controller (SBC)?............................9 3.3 Do You Need an SBC?........................................ 12 3.4 ABC SBC Networking Concepts.................................. 13 4 Practical Guide to the ABC SBC 19 4.1 Network Planning Guidelines.................................... 19 4.2 Planning Checklists......................................... 26 4.3 A Typical SBC Configuration Example............................... 27 5 Installing the ABC SBC 45 5.1 Types of Installations: Hardware-based, Virtualized, and Cloud-based............... 45 5.2 Hardware Requirements....................................... 45 5.3 OS Tuning.............................................. 46 5.4 Deployment Modes......................................... 46 5.5 VM Installation............................................ 47 5.6 Installation Procedure........................................ 49 5.7 Initial Configuration......................................... 51 5.8 Setting Up Web Interface Access and User Accounts.......................
    [Show full text]
  • Designing and Prototyping Webrtc and IMS Integration Using Open Source Tools
    Designing and Prototyping WebRTC and IMS Integration using Open Source Tools Submitted in fulfilment of the requirements for the degree of Master of Science of Rhodes University by Tebagano Valerie Motsumi March 2018 Acknowledgements I heard from someone that when you are pursuing a postgraduate degree, you become the product in addition to the degree itself. I can honestly say that these words ring true for me given how this research journey has stretched me in ways I never imagined possible. I learnt what it means to trust; to pursue relentlessly; to overcome and to be vulnerable enough to receive support and for that I thank Poppa God for being faithful and true to His word that indeed He will never leave me nor forsake me. A special thank you to my supervisors Dr. Mosiuoa Tsietsi and Prof. Alfredo Terzoli - Mos for the hands-on support he so selflessly gave me from beginning right up to the end and Alfredo for the oversight and financial support – words cannot express the immense gratitude I feel for you for your support throughout this journey. I want to thank my mum for her continued tender love and care during our project and for reminding me every time I faced challenges that I will always have a home. A big thank you to my sister Sega for her support, to my husband Sydney for his persistent encouragement to keep trucking and to my family and friends. If I have forgotten to thank you, please charge it to my head and not my heart. At last, it is finished.
    [Show full text]
  • Videoconference System Based on Webrtc with Access to the PSTN
    Available online at www.sciencedirect.com Electronic Notes in Theoretical Computer Science 329 (2016) 105–121 www.elsevier.com/locate/entcs Videoconference System Based on WebRTC With Access to the PSTN Alfonso Sandoval Rosas1,2 José Luis Alejos Martínez3 Mobile Computing Laboratory, Telematics Academy, Unidad Profesional Interdisciplinaria en Ingeniería y Tecnologías Avanzadas (UPIITA) Instituto Politécnico Nacional (IPN) Mexico City, Mexico Abstract The research presented in this paper introduces Rendez-Vous, which is a system oriented to provide its users with a greater communication availability through the convergence of the conventional telephony and the real-time multimedia on the web browsers. The system consists on a web application that provides a videoconference room for multiple users without having to download any additional software. For the cases in which a user with no internet connection might need to participate in a conference, it is possible to dial and answer phone calls to/from the PSTN directly on the web browser, allowing the telephonic user to interact with the others using his/her voice. The aim of the present project is to propose a unified communications system that differs from others mainly in the interaction with the telephone network directly from a web browser while having an active videoconference, allowing real-time exchange of media streams between these two technologies. The system Rendez-Vous was implemented with the use of WebRTC (Web Real-Time Communications) for the transmission of audio and video on real-time, Node.js as a web and signaling server, as well as the software Asterisk for providing telephonic access, along with jsSIP, which is a JavaScript library for implementing a SIP User Agent.
    [Show full text]
  • Completesbc Handbook Release 2.3.0
    CompleteSBC Handbook Release 2.3.0 Xorcom March 05, 2015 VoIPon www.voipon.co.uk [email protected] Tel: +44 (0)1245 808195 Fax: +44 (0)1245 808299 Contents 1 About This Book 1 2 Introduction 3 2.1 A Brief Introduction to History and Architecture of SIP ...................... 3 2.2 What is a Session Border Controller (SBC)? ............................ 6 2.3 Do You Need an SBC? ........................................ 9 2.4 CompleteSBC Networking Concepts ................................ 10 3 Practical Guide to the CompleteSBC 17 3.1 Network Planning Guidelines .................................... 17 3.2 Planning Checklists ......................................... 24 3.3 A Typical SBC Configuration Example ............................... 25 4 Installing the CompleteSBC 42 4.1 Initial Configuration ......................................... 42 4.2 Web Interface Access and User Accounts .............................. 42 4.3 CompleteSBC License ........................................ 44 4.4 Hardware Specific Configurations .................................. 44 5 General CompleteSBC Configuration Guide 46 5.1 Physical, System and SBC Interfaces ................................ 46 5.2 Defining Rules ............................................ 46 5.3 Using Replacements in Rules .................................... 50 5.4 Using Regular Expression Backreferences in Rules ......................... 52 5.5 Binding Rules together with Call Variables ............................. 53 5.6 SIP Routing ............................................. 53 5.7
    [Show full text]
  • SIPCAPTURE @Fosdem 2016
    ESPRESSO EDITION meet #HOMER @ F O S D E M 2 0 1 6 Written by: Alexandr Dubovikov, Lorenzo Mangani HOMER Development Team http://sipcapture.org Sponsored by QXIP BV - http://qxip.net Quick Introduction to QXIP and SIPCAPTURE ABOUT US QXIP {QuickSIP} is an Dutch R&D Company specializing in Open-Source and Commercial Voice Technology Development SIPCAPTURE is an Open-Source foundation and community primarily sponsored by QXIP BV and its Founders Our flagship OSS projects is SIPCAPTURE HOMER based on our mature and open encapsulation protocol HEP/EEP Our Open-Source and Commercial solutions are deployed and trusted by thousands of Businesses worldwide. Our Customers include large telephony network operators, voice service carriers, voip service providers, cloud service providers, call center operators, voice equipment vendors and Enterprises relying on VoIP including Fortune 500 Our Capture Technologies are natively implemented in all major OSS voip platforms such as Kamailio, OpenSIPS, FreeSWITCH, Asterisk, OpenUC and many capture tools such as sipgrep, sngrep, our captagent and more. Our Github repository at http://github.com/sipcapture features all of our software and many HEP integration examples. For full details abour our projects and services please visit our website at http://qxip.net SIPCAPTURE + HOMER 100% Open Source VoIP Monitoring and Troubleshooting Tools HOMER is a robust, carrier-grade, scalable SIP Capture system and VoiP Monitoring Application offering HEP/EEP, IPIP & port mirroring/monitoring support out of the box ready to process, index & store insane amounts of signaling, logs and statistics with instant search, end-to-end analysis and drill-down capabilities for ITSPs, VoIP Providers Trunk Suppliers as well as Enterprises and Developers using SIP signaling protocol.
    [Show full text]
  • Evaluating Voice Over IP Phone Implementation on a Freescale Cortex A9 Processor Running Linux Using Open Source SIP and Webrtc
    Evaluating Voice over IP phone implementation on a freescale Cortex A9 processor running Linux using open source SIP and WebRTC Eric Sj¨ogren August 16, 2016 Master's Thesis in Computing Science, 30 credits Supervisor at CS-UmU: Thomas Hellstr¨om Examiner: Henrik Bj¨orklund Ume˚a University Department of Computing Science SE-901 87 UMEA˚ SWEDEN Abstract Voice over IP (VoIP) is a methodology that refers to the delivery of multimedia and voice sessions over an Internet connection and it provides an alternative to regular voice calls using phone lines, usually referred to as the Public Switched Telephone Network (PSTN). Web Real- Time Communication (WebRTC) is an API definition for browser-to-browser VoIP applications; the definition acts as a foundation for applications using voice, video, chat, and P2P file sharing in a browser environment without the need of either internal or external plugins. To allow WebRTC to make calls to non-WebRTC VoIP applications, a initiation protocol (which is not included in the WebRTC implementation looked at here, i.e., the one released by Google) is needed. One such protocol is the Session Initiation Protocol (SIP), which is the standard protocol used for initialising, changing and terminating interactive sessions for multimedia today; it is particularly known for its use in VoIP applications. In this thesis, we evaluate the possibility of the creation of a WebRTC implementation using SIP (this type of implementation is referred to as WebRTC-SIP) that runs on an ARM A9 processor architecture. The evaluation is split into two steps. The first step consists of analysing and performing tests of the Linux audio drivers on an ARM platform.
    [Show full text]