ilanga: A Next Generation VoIP-based, TDMenabled

Size: px
Start display at page:

Download "ilanga: A Next Generation VoIP-based, TDMenabled"

Transcription

1 ilanga: A Next Generation VoIP-based, TDMenabled PBX J. Penton, A. Terzoli Computer Science Department Rhodes University Grahamstown, j.penton@ru.ac.za Tel: (046) ; Fax: (046) Topic: Next Generation Networks ABSTRACT 1 - ilanga is a complete, cost-effective, computer-based PBX built and being prepared as a commercial product at Rhodes University. Running on a single PC (in its minimal configuration), ilanga provides all the features of a conventional PBX together with full support for VoIP. In this paper we introduce and discuss ilanga s architecture, emphasising its main components, Asterisk, SIP Express Router (SER) and OpenH323 Gatekeeper (OpenGK). We also discuss the development of new services and features in ilanga as well as the possibility to manage and customize it. The paper concludes with the description of a pilot deployment of ilanga that we are using to test and refine the system. I. INTRODUCTION The advancements in computer networks allows complete telephony over them, often referred to as VoIP (Voice over Internet Protocol). ilanga is an open, computer-based telecommunication product being put together at the Rhodes University Computer Science Department. ilanga can be installed in an IP-compliant computer network, with the possibility of connection to existing legacy private branch exchanges (PBX) or the public telephone network (PSTN) using specialised, low cost hardware. Ilanga is built from various components implemented by the open source community, including Asterisk [1], SIP Express Router (SER) [2], and OpenH323 Gatekeeper (OpenGK) [3]. This paper describes the ilanga architecture with an emphasis on its main components. decided to extend its VoIP support, hence the addition of SER and OpenGK in ilanga. Development of services in ilanga is made easy by the unique design of its core switching component, Asterisk. We discuss this in section 3, with some examples to help illustrate the discussion. Most conventional PBX systems are not open and can not be customised or enhanced without the aid of the PBX vendor. We show the flexibility of ilanga in terms of customisation and enhancement, providing accomplished programmers with full control of the system. ilanga is currently deployed experimentally in the Rhodes University Computer Science Department to provide telephony services to its post graduate students. Section 5 concludes with a description of this deployment. II. ILANGA ARCHITECTURE ilanga is comprised of three open source products, Asterisk, SIP Express Router (SER) and OpenGK (see figure 1). Asterisk (core switching software) The main switching component of ilanga is Asterisk. Asterisk is an open source converged TDM and packet-based communication system, which we discussed in detail in a previous paper [4]. Asterisk is a stand-alone component that provides limited support for large-scale VoIP networks. We This work is under the auspices of the Centre of Excellence in Distributed Multimedia at Rhodes University, which is funded by Telkom SA (Pty) Ltd, THRIP, Letlapa Mobile Solutions and Comparex Africa. SER (SIP proxy) ilanga Box Figure 1: ilanga main components OpenGK (H.323 gatekeeper)

2 II.1 Asterisk Asterisk is essentially a switching system, connecting calls among users as well as automated tasks. The switching core transparently connects calls arriving on various hardware and software interfaces by routing them according to a highly customisable dial plan. Asterisk provides all traditional PBX features, plus more. It features a complete voic system and interactive voice response system (IVR) including music on hold (MOH), as well as basic call services like call transfer, call conferencing, call intrusion, etc. Asterisk is designed to allow users to make use of its services independently of the network in which they reside. For example, ilanga users can access their voic from their SIP phone, H.323 phone or cell phone transparently. Asterisk is responsible for the interoperation of the different communications protocols and networks. Asterisk handles the translation at the call signalling layer (e.g. SIP to H.323) as well as the media layer (e.g. G723.1 audio codec on the IP network to PCM audio on the PSTN and PBX networks). To successfully carry out the signalling and media conversion, Asterisk must remain in the path of all calls at both the call signalling layer and the media layer. As a result, the load on a single Asterisk server can become high when there is a high call volume. Fortunately, Asterisk is designed to be easily distributed among a number of servers and still function as a single atomic unit. Decomposition of Asterisk into multiple servers is made possible by the Inter-Asterisk Exchange (IAX) protocol [5]. Although developed to facilitate communication between distributed Asterisk servers, IAX is a complete VoIP protocol that is gaining popularity, with a number of clients already available. The design of IAX was inspired by SIP and MGCP and extended to: minimise bandwidth usage for both control and media transmissions provide network address translation (NAT) transparency support the ability to transmit dial plan information support efficient implementation of intercom and paging features Naturally, no additional management, registration and authorisation components are required to support IAX in ilanga. IAX clients connect directly to Asterisk with no need for an intermediate component. Currently, ilanga runs the latest stable release of Asterisk, II.2 SER Asterisk has a built-in SIP proxy server that handles SIP client registrations. This proxy server is limited in functionality and acts only as a minimal SIP location server. We decided to incorporate a more advanced SIP proxy server into the ilanga PBX. SIP Express Router (SER) is an open, high-performance SIP proxy, location and redirect server. SER is suitable for a range of scenarios including small-office use, enterprise PBX replacements and carrier services. In ilanga SER is used in conjunction with Asterisk to manage SIP registrations and provide innovative SIP services. SIP peer-to-peer proxy communication SIP Users SER SIP Proxy Asterisk IP Network Figure 2: Asterisk SER peer proxy communication SER manages all ilanga SIP users and acts as a point of entry for SIP users into the ilanga environment (figure 2). In this architecture SIP users can enjoy the functional benefits of SER, like instant messaging, presence and forking and still have access to the functionality provided by Asterisk. When configured as a forking proxy, SER enable users to register with any number of SIP clients from different locations simultaneously and still keep the same address. For example, assume that Bob is assigned the SIP address: bob@sip.ru.ac.za. Let us also assume that Bob has a number of active SIP clients (for example his laptop, his computer at home and his SIP telephone at work). When someone calls Bob s SIP address, bob@sip.ict.ru.ac.za, SER will forward the request to all three of Bob s registered clients, causing each one to ring. As soon as Bob answers one of the clients, the call is setup and the remaining clients stop ringing. This functionality is extended to TDM networks and other VoIP networks (H.323, IAX) via Asterisk. Calls can therefore be forked to any VoIP or TDM based communication device. For example, Bob s set of ringing devices could include his H.323 phone, IAX phone and cell phone. Another advantage of this architecture is security. SIP users must register and authenticate with SER before being able to

