TEL 500 VOICE COMMUNICATIONS PROJECT REPORT IMPLEMENTATION OF SMALL CALL CENTER WITH AUTO ATTENDENT AND QUEUES SUBMITTED TO: RONNY L.

Size: px
Start display at page:

Download "TEL 500 VOICE COMMUNICATIONS PROJECT REPORT IMPLEMENTATION OF SMALL CALL CENTER WITH AUTO ATTENDENT AND QUEUES SUBMITTED TO: RONNY L."

Transcription

1 TEL 500 VOICE COMMUNICATIONS PROJECT REPORT IMPLEMENTATION OF SMALL CALL CENTER WITH AUTO ATTENDENT AND QUEUES SUBMITTED TO: RONNY L.BULL SUBMITTED BY: ARUNKUMAR ELIGETI HARISH KUMAR RAPARTHI 11/20/13

2 ABSTRACT: In this project we have built a small call center for SUNYIT using queues and auto attendant. In this project we used five different queue to build this call center.

3 Introduction: Call centers are the offices with large number of phones which are used to receive or transmit information of customer or firm. They are broadly classified into two types, they are inbound call center, outbound call center. In bound call center is maintained by the company in order to provide services to the customers. Outbound call center is operated by separate unit for telemarketing services, like banks and for credit card bills etc. In call center one cannot talk to call center representative directly he/she have to first listen to the auto attendant recording like which service that customer looking for if the caller or customer press the suitable extension or a number then the call gets into the queue of that service then call will be served in FIFO that is First In First Out manner. Auto Attendant system is different from IVR system, in auto attendant system it plays the recorded voice commands and the customer will proceed according to these commands were as in IVR Interactive Voice Response in this the system functions on user voice commands. IVR is complex and expensive compared to auto attendant.

4 Resources used in project: We have used five hard phones (Digium devices) one for calling the auto attendant extension and other four phones are used as call center services representative phones. And we have used VM, The IP which we have used is

5 Task performed: We started with the configuration files like rtp.conf, modules.conf, and logger.conf we have not made changes in these files they remained the same. Then we have added five extensions in sip.conf file, that extensions are used as different services of a call center, following lines are added in sip.conf file. callerid="arun <777>" mailbox=777 callerid="arun1 <777>" mailbox=778 callerid="arun2 <777>" mailbox=779 callerid="arun3 <777>" mailbox=780 callerid="arun4 <777>" mailbox=781 ; set caller ID info for device The extensions we have added are with caller ID 777,778,779,780 and 781 as mentioned above we have used IP address for doing the project. Then we started working with extensions.conf there is much to edit in extensions.conf file. The first thing we have edited extensions.conf file by adding the extensions. exten => 777,1,Dial(SIP/0000FFFF0000,15) ext 200 same => n,voic (777) exten => 778,1,Dial(SIP/0000FFFF0001,15) ext 201 same => n,voic (778) ; First SIP device mapped to ; Second SIP device mapped to exten => 779,1,Dial(SIP/OOOOFFFF0002,15) same => n,voic (779) exten => 780,1,Dial(SIP/OOOOFFFF0003,15) same => n,voic (780) exten => 781,1,Dial(SIP/OOOOFFFF0004,15) same => n,voic (781) exten => 250,1,playback(newrecording) exten => 800,1,Goto(main_menu,s,1) ; auto attendent extension

6 Here are the extensions assigned for SUNYIT call center,250 is playback extension and 800 is the auto attendant extensions which we call for listening to auto attendant recording. Then we added queues in extension file say 801, 802, 803, 804 each of all the queue is assigned to registrar office, business office, student activities and other information [queues] ;registrar office queue, if empty fails to voic exten => 801,1,Verbose(2, ${CALLERID(all)} entering the registrar office queue) same => n,queue(registrar office) same => n,voic (777) ;business office queue, if empty fails to voic exten => 802,1,Verbose(2, ${CALLERID(all)} entering the business office queue) same => n,queue(business office) same => n,voic (777) ;student activities queue, if empty fails to voic exten => 803,1,Verbose(2, ${CALLERID(all)} entering the student activities queue) same => n,queue(student activities) same => n,voic (777) ;other information queue, if empty fails to voic exten => 804,1,Verbose(2, ${CALLERID(all)} entering the other information queue) same => n,queue(other information) same => n,voic (777) similarly queues are added for all the extensions like *54, *55, *56, *57 exten => *54,1,Verbose(2,Logging In Queue Member) same => n,set(memberchannel=${channel(channeltype)}/${channel(peername)}) same => n,addqueuemember(registrar office,${memberchannel}) same => n,addqueuemember(business office,${memberchannel}) same => n,addqueuemember(student activities,${memberchannel}) same => n,addqueuemember(other information,${memberchannel}) ;same => n,festival('you have entered the queues') leave both queues exten => *55,1,Verbose(2,Logging Out Queue Member) same => n,set(memberchannel=${channel(channeltype)}/${channel(peername)}) same => n,removequeuemember(registrar office,${memberchannel}) same => n,removequeuemember(business office,${memberchannel}) same => n,removequeuemember(student activities,${memberchannel})

