How To Integrate A Cell Phone With A Pbx On A Network With A Cellphone From A Cell Tower On A Cell Network On A College Campus

Size: px
Start display at page:

Download "How To Integrate A Cell Phone With A Pbx On A Network With A Cellphone From A Cell Tower On A Cell Network On A College Campus"

Transcription

1 SUNGARD SUMMIT 2007 sungardsummit.com 1 Legacy and VoIP Phone Integration Presented by: Chris Peckham Sungard Higher Education at Mercy College March 20, 2007 A Community of Learning

2 Introduction Mercy College has six different campuses, each with its own campus telephone number. The current telephone system is a mix of legacy PBX systems and Cisco VoIP. There were a number of different auto-attendant prompts running across the various campus locations and callers would experience different prompts or program listings depending on what campus was called. Dial-by-name directories were not consistent across the two telephone systems. It is possible to successfully integrate legacy PBX systems with VoIP technology. Open source systems can be used to offer solutions that benefit telephony users. System integration can be performed for voice systems using LDAP/Active Directory to standardize configuration of dial plans and user directories. 2

3 Agenda Background Problems Our Solution What was implemented Issues Current and Future Plans Discussion / Questions 3

4 SUNGARD SUMMIT 2007 sungardsummit.com 4 Background What was running in the environment? A Community of Learning

5 Background Mercy College New York City metropolitan area Liberal arts undergraduate and master s programs 10, 000 students Five campus locations, online learning, and backend office location Established in 1950 by the Sisters of Mercy Became co-ed and nonsectarian in 1969 Outsourced Plus support to SCT (Sungard Higher Education) in 1998 and remaining IT staff in

6 Background - Telecommunications Avaya Definity PBX Four PBX systems supporting Dobbs Ferry, Yonkers, Yorktown, and White Plains campuses Flexpath and analog CO trunks T1 circuits from each campus back to DF Audix voic Cisco VoIP Three call manager systems supporting Bronx, Manhattan, Dobbs Ferry, and Yonkers campuses PRI connections Voice gateway between Avaya and VoIP (DF / Yonkers) Analog server for fax (Bronx) Unity voic IPCC / CRA server 6

7 T1 PRI Verizon Bronx (718) COT1 PRI Bronx T1 Call Manager VoIP gw Fax GigE Call Manager Call Manager 3x T1 Manhattan Verizon Manhattan (212) CO T3 T3 Internet 2x T1 T1 VoIP gw T1 Yorktown 2x PRI White Plains T1 T1 T1 Avaya PBX T1 Avaya PBX CO trunk Verizon Yonkers (914) CO T1 Avaya PBX Verizon White Plain (914) CO CO trunk T1 flexpath Verizon Dobbs Ferry (914) CO Asterisk 4x T1 flexpath Dobbs Ferry Mercy College Telecommunications/Network Connections T1 Verizon Yorktown (914) CO Yonkers/i.park Avaya PBX 7

8 SUNGARD SUMMIT 2007 sungardsummit.com 8 Problems, Problems Things did not work as they should A Community of Learning

9 Problems, problems Different auto-attendants, based on campus Direct Inward Dial (DID) on some campuses Only extensions through auto-attendant on others Two different sources for dial-by-name information Outdated printed telephone directory Difficulty reporting use of auto-attendant Overlapping dial plans (extensions, voic ) Capacity of existing voic system (ports) 9

10 SUNGARD SUMMIT 2007 sungardsummit.com 10 Our Solution Find a way to make it all work together! A Community of Learning

11 Open source telephone system Complete IP PBX with related features, protocols, and interoperability Runs on variety of operating systems GNU General Public License (GPL) Commercial support (Digium and others) Provides ability to easily automate process 11

12 How good can it be? Open source call center support (Aheeva) Sam Houston State University replacing Cisco Call Managers, Nortel PBXs with Linux-based VoIP and messaging servers ( Huntsville, TX) (NetworkWorld.com, 09/18/06) Calling card billing / applications Many business case studies available 12

13 How was it implemented at Mercy? Started deployment in late 2005 Dell PowerEdge 2650 VoIP connection through Cisco gateway H.323 connection through Call Managers (CCM pre 4.0 version did not have SIP) Routing set up from Avaya and Cisco for various extensions 13

14 Uniform auto-attendant Developed with input from campus community Provides uniform prompts and experience regardless of called number Dial destination extension at any time Dial by name Admissions, Registrar, Student Services, Campus management, Library, Security, Weather line, Directions Auto-attendant at each campus pointed to unique extension for reporting 14

15 Uniform dial-by-name Driven through Asterisk voic system Listed Information Department name listing is static Recorded department names Dial by name (last name) Information obtained from Active Directory (information flagged ) Option to record their own name Default is name spelled out by system 15