3 use the services of ilanga. The SIP proxy server in Asterisk supports only plain text authentication, while SER provides more secure digest authentication. In ilanga SER and Asterisk complement each other and appear as one atomic unit to users. This is accomplished by the cooperation of SER and Asterisk as peer SIP proxies. SER forwards calls to Asterisk according to its dial plan. We designed SER s dial plan to forward all calls to users on different networks (for example, H.323, IAX, TDM) as well as service calls (like voic , call conferencing, directory services) to Asterisk. Asterisk s dial plan is designed to forward calls directed to SIP users to SER. Configuring SER and Asterisk to cooperate as peer proxies is relatively easy. However, care has to be taken to ensure that the individual dial plans of SER and Asterisk are complementary and that the possibility of infinite routing loops is eliminated. Currently, ilanga runs the latest release version of SER, II.3. OpenGK Asterisk supports the H.323 protocol and behaves as an H.323 terminal or H.323 gateway endpoint. Asterisk does not provide any H.323 management or alias address mapping functionality, i.e. it does not provide H.323 gatekeeper functionality. An H.323 gatekeeper is an important component of an H.323 network and is responsible for management, authentication, authorisation and alias address mapping. We decided to integrate an H.323 gatekeeper into ilanga to provide such functionality to H.323 users (see figure 3). H.323 Users OpenGK H.323 Gateway <=> Gatekeeper communication H.323 GW Asterisk Figure 3: Asterisk H.323 Gateway OpenH323 Gatekeeper communication The OpenH323 Gatekeeper (OpenGK) is a fully featured H.323 gatekeeper based on the open source OpenH323 protocol stack. OpenGK provides call control services to H.323 endpoints, such as Address Translation, Admissions Control, and Call Authorization. OpenGK manages all ilanga H.323 users and provides them with a point-of-entry into Asterisk. Similarly to SER, H.323 users must authenticate with OpenGK to access Asterisk. Again, this adds a basic level of security to ilanga s services and resources. H.323 Address Translation is an important function provided by OpenGK to ilanga H.323 users. Without address translation H.323 users would not be able to dial alphanumeric aliases (e.g. Bob ) or conventional telephone numbers (E.164, numbers), such as Instead they would have to use the IP address of the endpoint they want to call. OpenGK solves this by mapping aliases and E.164 numbers to their corresponding IP addresses. We configured OpenGK and Asterisk to cooperate by registering Asterisk with OpenGK as a gateway. By registering it as a gateway, Asterisk can instruct OpenGK to map E.164 numbers and alphanumeric aliases to their corresponding IP address. For example, we configured Asterisk to register the prefixes 7 and 8 with OpenGK to correspond with the number blocks for all ilanga users (e.g and ). The 8XXX number block is used by the Rhodes University legacy PBX: when an H.323 user dials a number of the form 8XXX, the call is routed via OpenGK to Asterisk and finally to the Rhodes University PBX via Asterisk s ISDN BRI interfaces into the PBX. The 7XXX number block is used for all other ilanga users (VoIP or TDM). H.323 calls to numbers of the form 7XXX are similarly routed via OpenGK to Asterisk where they are routed to the corresponding ilanga user according to Asterisk s dial plan. Using the above prefixes we were able to maintain consistency in the ilanga dial plan, ensuring that H.323 users can dial the same numbers as any other ilanga user (e.g. TDM user) to call other users and Asterisk services. Currently, ilanga runs the latest release version of OpenGK, III. SERVICE DEVELOPMENT IN ILANGA: PREPAID BILLING Most conventional PBXs support some form of billing. Asterisk has no built-in support for any billing so we decided to write our own. We opted for the prepaid variant of billing, which is nowadays very common. To write a good prepaid billing system, we needed to address the following: decide where the service would be located in the ilanga architecture decide on the best way to integrate the service into the chosen ilanga component source accurate tariffs from our telephony service provider, Telkom

4 As Asterisk is the central component of ilanga that acts as a gateway to the PSTN, it is the ideal component in which to implement a prepaid billing service for ilanga. We sourced accurate call cost management information from Telkom s website [6]. This information is available in the form of three comma separated values (csv) files and we were able to populate a database with the information easily. Developers can create new services in Asterisk using either of the following two methods: the Asterisk Gateway Interface (AGI) a C API The AGI is analogous to CGI for web developers. Similarly AGI scripts can be written in any programming language, like Perl, PHP, C, etc and executed as external processes. They represent the easiest and most flexible way to extend Asterisk's capabilities. AGI scripts are executed according to the dial plan and communicate with Asterisk via Linux standard input and standard output pipes. As an example, we used an AGI script to provide an automated exam result reading service at the end of the 2003 academic year at Rhodes University. This service enabled students to call ilanga and have their exam results read to them. When a student dialed the MarkReader service from their telephone, they were routed to the MarkReader AGI script. The AGI script, which is written in Perl, prompts the student to authenticate using a student number and password using telephone touch tones (DTMF). Once authenticated, the script connects to the student database, retrieves the results for the authenticated student, synthesizes the results into an audio format, and delivers it to the student. Once the interrupt is triggered Asterisk clears the call. Telkom provides a demo application that can be used to calculate the cost of any call based on the time, the source and the destination number. The prepaid billing application in ilanga calculates call costs that correspond to the values returned by the Telkom demo application, to the cent. IV. ILANGA CUSTOMISATION AND ENHANCEMENT ilanga can be customised easily. The dial plans for OpenGK, SER and Asterisk are defined in text files making them accessible to be edited easily in standard text editors or via customised front-ends. The dial plans are also well designed, offering an intuitive means of defining dial plan logic. User information is stored in a MySQL database and can be managed directly on the ilanga box or remotely via a simple CGI-based web interface. The Asterisk manager interface can also be used to customise ilanga and to build innovative user interfaces. Using the manager interface it is possible to control ilanga s operation as well as retrieve important operating information. The Asterisk manager interface is a client-server interface that operates over TCP, enabling Asterisk to be managed and monitored remotely. For example, figure 4 illustrates an example of a flash-based web interface used for remote monitoring of registered ilanga users, and their status as well as the status of TDM lines. This interface is called Operator Panel and was written by Nicolás Gudiño [7]. AGI scripts have limited control over Asterisk s operation. In cases where a service requires more control than is possible with AGI scripts the C API must be used. A major requirement of a prepaid billing system is to ensure that a call to the PSTN be terminated when the user runs out of credit. Such functionality is not possible through the use of AGI so we developed the prepaid billing system using the Asterisk C API. The Asterisk C API is clearly defined and easy to use. One of the design goals of the service was to minimise the load the application would place on the Asterisk server: we didn t want the billing system to continuously monitor the call and keep a running total of the call cost. Instead, we programmed the system to calculate the maximum time a user could phone a particular destination based on: the tariff rate for the called destination at the particular time the user s available prepaid credit Naturally, this method is possible only via the use of software interrupts, which signal the condition of zero prepaid balance. Figure 4: Remote monitoring of ilanga Another application that illustrates the functionality of the Asterisk manager interface is the Omniis Asterisk Telephony Application API (TAPI) driver [8]. This Asterisk TAPI driver is a TAPI Service Provider for Asterisk that acts as a gateway between windows applications, like Outlook, and the