7 same => n,removequeuemember(other information,${memberchannel}) ;same => n,festival('you have left the queues') ;pause queue member exten => *56,1,Verbose(2,Pause Queue Member) same => n,set(memberchannel=${channel(channeltype)}/${channel(peername)}) same => n,pausequeuemember(registrar office,${memberchannel}) same => n,pausequeuemember(business office,${memberchannel}) same => n,pausequeuemember(student activities,${memberchannel}) same => n,pausequeuemember(other information,${memberchannel}) ;same => n,festival('you have paused your queues access') ;un-pause queue member exten => *57,1,Verbose(2,Pause Queue Member) same => n,set(memberchannel=${channel(channeltype)}/${channel(peername)}) same => n,unpausequeuemember(registrar office,${memberchannel}) same => n,unpausequeuemember(business office,${memberchannel}) same => n,unpausequeuemember(student activities,${memberchannel}) same => n,unpausequeuemember(other information,${memberchannel}) ;same => n,festival('you have resumed your queues access') Now the important task is recording the greetings and menu items to do this fist configure the hard phone then dial *96 the record the message after the tone for listening back we use play back extension 250. The recorded voice message save like new recording.wav then change the name of the recording by using cp new recording.wav filename.wav in sounds directory. We have made three recordings and saved them as first.wav, second.wav, third.wav. same => n,gotoiftime(9:00-8:00,monsat,*,*?daygreeting:afterhoursgreeting) ;after hours greeting same => n(afterhoursgreeting),background(second) same => n,voic (777) ;day time greeting same => n(daygreeting),background(first) same => n,goto(menuprompt) ;main menu prompt same => n(menuprompt),background(third) same => n,background(mainmenu) same => n,waitexten(4)

8 Then the DTMF module is edited such that if we press any number then it goes to the respected queue assigned for that extension. ;DTMF handling ;press 1 - connects to registrar office queue exten => 1,1,Verbose(1, Caller ${CALLERID(all)} pressed 1 for registrar office) same => n,goto(queues,801,1) ;press 2 - connects to business office queue exten => 2,1,Verbose(1, Caller ${CALLERID(all)} pressed 2 for business office) same => n,goto(queues,802,1) ;press 3 - connects to student activities queue exten => 3,1,Verbose(1, Caller ${CALLERID(all)} pressed 3 for student activities) same => n,goto(queues,803,1) ;press 4 - connects to other information queue exten => 4,1,Verbose(1, Caller ${CALLERID(all)} pressed 4 for other information) same => n,goto(queues,804,1) ;dial user extension exten => _2XX,1,Verbose(1, Caller ${CALLERID(all)} is calling ${EXTEN}) same => n,goto(users,${extent},1) ;press # - Dial By Name Directory exten => #,1,Verbose(1, Caller ${CALLERID(all)} has entered the directory) same => n,directory() ;timeout exten => t,1,set(numtimeouts=$[${numtimeouts}+1]}) same => n,gotoif($["${numtimeouts}" < "3"]?s,15) same => n,background(vm-goodbye) ;invalid menu item exten => i,1,set(numinvalid=$[${numinvalid}+1]}) same => n,gotoif($["${numinvalid}" < "3"]?:10) same => n,background(invalid) ;main menu prompt same => n(menuprompt),background(third) same => n,background(mainmenu) same => n,waitexten(4) same => n,goto(s,15) same => 10,Background(vm-goodbye) Once we done with extensions.conf file then its time to work with Queues, we have edited the queues.conf file as shown below.