16 Uniform dial-by-name - Generate name listing use Net::LDAP; use Net::LDAP::Entry; use Net::LDAP::Control::Sort; foreach $letter (A..Z) { $user=$letter.'*'; $mesg = $ldap->search ( base => "DC=mercy,DC=local", scope => 'sub', filter => "(&(&(&( (Flags=1))(objectCategory=person)(objectClass=user)(cn=$user))))", control => [ $sort ] ) or die "$@"; foreach $entry ($mesg->entries) { $telephone = $entry->get_value(telephonenumber); $dept = $entry->get_value(department); $cn = $entry->get_value(cn); $sn = $entry->get_value(sn); Output information in format for asterisk voic .conf file Check to make sure that process ran correctly or leave original file in place 16

17 Uniform dial-by-name - Recording of name [namerecording] exten => 500,1,Wait,1 exten => 500,2,set(TIMEOUT(response)=5) exten => 500,3,Playback(name-instructions) exten => 500,4,Playback(name-sayname) exten => 500,5,Record(mymessage:gsm) exten => 500,6,Wait,1 exten => 500,7,Playback(name-yousaid) exten => 500,8,Playback(mymessage) exten => 500,9,Background(name-save) exten => t,1,playback(invalid) ; "That's not valid, try again" exten => t,2,goto(500,4) exten => i,1,playback(invalid) ; "That's not valid, try again" exten => i,2,goto(500,9) exten => 1,1,System(/bin/mv /var/lib/asterisk/sounds/mymessage.gsm /var/lib/asterisk/sounds/local/${timestamp}.gsm) exten => 1,2,System(echo \'New voic greeting file is named ${TIMESTAMP} from ${CALLERID} has been created\' /bin/mail -s New_voic _greeting vm-greeting) exten => 1,3,Wait,1 exten => 1,4,Playback(name-thankyou) exten => 1,5,Playback(vm-goodbye) exten => 1,6,Hangup exten => 2,1,Goto(500,4) exten => 3,1,Playback(vm-goodbye) exten => 3,2,Hangup 17

18 Directory People like to have a printed copy Generated periodically and posted to WWW Information obtained from Active Directory Available from within campus network or connection through college portal Same information used for online search 18

19 Directory - Script use Spreadsheet::WriteExcel::Big; use PDF::API2; use Net::LDAP; use Net::LDAP::Entry; use Net::LDAP::Control::Sort; Same concept as with generation of voic file 19

20 Directory - WWW Outside the firewall or portal Inside the firewall or portal Online version 20

21 Call Detail Reporting Call information stored in database Source of call Destination of call Duration of call WWW interface for report generation Asterisk-Stat : CDR Analyser ( 21

22 Call Detail Reporting - Very flexible - Daily / Comparison / Six Month 22

23 Voic Features Notify user there is voic Send copy of voic to user via Envelope (date/time/caller ID) Allow caller to review message before saving Allow caller to reach operator Current Users Adjuncts Desktop support staff 23

24 Extension management and routing Do not want Avaya call directed toward Cisco or Cisco calls directed toward Avaya Dial plan allows us to direct to correct gateway Generate extension routing periodically Active Directory has extensions, but do not *really* know what system they are on (DF has mixed environment) Cisco extensions obtained from call manager database 24

25 Extension management and routing - CCM extension dump use DBI; # Obtain necessary information from CCM SELECT * FROM CCM0303.dbo.Device SELECT * FROM CCM0303.dbo.NumPlan SELECT * FROM CCM0303.dbo.DeviceNumPlanMap # Now create extension list # Compare to AD and report when there are issues # Create proper routing from Asterisk for Cisco VoIP extensions 25

26 SUNGARD SUMMIT 2007 sungardsummit.com 26 Implementation Issues What did not work the way it should have worked A Community of Learning

27 Implementation issues Gateway capacity Looping (not only Asterisk issue) H.323 module 27

28 Connectivity between Avaya and VoIP Two PRI interfaces on main campus (each has 23 voice channels and 1 control) Call between PSTN and VoIP uses a port Call between campus PBX and VoIP uses a port Call to auto-attendant uses a port; where DID is not possible, uses TWO ports per call Call to auto-attendant uses a port; where selection is not a VoIP telephone, uses TWO ports per call Call to Student Services areas routed to outside uses TWO ports per call 28

29 Connectivity between Avaya and VoIP Solution Majority of load are calls related to student services Install T1 interface to PSTN for Asterisk Route all calls related to student services out through this new interface 29

30 Looping VoIP routing map sends all non-defined extensions to Avaya Avaya has static routing to VoIP extensions Question - What happens when either system calls an extension that is not completely defined correctly? Answer: LOOPS 30

31 Looping Solution? Ties all channels up no other calls can go through (Avaya -> VoIP -> Avaya -> VoIP ) Auditing reports help manage problem Make sure tear down configuration when removing extensions Automate process, where possible 31

32 H.323 load Asterisk support for both SIP and H.323 SIP (Session Initiation Protocol, IETF) H.323 (ITU audio-visual communication sessions on any packet network) Before version 4, Cisco Call Manager only had H.323 trunks Over time, configuration caused loss of audio through Call Manager 32

33 H.323 load Solution Asterisk H.323 module was not robust Upgrade to Call Manager version 4, providing SIP trunks Transcoding through Cisco CM to Avaya caused issues for Call Manager, so routed calls to appropriate gateway 33

34 SUNGARD SUMMIT 2007 sungardsummit.com 34 Current and Future Plans Now that you can do all of this neat stuff, what s next? A Community of Learning

35 Current and future plans Class notification system Dial-by-name names from Cisco Unity Avaya comparison ICD for Helpdesk Fax DID routing Redundancy Future deployments 35

36 Class notification system Campus Management requested ability for professor to notify students and staff if going to be late College running Plus/SIS (converting to Banner) Data available through Datamart Everyone has a telephone 36

37 Class notification system AGI Asterisk Gateway Interface perl, java, PHP, Python, Ruby, C, C#, shell DBI Easily migrate to Banner or other SQL source. Information currently in Datamart and uploaded to another SQL database Could offer SMS (WWW interface being developed) 37

38 Class notification system - flowchart Announce process Delay or cancel? Obtain Instructor ID Delay by N m inutes Obtain Instructor PIN Verify options In D B a n d match? Hang up caller Obtain course ID N o tify u sers V a lid? Notify cam pus m anagem ent 38

39 Dial-by-name name If no greeting available, default is S M I T H Not everyone has recorded a name at this time Cisco Unity name recording easily available RIFF (little-endian) data, WAVE audio, ITU G.711 mu-law, mono 8000 Hz Asterisk GSM Lossy Speech Compression Convert files using sox (Sound exchange audio conversion tool - Need GSM library for sox) Write script to perform conversion Make recording name part of new hire process 39

40 Avaya extensions Data from Avaya of extension assignment Scraper process (telnet is available to obtain basic name and extension information) Compare to Active Directory Compare to Call Manager Generate call routing information for extensions Report and audit looping issues 40

41 ICD for Helpdesk Existing Cisco IPCC / ICD used by multiple groups in the college ICD maintenance costs very expensive Necessary functionality available in Asterisk Separate reporting details Test bed 41

42 DID fax routing Some users at college using efax ( Provide similar functionality with hylafax ( Inbound Install analog ports into Asterisk server DID numbers configured on T1 Route DID numbers to fax server delivery of fax based on specific DID Outbound Print via Windows Analog board for Asterisk server ordered in early February

43 Redundancy Current only one server Many key functions use this system Need to plan for disaster Redundant server(s) Cold-spares for interfaces Configure routing to other gateways 43

44 Migrating in the future Older handsets No caller ID No multiple lines Older voic system High maintenance costs / end of life for existing systems Staffing - knowledge is key 44

45 SUNGARD SUMMIT 2007 sungardsummit.com 45 Summary What did we talk about? A Community of Learning

46 Summary Problems Auto attendant not uniform Could not reach all locations from all numbers No central dial by name Asterisk Uniform auto-attendant / dial by name Online / Printed directory information Reporting for auto-attendant Current and future plans Class notification system More auditing FAX DID delivery Migrating in the future 46

47 Discussion / Questions & Answers 47

48 Thank You! Chris Peckham Please complete the online class evaluation form SunGard, the SunGard logo, Banner, Campus Pipeline, Luminis, PowerCAMPUS, Matrix, and Plus are trademarks or registered trademarks of SunGard Data Systems Inc. or its subsidiaries in the U.S. and other countries. Third-party names and marks referenced herein are trademarks or registered trademarks of their respective owners SunGard. All rights reserved. 48

Supporting Multiple PBXs in Hybrid Deployment Models

Supporting Multiple PBXs in Hybrid Deployment Models NetVanta Unified Communications Technical Note Supporting Multiple PBXs in Hybrid Deployment Models Application Note for Hybrid Deployments The goal of this technical note is to ensure that you can leverage

More information

Xorcom IP-PBX Software Features

Xorcom IP-PBX Software Features Xorcom IP-PBX Software s Based on the Elastix Asterisk i distribution, Xorcom s entire family of IP-PBX appliances provide all the standard telephone functionality supported by Asterisk at no extra cost,

More information

Telco Depot IP-PBX Software Features

Telco Depot IP-PBX Software Features Telco Depot IP-PBX Software Features Based on the Elastix Asterisk distribution, Telco Depot s entire family of IP-PBX appliances provide all the standard telephone functionality supported by Asterisk

More information

VoIP and FreeBSD. The daemon meets the phone. May 15th, 2008 University of Ottawa,, Ottawa, Canada Massimiliano Stucchi stucchi@briantel.

VoIP and FreeBSD. The daemon meets the phone. May 15th, 2008 University of Ottawa,, Ottawa, Canada Massimiliano Stucchi stucchi@briantel. VoIP and FreeBSD The daemon meets the phone May 15th, 2008 University of Ottawa,, Ottawa, Canada Massimiliano Stucchi stucchi@briantel.com Agenda Introduction Terms Introduction to Asterisk key concepts

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

Xorcom CompletePBX Overview

Xorcom CompletePBX Overview Xorcom CompletePBX Overview CompletePBX is a comprehensive, business-grade VoIP telephony system. It is a single product line of varying hardware configurations that are optimized to support the communications

More information

Welltel IP PBX features. Our Handy a-z guide

Welltel IP PBX features. Our Handy a-z guide Welltel IP PBX features Our Handy a-z guide IP PBX FEATURES our handy A - Z Guide Analogue Support Supports analogue gateways to connect fax machines or credit card machines. ANI Routing Routes calls to

More information

Evolution PBX User Guide for SIP Generic Devices

Evolution PBX User Guide for SIP Generic Devices Evolution PBX User Guide for SIP Generic Devices Table of contents Introduction... 1 Voicemail... Using Voicemail... Voicemail Menu... Voicemail to Email... 3 Voicemail Web Interface... 4 Find Me Rules...

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

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

VoIP Trunking with Session Border Controllers

VoIP Trunking with Session Border Controllers VoIP Trunking with Session Border Controllers By Chris Mackall Submitted to the Faculty of the Information Technology Program in Partial Fulfillment of the Requirements for the Degree of Bachelor of Science

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

Avaya Aura Session Manager

Avaya Aura Session Manager Avaya Aura Session Manager Avaya Aura Session Manager is the core of Avaya s revolutionary Session Initiated Protocol (SIP) based cloud computing architecture. The Session Manager platform makes it possible

More information

Publication Information This document is a publication of IPVision S.A. 112 Bernardo de Irigoyen, 4th Floor (C1072AAD) Buenos Aires, Argentina

Publication Information This document is a publication of IPVision S.A. 112 Bernardo de Irigoyen, 4th Floor (C1072AAD) Buenos Aires, Argentina IP Centrex Data Sheet The most effective turn-key hosted virtual PBX solution for Clarent Networks Publication Information This document is a publication of IPVision S.A. 112 Bernardo de Irigoyen, 4th

More information

640-460 - Implementing Cisco IOS Unified Communications (IIUC)

640-460 - Implementing Cisco IOS Unified Communications (IIUC) 640-460 - Implementing Cisco IOS Unified Communications (IIUC) Course Introduction Course Introduction Module 1 - Cisco Unified Communications System Introduction Cisco Unified Communications System Introduction

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

Integrated Voice. Service Guide. www.megapath.com. Learn More: Call us at 877.634.2728. Save money and maximize bandwidth efficiency

Integrated Voice. Service Guide. www.megapath.com. Learn More: Call us at 877.634.2728. Save money and maximize bandwidth efficiency Service Guide Save money and maximize bandwidth efficiency Learn More: Call us at 877.634.2728. www.megapath.com Table of Contents Product overview... 3 What is integrated voice?... 3 How it works... 4

More information

fsaatlas Case Management And Communication

fsaatlas Case Management And Communication SUNGARD SUMMIT 2007 sungardsummit.com 1 fsaatlas Case Management And Communication Presented by: Henky Erawan, SunGard Higher Education - fsaatlas March 20 th, 2007 A Community of Learning Session Rules

More information

Integrated Voice. Service Guide. Save money and maximize bandwidth efficiency Version 201009

Integrated Voice. Service Guide. Save money and maximize bandwidth efficiency Version 201009 Integrated Voice Service Guide Save money and maximize bandwidth efficiency Version 201009 TABLE OF CONTENTS TABLE OF CONTENTS...2 PRODUCT OVERVIEW...3 WHAT IS INTEGRATED VOICE?...3 HOW IT WORKS...4 BASE

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

Application Notes for Configuring SIP Trunking between Metaswitch MetaSphere CFS and Avaya IP Office Issue 1.0

Application Notes for Configuring SIP Trunking between Metaswitch MetaSphere CFS and Avaya IP Office Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring SIP Trunking between Metaswitch MetaSphere CFS and Avaya IP Office Issue 1.0 Abstract These Application Notes describe the steps

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

How To Use A Pplx On A Pc Or Cell Phone (For A Business)

How To Use A Pplx On A Pc Or Cell Phone (For A Business) PBXact/PBXtended Features Schmooze Com Inc. Copyright 2011 Schmooze Communications. All Rights Reserved. Standard Features Unlimited Extensions Each employee can have their own extension, regardless of

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

Merging Old and New Telephony with Asterisk

Merging Old and New Telephony with Asterisk Merging Old and New Telephony with Asterisk Greg Vance Digium, Inc. gvance@digium.com Asterisk a Global Phenomenon Digium Confidential Digium Confidential What is Asterisk? platform The world s from which

More information

SIP Trunking DEEP DIVE: The Service Provider

SIP Trunking DEEP DIVE: The Service Provider SIP Trunking DEEP DIVE: The Service Provider Larry Keefer, AT&T Consulting UC Practice Director August 12, 2014 2014 AT&T Intellectual Property. All rights reserved. AT&T, the AT&T logo and all other AT&T

More information

White Paper Integration of TTY Calls into a Call Center Using the Placeholder Call Technique Updated: February 2007

White Paper Integration of TTY Calls into a Call Center Using the Placeholder Call Technique Updated: February 2007 Overview of Call Centers White Paper Integration of TTY Calls into a Call Center Using the Placeholder Call Technique Updated: February 2007 All organizations have a phone system, but a call center has

More information

Asterisk: The Future of Your Phone Service

Asterisk: The Future of Your Phone Service Asterisk: The Future of Your Phone Service What is an Asterisk PBX? Overview Asterisk is an open source / open standards hybrid phone system that uses standard computer hardware and software to unite all

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

EPYGI QX IP PBXs & GATEWAYS

EPYGI QX IP PBXs & GATEWAYS EPYGI QX IP PBXs & GATEWAYS Epygi QX IP PBXs This IP PBX is designed for offices of up to 50 users and supports up to 16 concurrent calls. The QX50 comes with 16 IP devices activated and can scale up to

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

Application Notes for Configuring Microsoft Office Communications Server 2007 R2 and Avaya IP Office PSTN Call Routing - Issue 1.0

Application Notes for Configuring Microsoft Office Communications Server 2007 R2 and Avaya IP Office PSTN Call Routing - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Microsoft Office Communications Server 2007 R2 and Avaya IP Office PSTN Call Routing - Issue 1.0 Abstract These Application

More information

FACILITY TELECOMMUNICATIONS MANAGEMENT FOR THE GOVERNMENT EMERGENCY TELECOMMUNICATIONS SERVICE Introduction

FACILITY TELECOMMUNICATIONS MANAGEMENT FOR THE GOVERNMENT EMERGENCY TELECOMMUNICATIONS SERVICE Introduction FACILITY TELECOMMUNICATIONS MANAGEMENT FOR THE GOVERNMENT EMERGENCY TELECOMMUNICATIONS SERVICE Introduction This document provides telecommunications management information for organizations that use the

More information

Configuring Quadro IP PBXs with "SIP Connect"

Configuring Quadro IP PBXs with SIP Connect Configuring Quadro IP PBXs with "SIP Connect" Revision: 1.0 Abstract: This document describes how to configure the Quadro IP PBXs to use the IP-PSTN service from SIP Connect PAGE 1 Document Revision History

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

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

Georgia Tech s Luminis IV Beta Testing

Georgia Tech s Luminis IV Beta Testing SUNGARD SUMMIT 2007 sungardsummit.com 1 Georgia Tech s Luminis IV Beta Testing Presented by: Steve Goeke Georgia Tech March 22, 2007 A Community of Learning Agenda Portal Environment and Architecture To

More information

How to Build a Simple Virtual Office PBX System Using TekSIP and TekIVR

How to Build a Simple Virtual Office PBX System Using TekSIP and TekIVR How to Build a Simple Virtual Office PBX System Using TekSIP and TekIVR This document explains how to build a simple virtual office PBX system using TekSIP and TekIVR. In this example following components

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

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

D-Link, the D-Link logo, and VoiceCenter are trademarks or registered trademarks of D-Link Corporation or its subsidiaries in the United States and

D-Link, the D-Link logo, and VoiceCenter are trademarks or registered trademarks of D-Link Corporation or its subsidiaries in the United States and D-Link VoiceCenter TM Response Point TM with Microsoft Delivers a Fully- Featured Business Phone System with Leading-Edge Productivity and Integration Features White Paper Abstract Small Businesses Gain

More information

VoIP Survivor s s Guide

VoIP Survivor s s Guide VoIP Survivor s s Guide Can you really save $, improve operations, AND achieve greater security and availability? Presented by Peggy Gritt, Founder and CEO of the VoIP A non-biased organization for the

More information

PeopleAdmin and Banner HR Interface

PeopleAdmin and Banner HR Interface SUNGARD SUMMIT 2007 sungardsummit.com 1 PeopleAdmin and Banner HR Interface Presented by: Carrie Silliman and Laura Weathersby SunGard Higher Education March 20, 2007 A Community of Learning Session Rules

More information

EPYGI QX IP PBXs & GATEWAYS

EPYGI QX IP PBXs & GATEWAYS EPYGI QX IP PBXs & GATEWAYS Epygi QX IP PBXs This IP PBX is designed for offices of up to 50 users and supports up to 16 concurrent calls. The QX50 comes with 16 IP devices activated and can scale up to

More information

Application Notes for configuring Avaya IP Office IP500 R7.0 with 2Ring NetFAX R3.0 Issue 1.0

Application Notes for configuring Avaya IP Office IP500 R7.0 with 2Ring NetFAX R3.0 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for configuring Avaya IP Office IP500 R7.0 with 2Ring NetFAX R3.0 Issue 1.0 Abstract These Application Notes describe the configuration steps

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

VoIP Application Note:

VoIP Application Note: VoIP Application Note: Configure NEC UX5000 w/ BroadVox SIP Trunking Service P/N 0913226 Date: 8/12/09 Table of Contents: GOAL... 3 PREREQUISITES... 3 SIP TRUNKING INFORMATION PROVIDED BY BROADVOX:...

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

Network Overview. Background Traditional PSTN Equipment CHAPTER

Network Overview. Background Traditional PSTN Equipment CHAPTER CHAPTER 1 Background Traditional PSTN Equipment Traditional telephone services are engineered and offered over the public switched telephone network (PSTN) via plain old telephone service (POTS) equipment

More information

Business Communication Manager BCM 50 and BCM450 Release 5.0 Configuration Guide for Verizon Business SIP Trunking. Issue 1.1

Business Communication Manager BCM 50 and BCM450 Release 5.0 Configuration Guide for Verizon Business SIP Trunking. Issue 1.1 Business Communication Manager BCM 50 and BCM450 Release 5.0 Configuration Guide for Verizon Business SIP Trunking Issue 1.1 Abstract This document provides guidelines for configuring a SIP Trunk between

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

Release Notes for NeoGate TE100 16.18.0.X

Release Notes for NeoGate TE100 16.18.0.X Release Notes for NeoGate TE100 16.18.0.X ===Firmware Version: V16.18.0.2==== Applicable Model: NeoGate TE100 Release Date: October 25th, 2014 http://www.yeastar.com 1/6 1. New Features 1. Added support

More information

FreePBX R14. SIP Trunk Provisioning Guide

FreePBX R14. SIP Trunk Provisioning Guide FreePBX R14 SIP Trunk Provisioning Guide Last Update: 09/24/2012 ABSTRACT FreePBX 1.8 is a freely available software distribution sponsored by Bandwidth.com that offers a Linux-based (Centos 5.8, Linux

More information

intelligence at the edge of the network www.critical-links.com EdgeBOX V 4.5 VoIP How To

intelligence at the edge of the network www.critical-links.com EdgeBOX V 4.5 VoIP How To intelligence at the edge of the network www.critical-links.com EdgeBOX V 4.5 VoIP HowTo Page 1 Page 2 Introduction to VoIP on the edgebox VoIP (Voice over Internet Protocol) is handled by an open source

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

Functional Specifications Document

Functional Specifications Document Functional Specifications Document VOIP SOFT PBX Project Code: SPBX Project Advisor : Aftab Alam Project Team: Umair Ashraf 03-1853 (Team Lead) Imran Bashir 02-1658 Khadija Akram 04-0080 Submission Date:19-10-2007

More information

Crystal Report tips and Techniques

Crystal Report tips and Techniques SUNGARD SUMMIT 2007 sungardsummit.com 1 Crystal Report tips and Techniques Presented by: Instructor Jim Tule March 20, 2007 A Community of Learning Introduction Crystal Reports tips and techniques used

More information

Setup Guide: on the MyNetFone Service. Revision History

Setup Guide: on the MyNetFone Service. Revision History Setup Guide: on the MyNetFone Service Revision History Version Author Revision Description Release Date 1.0 Sampson So Initial Draft 02/01/2008 2.0 Sampson So Update 27/09/2011 1 Table of Contents Introduction...

More information

Enswitch Administrator Guide

Enswitch Administrator Guide Enswitch Administrator Guide July 2012 Enswitch Administrator Guide 1 Contents 1 Introduction... 5 1.1 The Purpose of this Document...5 1.2 Features...5 1.3 Workflows...5 2 User Enrollment... 6 3 User

More information

M5 Networks. An Introduction to M5 s Voice as a Service

M5 Networks. An Introduction to M5 s Voice as a Service PRODUCT SHEET M5 Networks An Introduction to M5 s Voice as a Service What does M5 do? M5 provides all the capabilities of a phone system and more as a service. Hundreds of mid-sized businesses use M5 to

More information

IPPBX FAQ. For Firmware Version: V2.0/V3.0 2013-12-11

IPPBX FAQ. For Firmware Version: V2.0/V3.0 2013-12-11 For Firmware Version: V2.0/V3.0 2013-12-11 Contents 1. IPPBX Access... 3 1.1 How to access IPPBX via SSH?... 3 1.2 How to access IPPBX if I forget the IP of WAN?... 4 1.3 How to retrieve WEB password via

More information

Take back control of your business communications.

Take back control of your business communications. Take back control of your business communications. JOIN THE XO EVOLUTION XOptions Flex the business communications bundle Break free from the oppression of multiple communications vendors. Business communications

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

Device SIP Trunking Administrator Manual

Device SIP Trunking Administrator Manual Table of Contents Device SIP Trunking Administrator Manual Version 20090401 Table of Contents... 1 Your SIP Trunking Service... 2 Terminology and Definitions... 2 PBX, IP-PBX or Key System... 2 Multi-port

More information

X X X X X. Platinum Edition. Unlimited Extensions. Unlimited Auto Attendants. Unlimited Voicemail Boxes. ACD Features

X X X X X. Platinum Edition. Unlimited Extensions. Unlimited Auto Attendants. Unlimited Voicemail Boxes. ACD Features Feature Name Unlimited Extensions Unlimited Auto Attendants Unlimited Voicemail Boxes ACD Features Feature Description With Evo IP-PB you can add an extension at any time, with no limits and no need to

More information

SIP-ing? Pipeline Articles www.contactcenterpipeline.com

SIP-ing? Pipeline Articles www.contactcenterpipeline.com tech line / jul 2013 Time to Start SIP-ing? Can a SIP-based solution add value for your contact center? A look at the key opportunities and considerations. By Ken Barton, and Matt Morey, Strategic Contact

More information

ICE 008 IP PBX. 1. Product Information. 1.1. New Mini PBX. 1.2. Features 1.2.1. System Features

ICE 008 IP PBX. 1. Product Information. 1.1. New Mini PBX. 1.2. Features 1.2.1. System Features 1. Product Information 1.1. New Mini PBX ICE 008 IP PBX ICE008 is new generation office communication equipment that delivers traditional PBX (private branch exchange) functions and more with advanced

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

KISUMU LAW COURTS: SPECIFICATIONS FOR A UNIFIED COMMUNICATION SYSTEM / VOICE OVER INTERNET PROTOCOL (VOIP) SOLUTION. Page 54 of 60

KISUMU LAW COURTS: SPECIFICATIONS FOR A UNIFIED COMMUNICATION SYSTEM / VOICE OVER INTERNET PROTOCOL (VOIP) SOLUTION. Page 54 of 60 SPECIFICATIONS FOR A UNIFIED COMMUNICATION SYSTEM / VOICE OVER INTERNET PROTOCOL (VOIP) SOLUTION Page 54 of 60 UNIFIED COMMUNICATION SYSTEM (VOIP) PROPOSAL FOR KISUMU JUDICIARY COURTS. 1.0 PARTICULARS

More information

Telephony System Integrator s Guide for ShoreTel. Citrix EasyCall Gateway 3.0

Telephony System Integrator s Guide for ShoreTel. Citrix EasyCall Gateway 3.0 Citrix EasyCall Gateway Telephony System Integrator s Guide for ShoreTel Citrix EasyCall Gateway 3.0 Copyright and Trademark Notice Use of the product documented in this guide is subject to your prior

More information

FacetPhone Administrator s Guide

FacetPhone Administrator s Guide FacetPhone Administrator s Guide Trademarks and Copyright FacetPhone is a trademark of Facet Corp. Mac, Mac OS and iphone are registered trademarks of Apple Inc. Windows is a registered trademark of Microsoft

More information

Release Notes for MyPBX SOHO 70.20.0.X

Release Notes for MyPBX SOHO 70.20.0.X Release Notes for MyPBX SOHO 70.20.0.X ===Firmware Version: V70.20.0.20==== Applicable Model: MyPBX SOHO Release Date: January 6th, 2015 http://www.yeastar.com 1/12 1. Announcement We are pleased to announce

More information

Configuring the Sonus SBC 2000 with Cisco Unified Call Manager 10.5 for Verizon Deployment

Configuring the Sonus SBC 2000 with Cisco Unified Call Manager 10.5 for Verizon Deployment Configuring the Sonus SBC 2000 with Cisco Unified Call Manager 10.5 for Verizon Deployment Application Notes Rev 1.0 P/N 550-06690 Last Updated: October 26, 2015 Revision History Revision Date Revised

More information

Quick Start Guide CREATING A NEW SITE

Quick Start Guide CREATING A NEW SITE IVY is our complete control panel for managing you or your customers SIP trunks and hosted PBX settings. This guide will help you get up and running with IVY as quickly as possible. First thing we need

More information

Feature and Technical

Feature and Technical BlackBerry Mobile Voice System for SIP Gateways and the Avaya Aura Session Manager Version: 5.3 Feature and Technical Overview Published: 2013-06-19 SWD-20130619135120555 Contents 1 Overview...4 2 Features...5

More information

Avaya IP Office 8.1 Configuration Guide

Avaya IP Office 8.1 Configuration Guide Avaya IP Office 8.1 Configuration Guide Performed By tekvizion PVS, Inc. Contact: 214-242-5900 www.tekvizion.com Revision: 1.1 Date: 10/14/2013 Copyright 2013 by tekvizion PVS, Inc. All Rights Reserved.

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

Kyle Haefner Communications Programmer Telecommunications Colorado State University. Open Source Telecommunications. Applications to Education

Kyle Haefner Communications Programmer Telecommunications Colorado State University. Open Source Telecommunications. Applications to Education Kyle Haefner Communications Programmer Telecommunications Colorado State University Open Source Telecommunications Applications to Education The Ongoing Dilemma Current telephony equipment is becoming

More information

Crystal Gears. The Next Generation Personal Desktop Call Recording Solution. Why Crystal Gears

Crystal Gears. The Next Generation Personal Desktop Call Recording Solution. Why Crystal Gears The Next Generation Personal Desktop Call Recording Solution Crystal Gears Crystal Gears (CG as short) is a new next generation desktop digital recording system like no other before. By widely compatible

More information

Introducing hosted telephony from Foehn

Introducing hosted telephony from Foehn Hosted Telephony Introducing hosted telephony from Foehn Whether you are a start up wanting to appear like an established, professional company or an established company looking to reduce operational budgets

More information

Whitepaper: Voice Call Notifications via VoIP and existing Dialogic Diva Boards

Whitepaper: Voice Call Notifications via VoIP and existing Dialogic Diva Boards Whitepaper: Voice Call Notifications via VoIP and existing Dialogic Diva Boards derdack gmbh. all rights reserved. this document is for information only. derdack gmbh makes no warranties, express or implied,

More information

04/09/2007 EP520 IP PBX. 1.1 Overview

04/09/2007 EP520 IP PBX. 1.1 Overview 1.1 Overview The EP520 IP PBX is an embedded Voice over IP (VoIP) Server with Session Initiation Protocol (SIP) to provide IP extension phone connection for global virtual office of small-to-medium business

More information

IP PBX SH-500N WWW.HIPERPBX.COM

IP PBX SH-500N WWW.HIPERPBX.COM IP PBX SH-500N COMPANIES THAT WANT TO EXPAND AND IMPROVE THEIR TELEPHONE SYSTEM IP PBX SH-500N The IP PBX SH-500N is designed for companies that want to expand and improve their telephone system, and/or

More information

Updated Since : 2007-02-09

Updated Since : 2007-02-09 Microsoft Exchange Server 2007 Unified Messaging PBX Configuration Note: Avaya S8300 with AudioCodes Mediant 2000 using T1 CAS (In-band DTMF Tones) By : AudioCodes Updated Since : 2007-02-09 READ THIS

More information

The following is a list of the features available with the managed Intersoft IP Telephony Services.

The following is a list of the features available with the managed Intersoft IP Telephony Services. The following is a list of the features available with the managed Intersoft IP Telephony Services. Call Forwarding When you are not at your desk, be sure not to miss important calls. Forward call to another

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

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

Voice Call Addon for Ozeki NG SMS Gateway

Voice Call Addon for Ozeki NG SMS Gateway Voice Call Addon for Ozeki NG SMS Gateway Document version v.1.0.0.0 Copyright 2000-2011 Ozeki Informatics Ltd. All rights reserved 1 Table of Contents Voice Call Addon for Ozeki NG SMS Gateway Introduction

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

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

Sample Configuration for H.323 Trunk between Avaya IP Office and Cisco Unified Communications Manager 7.0 Issue 1.0

Sample Configuration for H.323 Trunk between Avaya IP Office and Cisco Unified Communications Manager 7.0 Issue 1.0 Avaya Solution & Interoperability Test Lab Sample Configuration for H.323 Trunk between Avaya IP Office and Cisco Unified Communications Manager 7.0 Issue 1.0 Abstract These Application Notes describe

More information

Attachment III Scope of Work Tehama Count Dept of Social Services Phone System Replacement RFP 2014

Attachment III Scope of Work Tehama Count Dept of Social Services Phone System Replacement RFP 2014 Attachment III Scope of Work Tehama Count Dept of Social Services Phone System Replacement RFP 2014 1. Scope of work a. The proposed system will be installed at three TCDSS offices in Red Bluff and Corning,

More information

CUSTOMER CONFIGURATION AUTO ATTENDANT ADMINISTRATOR S GUIDE

CUSTOMER CONFIGURATION AUTO ATTENDANT ADMINISTRATOR S GUIDE CUSTOMER CONFIGURATION AUTO ATTENDANT ADMINISTRATOR S GUIDE Primus Business Services AAAG10-2013 Table of Contents Overview... 3 What is an Auto Attendant?... 3 Features... 4 Options... 6 Global Options...

More information

Auto Attendants. Call Management

Auto Attendants. Call Management Auto Attendants Customer Portal Top Level Auto Attendant (Always On) Multiple Top Level Auto Attendants (Always on) Top Level Auto Attendant (Time Based) Sub-Level Auto Attendants Web based user interface

More information

Application Notes Rev. 1.0 Last Updated: February 3, 2015

Application Notes Rev. 1.0 Last Updated: February 3, 2015 SBC 1000/2000 Series Configuration Guide with Cisco Unified Call Manager v8.6 for Level 3 Voice Complete SM Deployments Application Notes Rev. 1.0 Last Updated: February 3, 2015 Contents 1 Document Overview...

More information

ConnectDirect User Guide

ConnectDirect User Guide ConnectDirect User Guide For questions contact ConnectMe Customer Service Email: custsvc@connectmevoice.com Phone: 800-743-1208 Ext. 2 Page 1 Contents... 1 SECTION 1: Introduction... 4 SECTION 2: Login

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

CITY OF OAK CREEK VoIP Telephone System Addendum

CITY OF OAK CREEK VoIP Telephone System Addendum CITY OF OAK CREEK VoIP Telephone System Addendum Important Dates: RFP Documents available April 24 th, 2015 Pre Bid Walkthrough None Last Day for Questions May 6th, 2015 4:00 p.m. CST Last Addendum Issued

More information

Panasonic Telephone Systems

Panasonic Telephone Systems Panasonic Telephone Systems www.voicesonic.com Phone: 877-289-2829 Comparison of Avaya IP Office 500 vs. Panasonic KX-TDE For the Small Business Market July 2008 This report summarizes the major advantages

More information

Application Notes for Configuring Yealink T-22 SIP Phones to interoperate with Avaya IP Office - Issue 1.0

Application Notes for Configuring Yealink T-22 SIP Phones to interoperate with Avaya IP Office - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Yealink T-22 SIP Phones to interoperate with Avaya IP Office - Issue 1.0 Abstract These Application Notes describe the configuration

More information