5 Asterisk manager interface. It can perform call origination, providing Outlook with a click-to-dial interface from its contacts window. As mentioned earlier, the Asterisk manager interface can also be used to collect data. For example, in a call centre, statistics can be obtained for the average call load, the productivity of the agents, the average time taken to answer a new call, etc. V. NEXT GENERATION SERVICES The convergence of telephony and data networks provided by ilanga opens the door to new services, until now difficult in conventional telecommunication networks. ilanga makes it possible to create new services that leverage the integration of conventional telephony services with existing data services. For example, the reception of a new voic message for an ilanga user triggers ilanga to deliver an to the appropriate user s address with the voic attached as an audio file. A more complex service written at Rhodes University enables ilanga users to dial a service number, authenticate themselves and have their s read to them using text-to-speech synthesis. Another service allows ilanga users to register VIP addresses via a web interface. When an arrives from any of the registered VIP contacts, ilanga is triggered to call and notify the user of the s presence. The user is also able to instruct ilanga to read the message. VI. ILANGA FIELD TEST ilanga is currently deployed experimentally in the Rhodes University computer science department (figure 5) and is available to staff and post graduate students. Packet Network CS LAN H.323 IAX SIP The deployed system runs on a single 2.4GHz computer with 1GB of RAM. A 100Mbit Ethernet interface provides access to the department s data network. Four ISDN cards provide access to the TDM network via ISDN lines (1 card connects to the PSTN and three cards connect to the existing Rhodes University legacy PBX). Two 4-port FXS analogue cards provide 8 interfaces for analogue telephones, which are available around the building for public use. The field test users each have an account that allows them to access the ilanga system from any VoIP (SIP, H.323 or IAX) client. A number of VoIP clients exist that allow users to use ilanga from their computers, pocket PCs or any specialised VoIP telephone. Users can also use any of the eight publicly available analogue telephones. Because the analogue telephones are open to the public, users must authenticate themselves using touch tones when accessing any protected resources (e.g. the connection to the PSTN). Users have voic boxes that they can customise to suit their needs i.e. record their busy and unavailable messages, create and configure their message folders, etc. Our initial goal for the pilot deployment of ilanga was to provide the post-graduate students of the department with telecommunications services. Currently, ilanga provides each student with an extension number and a prepaid billing account that they can use to make and receive calls from their desktop computers to the existing Rhodes University PBX, or Telkom s public network. CONCLUSION We have successfully integrated essential components of VoIP networks with Asterisk to create a next generation VoIP-based, TDM-enabled PBX. The result is a stable, cost effective and feature rich communication product. REFERENCES [1] Asterisk, OpenGK SER [2] SIP Express Router, [3] OpenH323 Gatekeeper, Voice Telephones on PSTN Voice Telephones on PBX 1 ISDN line Ethernet 3 ISDN lines ilanga Box 8 analog FXS lines Figure 5: ilanga field test deployment [4] J. Penton, A. Terzoli, Asterisk: A Converged TDM and Packet-based Communications System, South African Telecommunications Networks and Applications Conference, September 2003, Fancourt [5] M. Spencer, F.W. Miller, IAX Protocol Description, March 2004, Available online at [6] Telkom S.A Ltd., Call Cost Management Information for PABX s, Available online at

6 [7] N. Gudiño, Asterisk Flash Operator Panel, Available online at [8] Omniis, The Omniis Asterisk TAPI Driver, Available online at [9] F. Orthman, 2002, Softswitch Architecture for VoIP, McGraw-Hill Professional Jason B. Penton is a Telkom S.A employee who is currently reading for his Doctoral Degree in Computer Science at Rhodes University. He is working in the area of VoIP focusing on SIP, H.323 and next generation softswitches.

ACD: Average Call Duration is the average duration of the calls routed bya a VoIP provider. It is a quality parameter given by the VoIP providers.

ACD: Average Call Duration is the average duration of the calls routed bya a VoIP provider. It is a quality parameter given by the VoIP providers. ACD: Average Call Duration is the average duration of the calls routed bya a VoIP provider. It is a quality parameter given by the VoIP providers. API: An application programming interface (API) is a source

More information

VoIP System Using Open Source Software Component in Tertiary Institutions: The Case of the University of Namibia

VoIP System Using Open Source Software Component in Tertiary Institutions: The Case of the University of Namibia VoIP System Using Open Source Software Component in Tertiary Institutions: The Case of the University of Namibia Gardner Mwansa Polytechnic of Namibia Abstract Governments and their agencies are often

More information

Using Asterisk with Odin s OTX Boards

Using Asterisk with Odin s OTX Boards Using Asterisk with Odin s OTX Boards Table of Contents: Abstract...1 Overview...1 Features...2 Conclusion...5 About Odin TeleSystems Inc...5 HeadQuarters:...6 Abstract Odin TeleSystems supports corporate

More information

Integrate VoIP with your existing network

Integrate VoIP with your existing network Integrate VoIP with your existing network As organisations increasingly recognise and require the benefits voice over Internet Protocol (VoIP) offers, they stop asking "Why?" and start asking "How?". A

More information

Voice over IP Basics for IT Technicians

Voice over IP Basics for IT Technicians Voice over IP Basics for IT Technicians White Paper Executive summary The IP phone is coming or has arrived on desk near you. The IP phone is not a PC, but does have a number of hardware and software elements

More information

Internet Telephony Terminology

Internet Telephony Terminology Internet Telephony Terminology Understanding the business phone system world can be a daunting task to a lay person who just wants a system that serves his or her business needs. The purpose of this paper

More information

RT Series IP PBX Products Introduction. All in one telephone system

RT Series IP PBX Products Introduction. All in one telephone system RT Series IP PBX Products Introduction All in one telephone system RT4 Series RT10 Series RT80 Series RT200 Series Real Tone Technologies Co.,Ltd 7014AB, Tianxia IC Industrial Park,Yiyuan Road Shenzhen