9 [registrar office](standardqueue) member => SIP/0000FFFF0001,0,arun1 member => SIP/0000FFFF0002,5,arun2 member => SIP/0000FFFF0003,10,arun3 member => SIP/0000FFFF0004,50,arun4 ; first preferred ; second preferred ; third preferred ; least preferred [business office](standardqueue) member => SIP/0000FFFF0002,0,arun2 ; first preferred member => SIP/0000FFFF0003,5,arun3 ; second preferred member => SIP/0000FFFF0004,10,arun4 ; third preferred member => SIP/0000FFFF0001,15,arun1 ; least preferred [student activities](standardqueue) member => SIP/0000FFFF0003,0,arun3 member => SIP/0000FFFF0004,5,arun4 member => SIP/0000FFFF0001,10,arun1 member => SIP/0000FFFF0002,15,arun2 ; first preferred ; second preferred ; third preferred ; least preferred [other information](standardqueue) member => SIP/0000FFFF0004,0,arun4 member => SIP/0000FFFF0001,5,arun1 member => SIP/0000FFFF0002,10,arun2 member => SIP/0000FFFF0003,15,arun3 ; first preferred ; second preferred ; third preferred ; least preferred The other thing is that we had assigned priority for each Queue member so that call gets connected to the correct extensions 0,5,10,15 are the priority the least value of the priority has high priority. Then we had entered the following command chown asterisk:asterisk /etc/asterisk/*

10 We also need to fix the permissions on the moh and sounds directory by doing the following: chown -R asterisk:asterisk /var/lib/asterisk/sounds chown -R asterisk:asterisk /var/lib/asterisk/moh. Till here we have done with editing all the configuration files now call center system is ready to use practically. Then type /etc/init.d/asterisk restart to restart Type dialplan reload Then type asterisk-rvvv to enter CLI Demo performed: First we have to configured all the five phones by entering Server as User ID :0000FFFF0000,1,2,3,4 Password: The photo of one of the hardphone configuration is provided below.

11 After configuring our hardphones then we should dial *54 from four of our phones to place them in queue after that we have to call the auto attendant extension that is 800 to listen to the recordings and proceed according to recording. If the user press 1 then the phone with user ID 0000FFFF0001 rings. The CLI screen shot is provided. Upon pressing other buttons which we had not added it plays a invalid message and then it again plays menu recording. Output:

12

13 Issues faced: The major issues faced with queues, in CLI it showed that extension with no voice mail the queue were not working then other problem we faced with priority assigning we fix all the problems and completed project successfully.

14 Block diagram of call center: Dial auto attendant exten 800 Offic e hrs Plays day greetings recording Play after hour greeting Plays menu prompt recording

15 Conclusion: We have successfully created a small call center using queues and auto attendant and demonstrated. References:

TEL 500. Voice Communications. Week 1 Write Up. Session Initiation Protocol Lab. Submitted To: Prof Ronny Bull. By: Sai Sharan Korvi

TEL 500. Voice Communications. Week 1 Write Up. Session Initiation Protocol Lab. Submitted To: Prof Ronny Bull. By: Sai Sharan Korvi TEL 500 Voice Communications Week 1 Write Up Session Initiation Protocol Lab Submitted To: Prof Ronny Bull By: Sai Sharan Korvi Date: 09/10/2014 ABSTRACT: Softphone is usually a software which can be used

More information

Feature Reference. Features: Call Forwarding Call Waiting Conference Calling Outbound Caller ID Block Last Call Return VoiceMail

Feature Reference. Features: Call Forwarding Call Waiting Conference Calling Outbound Caller ID Block Last Call Return VoiceMail Feature Reference This document will provide you with information on and how to use the following features of your phone service with Standard Broadband. Features: Call Forwarding Call Waiting Conference

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

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

Basic configuration of the GXW410x with Asterisk

Basic configuration of the GXW410x with Asterisk Basic configuration of the GXW410x with Asterisk Please note that due to the customizable nature of both the GXW410x and Asterisk and the vast deployment possibilities, these instructions should be taken

More information

ACD Automatic Call Distribution

ACD Automatic Call Distribution ACD Automatic Call Distribution Right after Auto Attendants and Voice Mail, this is probably the most sought after telephony application and by far the most complicated. ACD is the application you reach

More information

Trixbox. by MATT FLORELL and JAMES PEARSON

Trixbox. by MATT FLORELL and JAMES PEARSON AsteriskNOW and Trixbox by MATT FLORELL and JAMES PEARSON AsteriskNOW Officially released by Digium in 2007 Formerly called PoundKey Based on Asterisk 1.4 Web-based admin using new http manager interface

More information

HPBX User Guide. Version 2.0.60 V ISIT W IGHTMAN. CA

HPBX User Guide. Version 2.0.60 V ISIT W IGHTMAN. CA HPBX User Guide Version 2.0.60 V ISIT W IGHTMAN. CA Table of Contents CALL FEATURES... 4 Placing a Call... 4 Receiving a Call... 4 Call Forwarding... 4 Recording a Call... 4 Parking a Call... 5 Do Not

More information

Asterisk: The Open Source PBX Solution Adam Olson Systems and network administrators typically deal with

Asterisk: The Open Source PBX Solution Adam Olson Systems and network administrators typically deal with 1 1 1 0 1 0 1 0 1 Asterisk: The Open Source PBX Solution Adam Olson Systems and network administrators typically deal with data and functionality such as email communications, Web and database applications,

More information

Unicorn60x0 IP ANALOG GATEWAY ASTERISK CONFIGURATION

Unicorn60x0 IP ANALOG GATEWAY ASTERISK CONFIGURATION Unicorn60x0 IP ANALOG GATEWAY ASTERISK CONFIGURATION BASIC CONFIGURATION OF THE Unicorn60x0 WITH ASTERISK Due to the various deployment possibilities of the Unicorn60x0 and Asterisk, this configuration

More information

PBX Administrator Guide

PBX Administrator Guide DDev8.10 1 PBX Administrator Guide URL for the site is https://hostedpbx.voxnetinc.com/login.php Enter you Username E mail address Enter your Password - Your extension The HOME page opens Here you can

More information

Personalizing Your Individual Phone Line Setup For assistance, please call 1-800-453-2251 ext. 102.

Personalizing Your Individual Phone Line Setup For assistance, please call 1-800-453-2251 ext. 102. Personalizing Your Individual Phone Line Setup For assistance, please call 1-800-453-2251 ext. 102. With these instructions, you will: 1. Record your greeting. 2. Configure your 911 setting. 3. Learn how

More information

How To Use A Voicenet Premium Hosted Pbx On A Cell Phone (For A Simplon) On A Simpson Or Ipa Or Ipbx (For An Ipb) On An Ipa (For Simpson)

How To Use A Voicenet Premium Hosted Pbx On A Cell Phone (For A Simplon) On A Simpson Or Ipa Or Ipbx (For An Ipb) On An Ipa (For Simpson) voicenet premium hosted pbx administrator s guide Welcome This document is for the Voicenet Premium Hosted PBX Service. This guide will help you to get the best out of your system and get it setup and

More information

TEL-500 Project Report. Auto-Dialler System. Voice Communications. Done By: - AKASH ANANTHANARAYANAN SANJEEVAKUMAR DEVARAJA

TEL-500 Project Report. Auto-Dialler System. Voice Communications. Done By: - AKASH ANANTHANARAYANAN SANJEEVAKUMAR DEVARAJA TEL-500 Project Report Auto-Dialler System Voice Communications Done By: - AKASH ANANTHANARAYANAN SANJEEVAKUMAR DEVARAJA 1 Index Page Contents Page Number Abstract 3 Introduction 4 Flow Chart 5 Resources

More information

NOC Workshop VoIP in the NOC labs SANOG10

NOC Workshop VoIP in the NOC labs SANOG10 NOC Workshop VoIP in the NOC labs SANOG10 New Delhi, India August 29 - September 2, 2007 Page 1 of 10 Lab Summary NOC Workshop, SANOG10 - VoIP in the NOC We only have limited time for this portion of the

More information

Micronet VoIP Solution with Asterisk

Micronet VoIP Solution with Asterisk Application Note Micronet VoIP Solution with Asterisk 1. Introduction This is the document for the applications between Micronet units and Asterisk IP PBX. It will show you some basic configurations in

More information

Asterisk Voicemail User Reference

Asterisk Voicemail User Reference Asterisk Voicemail User Reference Chapter 1. An Overview The Asterisk PBX offers a highly flexible, highly capable voice mail system. Among the features that it offers are: Three different types of greetings.

More information

F REQUENTLY A SKED Q UESTION

F REQUENTLY A SKED Q UESTION F REQUENTLY A SKED Q UESTION snom phones used together with Asterisk PBX software Date: Aug-03-2003 Author: Pertti Pikkarainen Document: faq-03-08-03-pp 1.0 Asterisk in general Asterisk is a complete PBX

More information

CALLPILOT VOICEMAIL USER GUIDE

CALLPILOT VOICEMAIL USER GUIDE CALLPILOT VOICEMAIL USER GUIDE SETTING UP YOUR MAILBOX First-Time Login o Dial 7002, the CallPilot voice mail access number o Enter your MAILBOX NUMBER then press o Enter your temporary password, (32 +

More information

7921G Wireless IP Telephone User Guide

7921G Wireless IP Telephone User Guide 7921G Wireless IP Telephone User Guide Deerfield Public Schools District 109 Line Definitions: 1. Line 1 Personal Line 4. Press the EXIT soft key twice to exit the Directory menu. Placing a Call: 1. Dial

More information

How To Set Up Virtual Fax On Zcoo (U20/50/60/100) On A Pc Or Macbook Or Ipod (U21/50) On An Ipod Or Ipo (U19/50 Or 60

How To Set Up Virtual Fax On Zcoo (U20/50/60/100) On A Pc Or Macbook Or Ipod (U21/50) On An Ipod Or Ipo (U19/50 Or 60 ZYCOO new generation IP Phone system---coovox Series (U20/50/60/100) support virtual fax. Virtual fax is an important feature to help enterprise reduce the cost and promote the efficient communication.

More information

IP Office 3.0 Intuity Emulation Mode Mailbox Users Guide

IP Office 3.0 Intuity Emulation Mode Mailbox Users Guide IP Office 3.0 Intuity Emulation Mode Mailbox Users Guide 40DHB0002USCW Issue 8d (2nd March 2005) Table of Contents Accessing Your Mailbox... 5 Logging In... 5 First Time Login... 6 Normal Login... 6 Avaya

More information

IP Office Embedded Voicemail Mailbox User Guide

IP Office Embedded Voicemail Mailbox User Guide Embedded Voicemail Mailbox User Guide 15-604067 Issue 07a - (06 July 2009) 2009 AVAYA All Rights Reserved. Notice While reasonable efforts were made to ensure that the information in this document was

More information

VIP (Traditional) Home Phone Calling Features

VIP (Traditional) Home Phone Calling Features VIP (Traditional) Home Phone Calling Features This document details each calling feature and its usage. Please note that this document applies only to our VIP Home Phone service for Kitchener-Waterloo,

More information

Technical Bulletin 43565 Using Polycom SoundPoint IP and Polycom SoundStation IP Phones with Asterisk

Technical Bulletin 43565 Using Polycom SoundPoint IP and Polycom SoundStation IP Phones with Asterisk Technical Bulletin 43565 Using Polycom SoundPoint IP and Polycom SoundStation IP Phones with Asterisk Introduction This document provides introductory information on how to use Polycom SoundPoint IP phones

More information

Desktop Reference Guide

Desktop Reference Guide Desktop Reference Guide 1 Copyright 2005 2009 IPitomy Communications, LLC www.ipitomy.com IP550 Telephone Using Your Telephone Your new telephone is a state of the art IP Telephone instrument. It is manufactured

More information

vsuite Home Phone Feature Reference

vsuite Home Phone Feature Reference vsuite Home Phone Feature Reference Below is a list of features that are included with your new vsuite telephone service. Should you have any questions or problems with a feature please feel free to contact

More information

Analog Business Phone User Guide

Analog Business Phone User Guide Analog Business Phone User Guide Emergency To dial 911 for emergency service, you must dial the Outside Access Digit first (usually 9) + 911. Customer Service / Technical Support (919) 459-2300, option

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

TEL 500 WRITE UP WEEK 8 FREE PBX SIP LAB SUBMITTED TO: PROF. RONNY BULL BY: ANUSHA ALIGAPALLY

TEL 500 WRITE UP WEEK 8 FREE PBX SIP LAB SUBMITTED TO: PROF. RONNY BULL BY: ANUSHA ALIGAPALLY TEL 500 WRITE UP WEEK 8 FREE PBX SIP LAB SUBMITTED TO: PROF. RONNY BULL BY: ANUSHA ALIGAPALLY DATE: 11/05/2014 ABSTRACT: Private Branch Exchange has multiple phones connected to it which are in the same

More information

IPitomy User Guide Business Phones Conferencing Voice Mail

IPitomy User Guide Business Phones Conferencing Voice Mail IPitomy User Guide Business Phones Conferencing Voice Mail Using Your Telephone Your new telephone is a state of the art IP Telephone instrument. It is manufactured by Aastra, the manufacturers of Northern

More information

IP Office Embedded Voicemail User Guide (IP Office Mode)

IP Office Embedded Voicemail User Guide (IP Office Mode) Embedded Voicemail User Guide (IP Office Mode) 15-604067 Issue 10b Standard (12 December 2011) 2011 AVAYA All Rights Reserved. Notice While reasonable efforts were made to ensure that the information in

More information

VoIP Workshop PacNOG3

VoIP Workshop PacNOG3 VoIP Workshop PacNOG3 Rarotonga, Cook Islands June 2007 Labs 1-4, Asterisk Lab 5, INOC-DBA Lab 6-7, Cisco Voice Gateways Lab 8, CODECS Page 1 of 13 Lab Summary Server logins are as you have set up in previous

More information

Using Polycom KIRK Wireless Server 300 or 6000 with Asterisk

Using Polycom KIRK Wireless Server 300 or 6000 with Asterisk Using Polycom KIRK Wireless Server 300 or 6000 with Asterisk Technical Bulletin Version 10 l August 2010 l 14205500 Introduction This document provides introductory information on how to use a Polycom

More information

Allworx Phone Functions

Allworx Phone Functions Voicemail Shortcuts The following shortcuts are available while listening to a voicemail message: *1 REPLY to this message. *6 Play the NEXT message. *2 FORWARD this message. *7 REWIND the message 10 seconds.

More information

First Time Easy Set-Up

First Time Easy Set-Up First Time Easy Set-Up After log in, set up the following five options for optimum performance. 1 2 3 4 5 Change Your Password:...[#][7][1] Required to Log In as a Subscriber. Password length can be from

More information

Voice Mail User Guide

Voice Mail User Guide Voice Mail User Guide IP COMMUNICATIONS PLATFORM FOR THE SMALL BUSINESS 1 Specifications subject to change without notice. Facilities described may or may not be supported by your network. Opera Flexicom

More information

Online Tools. CommPortal. Go to http://myphone.bayring.com. User Name: Your 10-digit telephone number (no dashes) Password: Your voice mail password

Online Tools. CommPortal. Go to http://myphone.bayring.com. User Name: Your 10-digit telephone number (no dashes) Password: Your voice mail password CommPortal Go to http://myphone.bayring.com User Name: Your 10-digit telephone number (no dashes) Password: Your voice mail password Summary Click here to manage forwarding. Messages & Calls You can play

More information

Applications between Asotel VoIP and Asterisk

Applications between Asotel VoIP and Asterisk Applications between Asotel VoIP and Asterisk This document is describing the configuring manner of registering and communicating with Asterisk only. Please visit the official WEB of Asterisk http://www.asterisk,

More information

Welcome to your new ShoreTel 230 voice over IP telephone.

Welcome to your new ShoreTel 230 voice over IP telephone. ShoreTel 230 Table of Contents Preparing for your new phone:... 3 Set up:... 3 Record Multiple Greetings... 4 Retrieving Voice Mail... 5 ShoreTel Call Manager... 6 Call Manager Voice Mail... 8 Call Manager

More information

Asterisk & ENUM. Extending the Open Source PBX. Michael Haberler, IPA Otmar Lendl, nic.at

Asterisk & ENUM. Extending the Open Source PBX. Michael Haberler, IPA Otmar Lendl, nic.at Asterisk & ENUM Extending the Open Source PBX Michael Haberler, IPA Otmar Lendl, nic.at Why a ENUM-enable a PBX? your PBX doubles as an IP/PSTN gateway for your existing numbers becomes a dual contact

More information

Khomp KGSM-USB SPX and Elastix Server

Khomp KGSM-USB SPX and Elastix Server Khomp KGSM-USB SPX and Elastix Server Setup Guide http://www.elastix.org 1.0 Setup Diagram Figure 1-1 is a setup diagram for a single Khomp KGSM-USB SPX Interface Card configuration. Figure 1-1. Setup

More information

How To Use A Cell Phone On A Sim Sims 2.2 (Sprinting) And Sims 1 (Cell Phone) With A Sims 3.2.2 On A Iphone Or Ipod) With An Ipod

How To Use A Cell Phone On A Sim Sims 2.2 (Sprinting) And Sims 1 (Cell Phone) With A Sims 3.2.2 On A Iphone Or Ipod) With An Ipod LINKSYS SPA941 / SPA942 User Guide Emergency To dial 911 for emergency service, you must dial the Outside Access Digit first (usually 9) + 911. Customer Service / Technical Support (919) 459-2300, option

More information

Phone Routing Stepping Through the Basics

Phone Routing Stepping Through the Basics Ng is Phone Routing Stepping Through the Basics Version 2.6 Contents What is Phone Routing?...3 Logging in to your Ifbyphone Account...3 Configuring Different Phone Routing Functions...4 How do I purchase

More information

Telesystem Visual Voicemail ios/apple User Guide

Telesystem Visual Voicemail ios/apple User Guide Telesystem Visual Voicemail ios/apple User Guide Visual Voicemail - ios/apple The Visual Voicemail app allows you to listen/delete/read your messages 1 from your ios device. Before downloading the app

More information

Contents. Page. Page 2

Contents. Page. Page 2 C 2012 Contents Recording an Auto Attendant Greeting... 3 Auto Attendant Overview... 3 To Record or Change an Auto Attendant Greeting... 3 From any IP phone in Company Network... 3 Business Hour Menu...

More information

Wildix W04FXO Whitepaper

Wildix W04FXO Whitepaper Wildix W04FXO Whitepaper Thanks to Wildix W04FXO gateway, you can enchance your legacy PBX with Unified Communications capabilities. You can connect up to 4 lines to the W04FXO, each of them can be set

More information

Key Connected Office Voice User Reference Guide

Key Connected Office Voice User Reference Guide Key Connected Office Voice User Reference Guide 02/10/2016 031114/FT/13v1/EX Page 0 Key System User Reference Guide Table of Contents PLACING/RECEIVING CALLS... 1 Answer a Call... 1 Dialing a Number or

More information

Auto Attendant or IVR Setup Guide DigiCloud IP PBX Solution

Auto Attendant or IVR Setup Guide DigiCloud IP PBX Solution Auto Attendant or IVR Setup Guide DigiCloud IP PBX Solution Auto Attendant DigiCloud Auto Attendant is a flexible utility designed to greet callers and transfer them either to an existing DigiCloudSwitch

More information

one Managing your PBX Administrator ACCESSING YOUR PBX ACCOUNT CHECKING ACCOUNT ACTIVITY

one Managing your PBX Administrator ACCESSING YOUR PBX ACCOUNT CHECKING ACCOUNT ACTIVITY one Managing your PBX Administrator ACCESSING YOUR PBX ACCOUNT Navigate to https://portal.priorityonenet.com/ and log in to the PriorityOne portal account. If you would like your web browser to keep you

More information

Voicemail. Advanced User s Guide. Version 2.0

Voicemail. Advanced User s Guide. Version 2.0 Advanced User s Guide Version 2.0 Contents Introduction to the Documentation... 3 About the Documentation... 3 Ifbyphone on the Web... 3 Logging in to your ifbyphone Account... 3 Setting Up a Voice Mailbox...

More information

Memorial University. User s Guide

Memorial University. User s Guide Memorial University VoIP Voicemail User s Guide Memorial University VoIP Voicemail User s Guide INTRODUCTION... 2 TUTORIAL.... 2 HOW TO LOG INTO YOUR MAILBOX.... 3 CHANGING YOUR PASSWORD. 3 RECORDING YOUR

More information

User Guide. for the. Coral. Phone System. and. T3 Voice Mail System

User Guide. for the. Coral. Phone System. and. T3 Voice Mail System User Guide for the Coral Phone System and T3 Voice Mail System July 2010 Accessing Help on Using the Phone System Help Desk 581-4000 option 1 The following materials may be found on-line: The Coral User

More information

Baylor College of Dentistry

Baylor College of Dentistry Audix Instructions Baylor College of Dentistry Texas A&M University System Health Science Center Facilities Services PROPERTY OF BAYLOR COLLEGE OF DENTISTRY Table of Contents GENERAL INFORMATION... 2 Use

More information

Telesystem Visual Voicemail Android User Guide

Telesystem Visual Voicemail Android User Guide Telesystem Visual Voicemail Android User Guide Visual Voicemail - Android The Visual Voicemail app allows you to listen/delete/read your messages 1 from your Android device. Before downloading the app

More information

Extension Manual User portal, Dial codes & Voice mail for 3CX Phone System Version 6.0

Extension Manual User portal, Dial codes & Voice mail for 3CX Phone System Version 6.0 Extension Manual User portal, Dial codes & Voice mail for 3CX Phone System Version 6.0 Copyright 2006-2008, 3CX ltd. http://www.3cx.com E-mail: info@3cx.com Information in this document is subject to change

More information

NORTHERNTEL BUSINESS. Voice Messaging. changing the way you do business. Centrex. User s Guide: 1-888-360-8555 northerntel.

NORTHERNTEL BUSINESS. Voice Messaging. changing the way you do business. Centrex. User s Guide: 1-888-360-8555 northerntel. NTHERNTEL BUSINESS changing the way you do business Centrex User s Guide: Voice Messaging -888-0-8 northerntel.ca/business To activate the NorthernTel Centrex Voice Messaging for the first time: To access

More information

UM8000 Voicemail System Administration Guide

UM8000 Voicemail System Administration Guide UM8000 Voicemail System Administration Guide CUSTOMER INFORMATION: Phone System (SV8100) IP Address: User Name: Password: Voicemail (UM8000) IP Address: Login ID: Password: Logging into the Voice Mail

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

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

IP Office Release 7.0 IP Office Embedded Voicemail User Guide

IP Office Release 7.0 IP Office Embedded Voicemail User Guide IP Office Embedded Voicemail User Guide 15-604067 Issue 09a - (21 February 2011) 2011 AVAYA All Rights Reserved. Notices While reasonable efforts have been made to ensure that the information in this document

More information

1 VoIP/PBX Axxess Server

1 VoIP/PBX Axxess Server - 1 1 VoIP/PBX Axxess Server The Axxess Server supports comprehensive Voice Over Internet Protocol network services, which are based on the Open Source Asterisk VoIP software. The Axxess Server VoIP telephony

More information

RiOffice Users Manual

RiOffice Users Manual RiOffice Users Manual Rio Networks 9/23/2009 Contents Available Services... 4 Core PBX Features... 4 Voicemail Features... 4 Call Center Features... 4 Call Features... 4 Using Your Phone... 5 Phone Layout...

More information

HELPFUL HINTS FOR VOIP PHONES

HELPFUL HINTS FOR VOIP PHONES HELPFUL HINTS FOR VOIP PHONES TO LEAVE A MESSAGE IN MAILBOX WITHOUT CALLING THE NUMBER ACCESS THE LINE (GET DIAL TONE) - PRESS STAR DIAL 5 DIGIT NUMBER TO TRANSFER A CALL WITHOUT ANNOUNCING WHOSE CALLING

More information

OmniTouch 8400 Instant Communications Suite. My Instant Communicator for Microsoft Outlook User guide. Release 6.7

OmniTouch 8400 Instant Communications Suite. My Instant Communicator for Microsoft Outlook User guide. Release 6.7 OmniTouch 8400 Instant Communications Suite My Instant Communicator for Microsoft Outlook User guide Release 6.7 8AL 90243USAD ed01 Sept 2012 Table of contents 1 MY INSTANT COMMUNICATOR FOR MICROSOFT OUTLOOK...

More information

3COM 35 SERIES IP PHONES QUICK REFERENCE-6W100

3COM 35 SERIES IP PHONES QUICK REFERENCE-6W100 3COM 35 SERIES IP PHONES QUICK REFERENCE-6W100 Your 3Com IP Phone must be configured to work in an IP network. Typically, your administrator assigns IP parameters, including an IP address, phone extension

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

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

OfficeServ 7100 IP-PBX. SIP Trunking using the Optimum Business Sip Trunk Adaptor and the Samsung

OfficeServ 7100 IP-PBX. SIP Trunking using the Optimum Business Sip Trunk Adaptor and the Samsung SIP Trunking using the Optimum Business Sip Trunk Adaptor and the Samsung OfficeServ 7100 IP-PBX 1 Table of Contents 1. Overview 3 2. Prerequisites 3 3. OfficeServ 7100 PBX Configuration 3 3.1 Network

More information

Cisco Unity Voice Mail-

Cisco Unity Voice Mail- Cisco Unity Voice Mail- Unity Voice Mail is a voice storage and message system. It will answer your calls, deliver your personal greeting and take messages for you. Unity Voice Mail is a combination of

More information

USE OF THE PHONE SERVICE AFTER DELIVERY OF THIS DOCUMENT CONSTITUTES YOUR ACKNOWLEDGEMENT OF THE E911 NOTICE ABOVE.

USE OF THE PHONE SERVICE AFTER DELIVERY OF THIS DOCUMENT CONSTITUTES YOUR ACKNOWLEDGEMENT OF THE E911 NOTICE ABOVE. E911 Notice This notice is required by the rules of the Federal Communications Commission. The Net2Phone Office Phone Service (the Phone Service ) may have E911 limitations specified below: In order for

More information

SmartVoice. PRI, CAS & SIP DID Features. Quick Reference Feature Guide

SmartVoice. PRI, CAS & SIP DID Features. Quick Reference Feature Guide Quick Reference Feature Guide SmartVoice PRI, CAS & SIP DID Features Quick Reference CODE FUNCTION Activate 72 76 78 94 67 82 21 40 98 22 55 62 Feature Access Code Calls (Always) Busy Call Forward No Answer

More information

Hosted VoIP User Guide

Hosted VoIP User Guide Hosted VoIP User Guide Cisco 500 series Handset Cisco 500 series handset 1 Hosted VoIP Services Welcome to GCI Hosted VoIP services. Detailed below is a basic user guide outlining the simplicity of the

More information

IP Office Technical Tip

IP Office Technical Tip IP Office Technical Tip Tip No: 215 Release Date: 7 November 2008 Region: GLOBAL Hunt Group Voicemail Targeting This Technical Tip explains the expected behavior of Hunt Group Voicemail operation with

More information

A Guide to Connecting to FreePBX

A Guide to Connecting to FreePBX A Guide to Connecting to FreePBX FreePBX is a basic web Graphical User Interface that manages Asterisk PBX. It includes many features available in other PBX systems such as voice mail, conference calling,

More information

Getting Started with UM

Getting Started with UM Getting Started with UM PREFACE Welcome to Exchange Unified Messaging. This system will replace the legacy voice mail system and provide additional functionality. Our Exchange Servers will provide voice

More information

Graphical LCD. Dial. Line 1. Menu. Messages TUV 7 8 9 OPER. Dial Pad Volume Up/Down

Graphical LCD. Dial. Line 1. Menu. Messages TUV 7 8 9 OPER. Dial Pad Volume Up/Down User Guide. Thank you for choosing our Cloud9 hosted phone solution. This user guide will provide everything you need to know in how to use your new system with the Polycom Soundpoint 331/335 desktop phone

More information

Voice Portal and Auto Attendant ADMIN GUIDE

Voice Portal and Auto Attendant ADMIN GUIDE Voice Portal and Auto Attendant ADMIN GUIDE Virtual PBX Broadsoft Voice Portal and Auto Attendant ADMIN GUIDE Virtual PBX Broadsoft CONTENTS 1.0 Voice Portal 1 1.1 Overview 1 1.2 Accessing Your Voice Portal

More information

1. Login to www.ifbyphone.com with your User ID and password. Select Virtual Receptionist from the Basic Services tab.

1. Login to www.ifbyphone.com with your User ID and password. Select Virtual Receptionist from the Basic Services tab. Virtual Receptionist Virtual Receptionist is a hosted PBX auto attendant service with intelligent routing that automatically greets and routes phone calls based on your office schedule. It gives your company

More information

Dramatically simplifying voice and data networking. IVR Editor HOW-TO Guide

Dramatically simplifying voice and data networking. IVR Editor HOW-TO Guide Dramatically simplifying voice and data networking IVR Editor HOW-TO Guide 2 edgebox How-To Guide IVR Editor HOW-TO Guide Table of Contents Introduction... 3 IVR...3 The edgebox IVR Editor...3 Understanding

More information

ACD Manual. Version 3.1 for SV8100 R8

ACD Manual. Version 3.1 for SV8100 R8 ACD Manual Version 3.1 for SV8100 R8 September 2012 Contents What is ACD?... 4 Setting up ACD for the First Time... 5 Using PC Pro Wizards... 5 Determining When Calls can be delivered to ACD Groups...

More information

Phone & Voicemail Instructions

Phone & Voicemail Instructions General Phone Tips To transfer a call to another line: 1. Press the Conf button 2. Dial the extension you wish to conference 3. Wait for the person to answer 4. Press Conf again to connect the two calls

More information

Telephone Instructions. Auto Dial

Telephone Instructions. Auto Dial Telephone Instructions Auto Dial The AUTO DIAL button is one that is programmed into a key. Some of you may have this button (or several buttons) programmed on the phone by the IS Dept. To store an AUTO

More information

IP-PBX Quick Start Guide

IP-PBX Quick Start Guide IP-PBX Quick Start Guide Introduce... 3 Configure and set up the IP-PBX... 4 How to change the IP address... 7 Set up extensions and make internal calls... 8 How to make calls via the FXO port... 10 How

More information

ADMINISTRATOR GUIDE Call Queuing Administrator Guide V 2.0. 8x8 Call Queuing. Administrator Guide. Version 2.0 February 2011

ADMINISTRATOR GUIDE Call Queuing Administrator Guide V 2.0. 8x8 Call Queuing. Administrator Guide. Version 2.0 February 2011 8x8 Call Queuing Administrator Guide Version 2.0 February 2011 Table of Contents Introduction...3 How an 8x8 Call Queue Works...4 Example: Primary and Secondary Queue Extension Group...4 Getting Started...5

More information

Call Center, Quick Start

Call Center, Quick Start SANOG XXI Call Center, Quick Start Anowar Hasan Sabir, BDCOM Online Ltd. Bangladesh Session Goal To provide you a brief idea about ip contact center. and guide you to setup your first very basic ip contact

More information

Auto Attendant User Guide

Auto Attendant User Guide Auto Attendant User Guide Specifications subject to change without notice. Facilities described may or may not be supported by your network. This documentation refers to software version 14.183 for hardware

More information

Information Systems Cisco 7940/7942 IP Phone Quick Reference Guide

Information Systems Cisco 7940/7942 IP Phone Quick Reference Guide Information Systems Cisco 7940/7942 IP Phone Quick Reference Guide Contents Page: Cisco 7940/7942 IP Phone Quick Reference Guide Contents 2 Introduction 3 Phone Overview 3 How Do I: 4 Place a Call? 4 Put

More information

Anonymous Call Rejection

Anonymous Call Rejection Contents Anonymous Call Rejection 4 Call Block 5 Call Forward 6-7 Call Return 8 Call Waiting 9 Caller ID 10-11 Do Not Disturb 12 Find Me 13 Selective Call Forwarding 14 Speed Dial 15 Three-Way Calling

More information

NAGARJUNA KARNATI. NCS416/TEL500 Lab. Lab Write-Up (8) [FreePBX SIP lab write-up]

NAGARJUNA KARNATI. NCS416/TEL500 Lab. Lab Write-Up (8) [FreePBX SIP lab write-up] NAGARJUNA KARNATI NCS416/TEL500 Lab Lab Write-Up (8) [FreePBX SIP lab write-up] Lab Overview For this lab to work on PBX, we changed the PC IP address from 10.107.6.68 to 10.107.6.69. Here we followed

More information

Information Systems Cisco 7965 IP Phone Quick Reference Guide

Information Systems Cisco 7965 IP Phone Quick Reference Guide Information Systems Cisco 7965 IP Phone Quick Reference Guide Contents Cisco 7965 IP Phone Quick Reference Guide Contents Page 2 Introduction 3 Overview of Phone 3 How Do I: 4 Place a Call? 4 Put a Call

More information

Extension Manual. User portal, Dial codes & Voice mail for 3CX Phone System Version 7.0

Extension Manual. User portal, Dial codes & Voice mail for 3CX Phone System Version 7.0 Extension Manual User portal, Dial codes & Voice mail for 3CX Phone System Version 7.0 Copyright 2006-2008, 3CX ltd. http:// E-mail: info@3cx.com Information in this document is subject to change without

More information

Weave Phone User Guide (VVX 310)

Weave Phone User Guide (VVX 310) (VVX 310) Getting Started: Answering a Call: Simply pick up the handset and begin speaking. Placing a Call (2 options): 1. Pick up the handset and dial - OR 2. Dial the number and hit the Dial button (goes

More information

Contents 1. Setting up your Phone Phone Setup Phone Usage 2. User Portal 3. Softphone for your computer 4. Faxing

Contents 1. Setting up your Phone Phone Setup Phone Usage 2. User Portal 3. Softphone for your computer 4. Faxing User Guide 1 Contents 1. Setting up your Phone Phone Setup Phone setup instructions Recording Voicemail Greeting and Voicemail Menu Testing tools Phone Usage Call Transfer, Call Forwarding and Do Not Disturb

More information

PrettyMay Call Center for Skype

PrettyMay Call Center for Skype PrettyMay Call Center for Skype User Guide Released 4i Copyright 2005-2010 PrettyMay Team. All Rights Reserved www.prettymay.net 1 Contents Preface... 4 How to use this guide... 5 Finding Out What s New...

More information

Hosted Phone System User Guide

Hosted Phone System User Guide Hosted Phone System User Guide GXP-2020 Phone System GXP-2010 Phone System Agency Number: 1234 585 Lifetime Street Sunny, FL 10024 904-646-5837 Last Updated 6/25/2009 User friendly guide to using your

More information

Cisco IP Phone Models 7941 and 7945 Quick Reference Guide December 23, 2011

Cisco IP Phone Models 7941 and 7945 Quick Reference Guide December 23, 2011 Emergency Calls Dial 911 or 3 911 Cisco IP Phone Models 7941 and 7945 Quick Reference Guide December 23, 2011 Place a Call Lift handset (or press the Speaker button, the line button, or New Call soft key)

More information

ASTERISK. Goal. Prerequisites. Asterisk IP PBX Configuration

ASTERISK. Goal. Prerequisites. Asterisk IP PBX Configuration ASTERISK SIP Trunking using Optimum Business SIP Trunk Adaptor and the Asterisk IP PBX Version 1.2.10 Goal The purpose of this configuration guide is to describe the steps needed to configure the Asterisk

More information

Hosted PBX End User Training Guide For the Polycom Soundpoint IP 321, 331 and 335 Phone

Hosted PBX End User Training Guide For the Polycom Soundpoint IP 321, 331 and 335 Phone Hosted PBX End User Training Guide For the Polycom Soundpoint IP 321, 331 and 335 Phone HOSTED PBX END USER TRAINING GUIDE ACCESSING VOICEMAIL To retrieve your voicemail, press the Menu button, button

More information

IP Office 4.2 Embedded Voicemail Mailbox

IP Office 4.2 Embedded Voicemail Mailbox Embedded Voicemail Mailbox 15-601067 Issue 06a - (29 June 2008) 2008 AVAYA All Rights Reserved. Notice While reasonable efforts were made to ensure that the information in this document was complete and

More information