This documentaion provides a basic configuration to get FreeSwitch up and running with Plivo as the external SIP gateway. This documentation was written using a Debian Jessie GNU/Linux System running FreeSwitch 1.6.6.To get started with Zentrunk using FreeSwitch you would need to do the following:
To configure Freeswitch to connect to your Plivo Zentrunk, locate the root configuration of FreeSwitch on your machine. These locations vary from platform to platform.
For Debian Jessie GNU/Linux System, the root configuration is present at /etc/freeswitch/.
For Windows, the root configuration is located at C:\Program Files\FreeSWITCH\conf.
For Linux systems, it could be either of the following depending on your installation:
/usr/local/freeswitch/conf
/opt/freeswitch/conf
With the root configuration directory located, you must complete the following configurations:
Next, you should setup a Dial Plan to use the Plivo SIP Profile created in Step 1.
Create a new file named “02_zentrunk.xml” at /etc/freeswitch/dialplan/default/. If you already have a dialplan prefixed by 02, you can choose the another number.
The above dial plan has defined an extension for 11 digit US numbers like +1-(222)-(222)-2222. The outbound_caller_id_number field is inherited from vars.xml which would be set as the caller ID while making outbound calls. This extension is set to bridge to your SIP Profile “Plivo-outbound”.
FreeSwitch instances have default users and SIP passwords preconfigured. To prevent being hacked, we recommend you change the default password.Open vars.xml located at /etc/freeswitch/ and edit the following line:
Copy
Ask AI
<X-PRE-PROCESS cmd="set" data="default_password=set your password here"/>
This change is applicable to all users under /etc/freeswitch/directory/default/. If you want to change the password per user, then navigate to /etc/freeswitch/directory/default/ and edit 1000.xml (or any user of your choice).
Copy
Ask AI
<param name="password" value="set your password here"/>
Execute reloadxml in fs_cli utility after making changes to users xml.Note: Freeswitch has to be restarted if any changes were made to vars.xml.
When the account is successfully enabled on X-Lite, it is ready to make calls. Enter any valid 11 digit US number in your X-Lite and hit on the call button. This call would hit your freeswitch server first, then go through Plivo Zentrunk and finally reach the destination number.To know more about configuring X-lite for outbound calls, check the X-lite configuration guide
To configure the Freeswitch to connect to your Plivo inbound Zentrunk, first locate the root configuration of FreeSwitch on your machine.
These locations vary from platform to platform.
For Debian Jessie GNU/Linux System, the root configuration is present at /etc/freeswitch/.
For Windows, the root configuration is located at C:\Program Files\FreeSWITCH\conf.
For Linux systems, it could be either of the following depending on your installation -
/usr/local/freeswitch/conf
/opt/freeswitch/conf
With the root configuration directory located, there are three major configurations that needs to done:
Create a new file named “03_zentrunk.xml” at /etc/freeswitch/dialplan/default/. If you already have a dialplan prefixed by 03, you can choose the another number.
Use the XML Under the context =public
Copy
Ask AI
<extension name="inboundbridge" continue="true"> <condition field="destination_number" expression="^(\+)?your_destination_number$"> <action application="log" data=" Pleasewait we are connecting to plivo inbound NMS"/> <action application="set" data="bypass_media=true"/> <action application="export" data="sip_from_uri=${sip_from_uri}"/> <action application="bridge" data="user/1000"/> </condition></extension>
Values to be replaced:
Copy
Ask AI
^your_destination_number$= The destination number on which you want to receive the incoming call
Note: User ID & Authorization name will be `1000` and Value of Default password will be `1234`.
FreeSwitch instances have default users and SIP passwords preconfigured. To prevent being hacked, we recommend you change the default password.
Open vars.xml located at /etc/freeswitch/ and edit the following line:
Copy
Ask AI
<X-PRE-PROCESS cmd="set" data="default_password=set your password here"/>
This change is applicable to all users under /etc/freeswitch/directory/default/. If you want to change the password per user, navigate to /etc/freeswitch/directory/default/ and edit 1000.xml (or any user of your choice).
Copy
Ask AI
<param name="password" value="set your password here"/>
Execute reloadxml in fs_cli utility after making changes to users xml.
Note: Freeswitch has to be restarted if any changes were made to `vars.xml`.
When the account is successfully enabled on X-Lite, it is ready to receive calls. Dial the number provided in the “your_destination_number$” field and the calls will first hit the Plivo inbound zentrunk and then go through your FreeSWITCH to reach your endpoint.To know more about configuring X-lite for Inbound calls, check the X-lite configuration guide