More information

IP PBX. SD Card Slot. FXO Ports. PBX WAN port. FXO Ports LED, RED means online

IP PBX. SD Card Slot. FXO Ports. PBX WAN port. FXO Ports LED, RED means online 1 IP PBX SD Card Slot FXO Ports PBX LAN port PBX WAN port FXO Ports LED, RED means online 2 Connect the IP PBX to Your LAN Internet PSTN Router Ethernet Switch FXO Ports 3 Access the PBX s WEB GUI The

More information

Asterisk: A Non-Technical Overview

Asterisk: A Non-Technical Overview Asterisk: A Non-Technical Overview Nasser K. Manesh nasser@millenigence.com Millenigence, Inc. 5000 Birch St., Suite 8100 Newport Beach, CA 92660 June 2004, Revised December 2004 Executive Summary Asterisk

More information

Crash Course in Asterisk

Crash Course in Asterisk Crash Course in Asterisk Despite its name, Asterisk is no mere footnote to the IP-PBX market. The open source product is one of the most disruptive technologies in the industry. Here s what you need to

More information

Re-establishing and improving the experimental VoIP link with the University of Namibia: A Case Study

Re-establishing and improving the experimental VoIP link with the University of Namibia: A Case Study Re-establishing and improving the experimental VoIP link with the University of Namibia: A Case Study R. M. Ngandu, A. Terzoli & M. Tsietsi Department of Computer Science, Rhodes University September,

More information

Overview ENUM ENUM. VoIP Introduction (2/2) VoIP Introduction (1/2)

Overview ENUM ENUM. VoIP Introduction (2/2) VoIP Introduction (1/2) Overview Voice-over over-ip (VoIP) ENUM VoIP Introduction Basic PSTN Concepts and SS7 Old Private Telephony Solutions Internet Telephony and Services VoIP-PSTN Interoperability IP PBX Network Convergence

More information

Voice over IP (VoIP) Basics for IT Technicians

Voice over IP (VoIP) Basics for IT Technicians Voice over IP (VoIP) Basics for IT Technicians VoIP brings a new environment to the network technician that requires expanded knowledge and tools to deploy and troubleshoot IP phones. This paper provides

More information

IP Implementation in Private Branch Exchanges From 9:30 a.m until 4:30 p.m (7 hrs./day) 5 days / week

IP Implementation in Private Branch Exchanges From 9:30 a.m until 4:30 p.m (7 hrs./day) 5 days / week Course Title: No. of Hours: IP Implementation in Private Branch Exchanges From 9:30 a.m until 4:30 p.m (7 hrs./day) 5 days / week 1 Course Duration: 3 Months (12weeks) No. Of Hours: 7 Hrs./Day- 5 days/week.

More information

Integrating Voice over IP services in IPv4 and IPv6 networks

Integrating Voice over IP services in IPv4 and IPv6 networks ARTICLE Integrating Voice over IP services in IPv4 and IPv6 networks Lambros Lambrinos Dept.of Communication and Internet studies Cyprus University of Technology Limassol 3603, Cyprus lambros.lambrinos@cut.ac.cy

More information

Troubleshooting Voice Over IP with WireShark

Troubleshooting Voice Over IP with WireShark Hands-On Course Description Voice over IP is being widely implemented both within companies and across the Internet. The key problems with IP voice services are maintaining the quality of the voice service

More information

Softswitch & Asterisk Billing System

Softswitch & Asterisk Billing System Softswitch & Asterisk Billing System IP Telephony Process and architecture is known as Softswitch. Softswitch is used to bridge traditional PSTN and VoIP by linking PSTN to IP networks and managing traffic

More information

Gateways and Their Roles

Gateways and Their Roles Gateways and Their Roles Understanding Gateways This topic describes the role of voice gateways and their application when connecting VoIP to traditional PSTN and telephony equipment. Analog vs. Digital

More information

Management Summary for Unified Communications IP PBX

Management Summary for Unified Communications IP PBX Management Summary for Unified Communications IP PBX Prepared By for YOU of General: The Unified Communication Internet Protocol Private Branch Exchange (UCIPPBX) is a fully realised 3 rd generation office

More information

Operation Manual Voice Overview (Voice Volume) Table of Contents

Operation Manual Voice Overview (Voice Volume) Table of Contents Operation Manual Voice Over (Voice Volume) Table of Contents Table of Contents Chapter 1 Voice Over... 1-1 1.1 Introduction to VoIP... 1-1 1.1.1 VoIP System... 1-1 1.1.2 Basic VoIP Call Flow... 1-2 1.1.3

More information

VoIP Solutions Guide Everything You Need to Know

VoIP Solutions Guide Everything You Need to Know VoIP Solutions Guide Everything You Need to Know Simplify, Save, Scale VoIP: The Next Generation Phone Service Ready to Adopt VoIP? 10 Things You Need to Know 1. What are my phone system options? Simplify,

More information

Mediatrix 3000 with Asterisk June 22, 2011

Mediatrix 3000 with Asterisk June 22, 2011 Mediatrix 3000 with Asterisk June 22, 2011 Proprietary 2011 Media5 Corporation Table of Contents Introduction... 3 Network Topology... 3 Equipment Detail... 3 Configuration of the Fax Extension... 4 Configuration

More information

Contents Introduction Why Fax over IP? How Real-time Fax over IP works Implementation with MessagePlus/Open Summary. About this document

Contents Introduction Why Fax over IP? How Real-time Fax over IP works Implementation with MessagePlus/Open Summary. About this document Fax over IP Contents Introduction Why Fax over IP? How Real-time Fax over IP works Implementation with MessagePlus/Open Summary About this document This document describes how Fax over IP works in general

More information

Chapter 1 - Introduction

Chapter 1 - Introduction Chapter 1 - Introduction Asterisk is revolutionary, reliable, scalable, open source, free software that makes possible powerful enterprise telephone systems. Asterisk systems are in use world-wide, reliably

More information

Advances in Japan Office Telephony

Advances in Japan Office Telephony Advances in Japan Office Telephony THE BLACK SHIPS ARRIVE Your Presenter Louis Leclerc Managing Director Denphone K.K. louis.leclerc@denphone.com Tel: 03-5545-4638 Conventional Office PBX Connect to NTT

More information

2- Technical Training (9 weeks) 3- Applied Project (3 weeks) 4- On Job Training (OJT) (4 weeks)

