Asterisk CTI settingsSupportCenter Plus provides Computer Telephony Integration (CTI), a technology that allows computer systems to interact with telephones. CTI enables screen popping in SupportCenter Plus, where upon receiving calls, details such as, caller's Name and Contact Number, pop up on the screen. This can be viewed by Support Reps, when they log into the application. This document walks you through the entire process of installing and configuring Asterisk PBX, tested with latest version Asterisk 13.7.2 and below. The following topics are discussed in this document:
2. Configuring the Asterisk Server 3. Configuring the SIP Softphone 4. Configuring Telephony Server Settings 1. Installing AsteriskAsterisk is predominantly for Linux machines. Anyhow, it works for CentOS and Ubuntu, as well. Follow the steps one by one to install Asterisk in your Linux machine. a) Go to "/usr/src/" directory and download the required version of Asterisk from the website: http://www.asterisk.org/downloads/asterisk/all-asterisk-versions. Example: wget http://downloads.asterisk.org/pub/telephony/asterisk/asterisk-13-current.tar.gz b) Extract the downloaded tar file as follows: tar zxvf asterisk* c) Navigate to the folder created after extracting the tar file, as mentioned below: cd /usr/src/asterisk* d) Execute the following command: ./configure && make menuselect && make && make install && make samples && make config e) Navigate to "/etc/asterisk". Check if all the configuration files (.conf files) are available there. Now, Asterisk is successfully installed and the server has started. Refer the website http://www.voip-info.org/wiki/view/Asterisk+Step-by-step+Installation for more details. 2. Configuring the Asterisk ServerThree files located in /etc/asterisk/ have to be modified as follows: a) manager.confAsterisk can be connected to Asterisk Manager Interface (AMI) via a Manager. The manager.conf is the configuration file that holds information such as, the list of users allowed to connect to the AMI, their secrets (passwords), the IP's from which they can connect, their privileges, etc. Following is a simple sample configuration: 1. [general] ; the name of the main default context - it must not be changed 2. enabled = yes ; By default is set to "no". Must be set it to "yes" in order for the AMI to work 3. port = 5038 ; The port to which the AMI will listen 4. bindaddr = 0.0.0.0 ; This binds the AMI to all the IPs of the server (0.0.0.0 binds to all) 5. [manager_username] ; The username to identify when connecting to the AMI at log on 6. secret = manager_pwd ; The password to enter at log on 7. permit=0.0.0.0/0.0.0.0 ; The IPs that the user manager_username will be able to connect from (0.0.0.0/0.0.0.0 permits all) 8. read = system,call,log,verbose,command,agent,user,originate ; read permissions for the user manager_username 9. write = system,call,log,verbose,command,agent,user,originate ; write permissions for the user manager_username Refer the website http://www.voip-info.org/wiki/view/Asterisk+config+manager.conf for more details. b) sip.confThe sip.conf is the SIP (Session Initiation Protocol) channel configuration file that contains the configuration for the SIP channel driver, chan_sip.so. It also has the information and credentials, required for a telephony device to contact and interact with Asterisk. 1. [general] ; Defines the default configuration for every user and peer 2. context = default ; The context as defined in extensions.conf for incoming calls 3. bindport = 5060 ; UDP Port to bind to (SIP standard port is 5060) 4. bindaddr = 0.0.0.0 ; IP address to bind to (0.0.0.0 binds to all) 5. srvlookup = yes ; Enable DNS SRV lookups on outbound calls 6. [heather] ; SIP user 1 7. type = friend ; A SIP entity which can place calls and to which Asterisk can place calls (Both incoming and outgoing) 8. context = default 9. username = heather ; This declares that our user will be named 'heather' 10. secret=3294 11. host = dynamic ; Enables the telephone to connect from any IP address 12. callerid= "Heather Graham" 13. [jeniffer] ; SIP user 2 14. type = friend 15. context = default 16. username = 3166 17. secret=3166 18. host = dynamic 19. callerid="Jeniffer Doe" 20. [shawn] ; SIP user 3 21. type = friend 22. username = 3023 23. secret=3023 24. context = default 25. host = dynamic 26. callerid="Shawn Adams" Refer the website http://www.voip-info.org/wiki/view/Asterisk+config+sip.conf for more details. c) extensions.confThe configuration file "extensions.conf" contains the "dial plan" of Asterisk and the master plan of control or execution flow for all of its operations. It controls the way by which the incoming and outgoing calls are handled and routed. 1. [general] 2. autofallthrough=yes 3. [default] ; Context name 4. exten => 3294,1,Dial(SIP/heather) ; Syntax: Dial(protocol/user) 5. exten => 3166,1,Dial(SIP/jeniffer) 6. exten => 3023,1,Dial(SIP/shawn) Each execution step in the extension is written in this format: exten =>
exten => 3294,1,Dial(SIP/heather) implies that when dialing 3294, Asterisk will Dial the user heather through SIP protocol. Refer the website http://www.voip-info.org/wiki/view/Asterisk+config+extensions.conf for more details.
Restarting the Asterisk Server: Do the following: 1) Execute the command asterisk -r to connect to the asterisk CLI. 2) In CLI, execute the command core stop now to stop the Asterisk server. The server will be stopped and the CLI will be closed. 3) Execute asterisk start to start the Asterisk server. All the configuration file changes will be applied once the server is restarted.
3. Configuring the SIP SoftphoneEnsure that the Asterisk has been installed properly, with the SIP users defined. 1. SJPhonea) Download and run the installation file from the website: http://www.sjphone.org/sjp.html, to install the SJPhone in your machine. b) Open the SJPhone. Go to "Menu -> Options".
c) Select the Profiles tab and click New to create a new profile. Enter the Asterisk server details and the SIP user credentials.
d) Give a Profile name and File name for your reference. Choose a Profile type and that must be Call through SIP Proxy. Click OK.
e) The Profile Options dialog box opens up. No changes are required to be done here.
f) Click the Initialization tab and ensure the check boxes are checked as shown in the below image.
g) [This is the important step where the Asterisk server settings are provided.] Click the SIP Proxy tab. In Domain/Realm text box, enter the IP Address of the machine, where the Asterisk is running. You can also enter the Proxy settings, if required. Click OK.
h) The Service: PBX testing dialog box shows up. Give the SIP username (Account) and Password. This is the account information used to login. Click OK.
The profile is set now. The Asterisk server details and the SIP user account information have been successfully added. Put the PBX testing profile in use, for the SJPhone to establish a connection to the server. Click OK.
Upon successful connection establishment, the following registered as message will be shown. The SJPhone will be now able to place and receive calls.
Note: To register with another SIP user account, go to the Profiles tab and click Initialize to provide the required account details. 2. X-Litea) Install X-Lite in your machine by downloading and running the relevant installation file from the website: http://www.counterpath.com/x-lite-download. b) Open the download X_Lite application and go to "Softphone -> Account Settings".
c) Provide the following details:
Provide Proxy details (if required), under the Domain Proxy section. Click OK.
d) You will see the below window, with your account details enabled in X-Lite.
4. Configuring Telephony Server SettingsTo establish connection between SupportCenter Plus and the Asterisk server, go to "Admin -> Global Settings -> Telephony Server Settings". Configure the settings as per the below instructions: 1. Telephony Server: Select Asterisk. If the entered server details are correct, clicking Save will automatically establish a connection to the server and enable call alerts.
Note: 1. In case, if there is a problem with connecting to the Asterisk, ensure the following: a) if the server is reachable b) if the username/password is correct 2. It is mandatory to restart SupportCenter Plus application, if any of the configuration files has been modified in the Asterisk. 5. Enabling Screen Popup:Follow the below instructions to enable screen popping: 1. Go to "Admin -> Global Settings -> Support Reps". 2. Edit the required Support Rep details such as, Name, E-mail, etc. 3. Tick the Enable Screen Popup check box and provide the below details: a) Sip User: The user account as mentioned in the sip.conf file for Asterisk PBX. b) Extension Number: The extension number of the Support Rep, for which the popup has to be shown, upon receiving calls. 4. Provide Login Details for the Support Rep. 5. Click Save.
6. Screen popping:The Support Rep will receive a popup, whenever his extension number gets a call. Note: The Support Rep has to login to the application with his credentials to see the popup. Below is a sample picture of the screen popup.
7. Uninstalling Asterisk:To uninstall Asterisk, go to the installation location, i.e., "/usr/src/asterisk*" and execute the following command: make uninstall-all |