2- Technical Training (9 weeks) 3- Applied Project (3 weeks) 4- On Job Training (OJT) (4 weeks) Course Title: Prerequisites: Training Program (5 months) IP Implementation in Private Branch Exchanges Must fresh graduates Communication/Electronics Engineers" 1- Soft Skills Training (4 weeks) 1. Communication

More information

Introduction to VOIP. Stephen Okay Abdus Salam Int l Center for Theoretical Physics Trieste, Italy, February 21, 2007

Introduction to VOIP. Stephen Okay Abdus Salam Int l Center for Theoretical Physics Trieste, Italy, February 21, 2007 Introduction to VOIP Stephen Okay Abdus Salam Int l Center for Theoretical Physics Trieste, Italy, February 21, 2007 Intro to VOIP Classic Telephony Data Networks(Review) VOIP What it is Protocols Hardware

More information

SIP and H.323. SIP call flow example

SIP and H.323. SIP call flow example SIP and H.323 H.323 Defined by ITU in 1996 International Telecommunication Union Uses many technologies from PSTN A suite of different protocols incl. voice/video SIP Session Initiation Protocol Defined

More information

LessWires Advanced IP Soft-PBX System

LessWires Advanced IP Soft-PBX System LessWires Advanced IP Soft-PBX System Our IP soft-pbx is a complete communications platform. In addition to having PBX functionality, the system is a soft-switch, a protocol gateway, a media server, and

More information

Contents. Specialty Answering Service. All rights reserved.

Contents. Specialty Answering Service. All rights reserved. Contents 1 Introduction... 2 2 PBX... 3 3 IP PBX... 4 3.1 How It Works... 4 3.2 Functions of IP PBX... 5 3.3 Benefits of IP PBX... 5 4 Evolution of IP PBX... 6 4.1 Fuelling Factors... 6 4.1.1 Demands from

More information

Integrating VoIP Phones and IP PBX s with VidyoGateway

Integrating VoIP Phones and IP PBX s with VidyoGateway Integrating VoIP Phones and IP PBX s with VidyoGateway Updated February 2011 INDEX: I. ABSTRACT.1 II. III. IV. VIDYOGATEWAY OVERVIEW.. 1 NETWORK TOPOLOGIES AND DEFINITIONS...2 CONNECTING TO VIDYOCONFERENCES

More information

4. H.323 Components. VOIP, Version 1.6e T.O.P. BusinessInteractive GmbH Page 1 of 19

4. H.323 Components. VOIP, Version 1.6e T.O.P. BusinessInteractive GmbH Page 1 of 19 4. H.323 Components VOIP, Version 1.6e T.O.P. BusinessInteractive GmbH Page 1 of 19 4.1 H.323 Terminals (1/2)...3 4.1 H.323 Terminals (2/2)...4 4.1.1 The software IP phone (1/2)...5 4.1.1 The software

More information

Main characteristics. System

Main characteristics. System VoipSwitch is a software platform allowing for rapid VoIP services roll-out. It contains all necessary elements required in successful implementation of various VoIP services. Our customers can make money

More information

and Voice Applications Eyal Wirsansky, Verso Technologies JaxJUG

and Voice Applications Eyal Wirsansky, Verso Technologies JaxJUG Voice Over IP, and Voice Applications Eyal Wirsansky, Verso Technologies JaxJUG Analog Telephony Mr. W AG Bell X What the *!@# is aa Switch?? Moving to Digital Voice (TDM) Separation of Voice and Signaling

More information

Configuration of Applied VoIP Sip Trunks with the Toshiba CIX40, 100, 200 and 670

Configuration of Applied VoIP Sip Trunks with the Toshiba CIX40, 100, 200 and 670 Configuration of Applied VoIP Sip Trunks with the Toshiba CIX40, 100, 200 and 670 Businesses Save Money with Toshiba s New SIP Trunking Feature Unlike gateway based solutions, Toshiba s MIPU/ GIPU8 card

More information

Need for Signaling and Call Control

Need for Signaling and Call Control Need for Signaling and Call Control VoIP Signaling In a traditional voice network, call establishment, progress, and termination are managed by interpreting and propagating signals. Transporting voice

More information

Overview of Asterisk (*) Jeff Gunther

Overview of Asterisk (*) Jeff Gunther Overview of Asterisk (*) Jeff Gunther Agenda Background Introduction to Asterisk and review the core components of it s architecture. Exploration of Asterisk s telephony and call features. Review some

More information

Com.X1 the Complete Telephony Solution in a Box

Com.X1 the Complete Telephony Solution in a Box Com.X1 is both a flexible and feature-rich Hybrid-PBX and IP-Gateway solution in a single 1U box. Com.X1 provides a scalable and powerfull telephony solution for small to medium installations. Features

More information

Network Connection Considerations for Microsoft Response Point 1.0 Service Pack 2

Network Connection Considerations for Microsoft Response Point 1.0 Service Pack 2 Network Connection Considerations for Microsoft Response Point 1.0 Service Pack 2 Updated: February 2009 Microsoft Response Point is a small-business phone solution that is designed to be easy to use and

More information

Packetized Telephony Networks

Packetized Telephony Networks Packetized Telephony Networks Benefits of Packet Telephony Networks Traditionally, the potential savings on long-distance costs was the driving force behind the migration to converged voice and data networks.

More information

Open Source Telephony Projects as an Application Development Platform. Frederic Dickey (fdickey@sangoma.com) Director Product Management

Open Source Telephony Projects as an Application Development Platform. Frederic Dickey (fdickey@sangoma.com) Director Product Management Open Source Telephony Projects as an Application Development Platform Frederic Dickey (fdickey@sangoma.com) Director Product Management About this presentation For newcomers to Asterisk For long time CTI

More information

Peer-to-Peer SIP Mode with FXS and FXO Gateways

Peer-to-Peer SIP Mode with FXS and FXO Gateways Peer-to-Peer SIP Mode with FXS and FXO Gateways New Rock s SIP based VoIP gateways with FXS and FXO ports support peer-to-peer mode which has many applications in deploying enterprise multi-site telephone

More information

Technical Configuration Notes

Technical Configuration Notes MITEL SIP CoE Technical Configuration Notes Configure MCD for use with OpenIP SIP Trunking service SIP CoE 11-4940-00186 NOTICE The information contained in this document is believed to be accurate in

More information

Com.X2 Intelligent Branch Exchange

Com.X2 Intelligent Branch Exchange Com.X2 provides a flexible and feature-rich Hybrid-PBX and IP-Gateway solution. Com.X2 provides a scalable and powerful telephony solution for the Enterprise user. Features 4U wall-mount unit Seamless

More information

An Introduction to VoIP Protocols

An Introduction to VoIP Protocols An Introduction to VoIP Protocols www.netqos.com Voice over IP (VoIP) offers the vision of a converged network carrying multiple types of traffic (voice, video, and data, to name a few). To carry out this

More information

VOICE SOLUTIONS NGN. Telephone-Handbook NEXT GENERATION NETWORK. UAN: (051) 111 11 44 44 www.nayatel.com /Nayatel

VOICE SOLUTIONS NGN. Telephone-Handbook NEXT GENERATION NETWORK. UAN: (051) 111 11 44 44 www.nayatel.com /Nayatel VOICE SOLUTIONS NGN Telephone-Handbook NEXT GENERATION NETWORK UAN: (051) 111 11 44 44 www.nayatel.com / Table of Contents Sr.No Contents Page No. 1. Introduction 1 2. Hosted Exchange Solution 2-9 2a.

More information

Cisco CME Features and Functionality

Cisco CME Features and Functionality Cisco CME Features and Functionality Supported Protocols and Integration Options This topic describes the supported protocols and integration options of Cisco CME. Supported Protocols and Integration FAX

More information

Software-Powered VoIP

Software-Powered VoIP Software-Powered VoIP Ali Rohani Anthony Murphy Scott Stubberfield Unified Communications Architecture Core Scenarios UC endpoints QOE Monitoring Archiving CDR AOL Public IM Clouds Yahoo Remote Users MSN

More information

Configuration Notes 283

Configuration Notes 283 Mediatrix 4400 Digital Gateway VoIP Trunking with a Legacy PBX June 21, 2011 Proprietary 2011 Media5 Corporation Table of Contents Table of Contents... 2 Introduction... 3 Mediatrix 4400 Digital Gateway

More information

IP Telephony Deployment Models

IP Telephony Deployment Models CHAPTER 2 Sections in this chapter address the following topics: Single Site, page 2-1 Multisite Implementation with Distributed Call Processing, page 2-3 Design Considerations for Section 508 Conformance,

More information

Fig. Setting up of a VoIP call. Fig. Experimental setup

Fig. Setting up of a VoIP call. Fig. Experimental setup Volume 5, Issue 6, June 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Asterisk VoIP Private

More information

Cisco Small Business Unified Communications 300 Series

Cisco Small Business Unified Communications 300 Series Cisco Small Business Unified Communications 300 Series Feature Reference Guide January 2011 Introduction The Cisco Small Business Unified Communications 300 Series is a cost-effective, fully featured unified

More information

Asterisk Fast Start. The Asterisk Fast Start course is a three-day course. The class will consist of a combination of lectures and lab exercises.

Asterisk Fast Start. The Asterisk Fast Start course is a three-day course. The class will consist of a combination of lectures and lab exercises. Asterisk Fast Start Get up to speed quickly on Asterisk technology. Course Objectives The goal of this course is to familiarize students with Asterisk and the environment in which it operates, both in

More information

Leveraging Asterisk to Deliver Large Scale VoIP Services in a Carrier Environment. JR Richardson

Leveraging Asterisk to Deliver Large Scale VoIP Services in a Carrier Environment. JR Richardson Leveraging Asterisk to Deliver Large Scale VoIP Services in a Carrier Environment JR Richardson Early VoIP Environment Telecom Act of 1996, mass competition, Telco's needed value add features and capabilities,

More information

CVOICE Exam Topics Cisco Voice over IP Exam #642-432 7/14/2005

CVOICE Exam Topics Cisco Voice over IP Exam #642-432 7/14/2005 CVOICE Exam Topics Cisco Voice over IP Exam #642-432 7/14/2005 From the Cisco CVOICE 642-432 Exam Topics Voice over IP Technologies Describe the similarities and differences between PSTN and VoIP including

More information

Direct IP Calls. Quick IP Call Mode

Direct IP Calls. Quick IP Call Mode Unicorn3112 Tips Direct IP Calls...1 Quick IP Call Mode...1 PSTN Pass Through...2 VoIP-to-PSTN Calls...2 PSTN-to-VoIP Calls...3 Route Calls to PSTN...4 Forward Calls to PSTN...4 Forward Calls to VoIP...4

More information

IP- PBX. Functionality Options

IP- PBX. Functionality Options IP- PBX Functionality Options With the powerful features integrated in the AtomOS system from AtomAmpd, installing & configuring a cost- effective and extensible VoIP solution is easily possible. 4/26/10

More information

Curso de Telefonía IP para el MTC. Sesión 1 Introducción. Mg. Antonio Ocampo Zúñiga

Curso de Telefonía IP para el MTC. Sesión 1 Introducción. Mg. Antonio Ocampo Zúñiga Curso de Telefonía IP para el MTC Sesión 1 Introducción Mg. Antonio Ocampo Zúñiga Conceptos Generales VoIP Essentials Family of technologies Carries voice calls over an IP network VoIP services convert

More information

IP-PBX for Small to Large Enterprises

IP-PBX for Small to Large Enterprises IP-PBX for Small to Large Enterprises WHITE PAPER May 2011 Contents Executive Summary Pg.1 IP Telephony An Overview Pg. 2 Matrix IP-PBX solution for Small to Large Enterprises Pg. 4 Benefits of IP-Telephony

More information

TDS Series. Enterprise Class Hybrid IP Communication System. A High Performance Communication System for Midsize to Large Enterprises 40 TO1280 PORTS

TDS Series. Enterprise Class Hybrid IP Communication System. A High Performance Communication System for Midsize to Large Enterprises 40 TO1280 PORTS TDS Series Enterprise Class Hybrid IP Communication System A High Performance Communication System for Midsize to Large Enterprises 40 TO1280 PORTS TDS Series Enterprise Class Communication System Support

More information

Implementing Cisco IOS Telephony and Unified Communications Express (IITUCX)

Implementing Cisco IOS Telephony and Unified Communications Express (IITUCX) Implementing Cisco IOS Telephony and Unified Communications Express (IITUCX) Course Objectives Explain the benefits and components of a Cisco Unified Communications system Describe how traditional telephony

More information

52-30-15 DATA COMMUNICATIONS MANAGEMENT. Larry Schessel INSIDE

52-30-15 DATA COMMUNICATIONS MANAGEMENT. Larry Schessel INSIDE 52-30-15 DATA COMMUNICATIONS MANAGEMENT VOICE AND DATA NETWORK INTEGRATION Larry Schessel INSIDE Voice and Data Networks; Voice Over Internet Protocol; VoIP Products; Voice and Data Network Integration;

More information

IP Office - Voice Communications Capabilities

IP Office - Voice Communications Capabilities IP Office - Voice Communications Capabilities IP Office offers full voice functionality with a comprehensive list of features and benefits for the small and mid-sized business and branch office, including:

More information

Introduction to VoIP Technology

Introduction to VoIP Technology Lesson 1 Abstract Introduction to VoIP Technology 2012. 01. 06. This first lesson of contains the basic knowledge about the terms and processes concerning the Voice over IP technology. The main goal of

More information

Any to Any Connectivity Transparent Deployment Site Survivability

Any to Any Connectivity Transparent Deployment Site Survivability Any to Any Connectivity Transparent Deployment Site Survivability The Performance You Want. The Installation Simplicity You Expect. Quintumʼs innovative solutions are The Perfect Fit for Enterprise& Service

More information

VoIP and IP Telephony @ IT Tralee

VoIP and IP Telephony @ IT Tralee VoIP and IP Telephony @ IT Tralee chris.bradshaw@staff.ittralee.ie Presentation outline: Basic overview of IP telephony and technology Detailed overview of VoIP @ IT Tralee deployment How IPT has benefited

More information

Written Testimony of John L. Barnes Director of Product Development Verizon Business. Hearing on VoIP: Who Has Jurisdiction to Tax It?

Written Testimony of John L. Barnes Director of Product Development Verizon Business. Hearing on VoIP: Who Has Jurisdiction to Tax It? Written Testimony of John L. Barnes Director of Product Development Verizon Business Hearing on VoIP: Who Has Jurisdiction to Tax It? House Committee on the Judiciary Subcommittee on Commercial and Administrative

More information

Combining Voice over IP with Policy-Based Quality of Service

Combining Voice over IP with Policy-Based Quality of Service TechBrief Extreme Networks Introduction Combining Voice over IP with Policy-Based Quality of Service Businesses have traditionally maintained separate voice and data networks. A key reason for this is

More information

Building Voice VPN with Simton IPX

Building Voice VPN with Simton IPX Building Voice VPN with Simton IPX (Simton Technologies, Inc.) Version 6 With Simton IPX, the small and medium businesses can easily consolidate data and voice network together to increase productivity,

More information

ZyXEL V100 Support Notes. ZyXEL V100. (V100 Softphone 1 Runtime License) Support Notes

ZyXEL V100 Support Notes. ZyXEL V100. (V100 Softphone 1 Runtime License) Support Notes ZyXEL V100 (V100 Softphone 1 Runtime License) Support Notes Version 1.00 April 2009 1 Contents Overview 1. Overview of V100 Softphone...3 2. Setting up the V100 Softphone.....4 3. V100 Basic Phone Usage.....7

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

To ensure you successfully install Timico VoIP for Business you must follow the steps in sequence:

To ensure you successfully install Timico VoIP for Business you must follow the steps in sequence: To ensure you successfully install Timico VoIP for Business you must follow the steps in sequence: Firewall Settings - you may need to check with your technical department Step 1 Install Hardware Step

More information

Hands on VoIP. Content. Tel +44 (0) 845 057 0176 enquiries@protelsolutions.co.uk. Introduction

Hands on VoIP. Content. Tel +44 (0) 845 057 0176 enquiries@protelsolutions.co.uk. Introduction Introduction This 4-day course offers a practical introduction to 'hands on' VoIP engineering. Voice over IP promises to reduce your telephony costs and provides unique opportunities for integrating voice

More information

BLACK BOX. The Changing Communications Market. PBX Systems for Voice over IP (VoIP)

BLACK BOX. The Changing Communications Market. PBX Systems for Voice over IP (VoIP) The Changing Communications Market BLACK BOX Learn how this new technology is in reach for small and medium businesses (SMBs). Hybrid PBX VoIP Gateways Box IP Phones Headsets 724-746-5500 blackbox.com

More information

B rismark. Open Source IP PBX The Future of Telephony. T: +92.21.111199299 W: www.birsmark.com

B rismark. Open Source IP PBX The Future of Telephony. T: +92.21.111199299 W: www.birsmark.com Open Source IP PBX The Future of Telephony What is Asterisk Asterisk is the world s leading open source telephony engine and tool kit. Offering flexibility unheard of in the world of proprietary communications,

More information

Configuration Notes 290

Configuration Notes 290 Configuring Mediatrix 41xx FXS Gateway with the Asterisk IP PBX System June 22, 2011 Proprietary 2011 Media5 Corporation Table of Contents Introduction... 3 About Mediatrix 41xx Series FXS Gateways...

More information

159.334 Computer Networks. Voice over IP (VoIP) Professor Richard Harris School of Engineering and Advanced Technology (SEAT)

159.334 Computer Networks. Voice over IP (VoIP) Professor Richard Harris School of Engineering and Advanced Technology (SEAT) Voice over IP (VoIP) Professor Richard Harris School of Engineering and Advanced Technology (SEAT) Presentation Outline Basic IP phone set up The SIP protocol Computer Networks - 1/2 Learning Objectives

More information

Implementing Cisco IOS Telephony and Unified Communications Express (IITUCX)

Implementing Cisco IOS Telephony and Unified Communications Express (IITUCX) Implementing Cisco IOS Telephony and Unified Communications Express (IITUCX) Who should attend The primary audience for this course is as follows: Network administrators Network engineers Systems engineers

More information

How To Set Up An Ip Trunk For A Business

How To Set Up An Ip Trunk For A Business Charter Business : White paper SIP Trunking: A new voice in communications service WHITE PAPER With the rise of next-generation technology, business customers have more options than ever from providers

More information

With 360 Cloud VoIP, your company will benefit from more advanced features:

With 360 Cloud VoIP, your company will benefit from more advanced features: Voice over IP (VoIP) has emerged as the new leader in cost-effective standards based communications. 360 Cloud VoIP enables customers have the benefits of an Enterprise PBX for a fraction of the cost of

More information

The MOST Affordable HD Video Conferencing. Conferencing for Enterprises, Conferencing for SMBs

The MOST Affordable HD Video Conferencing. Conferencing for Enterprises, Conferencing for SMBs The MOST Affordable HD Video Conferencing Video conferencing has become an increasingly popular service, being widely used by enterprises, organizations and individuals. Thanks to the enormous growth in

More information

Indepth Voice over IP and SIP Networking Course

Indepth Voice over IP and SIP Networking Course Introduction SIP is fast becoming the Voice over IP protocol of choice. During this 3-day course delegates will examine SIP technology and architecture and learn how a functioning VoIP service can be established.

More information

ehealth and VoIP Overview

ehealth and VoIP Overview ehealth and VoIP Overview Voice over IP (VoIP) configurations can be very complex. Your network could contain a variety of devices, applications, and configuration capabilities to support voice traffic.

More information

Selecting the Right SIP Phone for Your IP PBX By Gary Audin May 5, 2014

Selecting the Right SIP Phone for Your IP PBX By Gary Audin May 5, 2014 Selecting the Right SIP Phone for Your IP PBX By Gary Audin May 5, 2014 There are many Session Initiation Protocol (SIP) phones on the market manufactured by IP PBX vendors and third parties. Selecting

More information

Voice Rate Plans. A Call Path + Inbound Phone Number combination is commonly referred to as a Phone Line.

Voice Rate Plans. A Call Path + Inbound Phone Number combination is commonly referred to as a Phone Line. Voice Rate Plans Hosted Telephone Communication Services Call Path (phone line) - $40/month A Call Path allows a single inbound or outbound phone conversation with the outside world to take place. You

More information

Lync Express The Evolution of UC Frederic Dickey Director of Professional Services July 9, 2013

Lync Express The Evolution of UC Frederic Dickey Director of Professional Services July 9, 2013 Lync Express The Evolution of UC Frederic Dickey Director of Professional Services July 9, 2013 Live from WPC 2013! 2 Inside this Deck Unified Communications Defined Lync 2013 Demystified Lync Express

More information

8 Port Modular IP PBX Solution 8 Port IP PBX + SIP Gateway System IPG-80XG

8 Port Modular IP PBX Solution 8 Port IP PBX + SIP Gateway System IPG-80XG 8 Port IP Modular PBX + SIP PBX Gateway Solution System The IPG-80XG SIP IPPBX is a feature rich IP PBX offering PBX services and VoIP Telephony Management in one device. It can support a telephone network

More information

CVOICE - Cisco Voice Over IP

CVOICE - Cisco Voice Over IP CVOICE - Cisco Voice Over IP Table of Contents Introduction Audience At Course Completion Prerequisites Applicable Products Program Contents Course Outline Introduction This five-day course covers the

More information

ICTTEN5168A Design and implement an enterprise voice over internet protocol and a unified communications network

ICTTEN5168A Design and implement an enterprise voice over internet protocol and a unified communications network ICTTEN5168A Design and implement an enterprise voice over internet protocol and a unified communications network Release: 1 ICTTEN5168A Design and implement an enterprise voice over internet protocol and

More information

Understanding IP Faxing (Fax over IP)

Understanding IP Faxing (Fax over IP) Understanding IP Faxing (Fax over IP) A detailed technical overview of how VoIP technology and IP Faxing (Fax over IP) are changing the way organizations utilize existing network infrastructures for voice

More information

Whitepaper: Microsoft Office Communications Server 2007 R2 and Cisco Unified Communications Manager Integration Options

Whitepaper: Microsoft Office Communications Server 2007 R2 and Cisco Unified Communications Manager Integration Options Whitepaper: Microsoft Office Communications Server 2007 R2 and Cisco Unified Communications Manager Integration Options Document Summary This document provides information on several integration scenarios

More information

Literature Review. Re-establishing and improving the experimental VoIP link with the University of Namibia: A Case Study

Literature Review. Re-establishing and improving the experimental VoIP link with the University of Namibia: A Case Study Literature Review Ricky M. Ngandu g07n1084@campus.ru.ac.za Department of Computer Science, Rhodes University Supervisors: Alfredo Terzoli and Mosiuoa Tsietsi Re-establishing and improving the experimental

More information

Multimedia Service Platform

Multimedia Service Platform Multimedia Service Platform Turnkey solution for SIP based communications Adrian Georgescu AG Projects http://ag-projects.com Current telecommunications landscape From the old PSTN only the E.164 numbering

More information

Understanding Voice over IP

Understanding Voice over IP Introduction Understanding Voice over IP For years, many different data networking protocols have existed, but now, data communications has firmly found its home in the form of IP, the Internet Protocol.

More information

640-460. IIUC Implementing Cisco IOS Unified Communications (IIUC) Version: Demo. Page <<1/9>>

640-460. IIUC Implementing Cisco IOS Unified Communications (IIUC) Version: Demo. Page <<1/9>> 640-460 IIUC Implementing Cisco IOS Unified Communications (IIUC) Version: Demo Page 1. You are CCNA VOICE associate in XXXX.com. You need configure a voice port that will allow the gateway to

More information

VoIP Glossary. Client (Softphone client): The software installed in the userâ s computer to make calls over the Internet.

VoIP Glossary. Client (Softphone client): The software installed in the userâ s computer to make calls over the Internet. VoIP Glossary Analog audio signals: Analog audio signals are used to transmit voice data over telephone lines. This is done by varying or modulating the frequency of sound waves to accurately reflect the

More information

NCS 416 Paul Brennan Mohammed Haque IAX2 Trunking

NCS 416 Paul Brennan Mohammed Haque IAX2 Trunking NCS 416 Paul Brennan Mohammed Haque IAX2 Trunking Abstract This project explores setting up a server to interface between the PSTN and multiple Asterisk PBX systems. The server interfaces with the PSTN

More information

Internet Telephony PBX System

Internet Telephony PBX System Telephony PBX System System Highlights 20 concurrent calls and up to 100 registers HD voice codec G.722 for perfect voice quality Fax to Email / Email to Fax for Green Office Voicemail to Email for not

More information

Integration of GSM Module with PC Mother Board (GSM Trunking) WHITE/Technical PAPER. Author: Srinivasa Rao Bommana (srinivasrao.bommana@wipro.

Integration of GSM Module with PC Mother Board (GSM Trunking) WHITE/Technical PAPER. Author: Srinivasa Rao Bommana (srinivasrao.bommana@wipro. (GSM Trunking) WHITE/Technical PAPER Author: Srinivasa Rao Bommana (srinivasrao.bommana@wipro.com) Table of Contents 1. ABSTRACT... 3 2. INTRODUCTION... 3 3. PROPOSED SYSTEM... 4 4. SOLUTION DESCRIPTION...

More information