Skip to main content

Vicidial showing UID as CID - Loopback Dialplan to remove UID

 

Vicidial showing UID as CID - Loopback Dialplan to remove UID


Topic: Vicidial showing UID instead of CID and Loopback Dialplan

    In vicidial while dialing out you may notice the UID as Caller ID or Caller Name, both in manual dial as well auto dial. Too remove this UID you have to use vicidial loopback Dialplan or your trunk provider should trim the UID from the SIP header.

    By default vicidial sets the campaign caller ID as Caller ID and UID as the Caller ID name, if your voip trunk provider not trimming the callerid name sent from vicidial, the customers will see the UID as the caller ID.



How to remove vicidial UID - CID?

    In Vicidial the UID which is showing caller ID can be removed by three ways , particularly for CANDADA dialing you have to remove the UID in From SIP Header.

Vicidial Loopback Dialplan
Another Asterisk server as Trunk or SBC
Trunk provider to Trim discard UID

Vicidial Loopback Dialplan

    Vicidial by default have the option called loopback trunk ,using the loopback trunk you can remove the UID added in Caller ID name before dialing out via Carrier

note: But using the loopback trunk dialing will increase the load on the system.

Steps to create loopback Dialplan.

    For vicidial loopback Dialplan you need to add the carrier with loopback Dialplan in vicidial admin portal and edit the extensions.conf in console for carrier Dialplan .

Step 1: Create Carrier with Loopback Dialplan entry

    Under vicidial carrier settings, add your carrier details with the below dial plan entry,

Consider your trunk name in account enry is [siptrunk1] and dial prfix used in campaign is 9988 and dialing to US numbers, if you are dialing other countries modify the dialplan , for more details on dialplan check my tutorial on dialplan entry

Dialplan entry

exten => _99881NXXNXXXXXX,1,AGI(agi://127.0.0.1:4577/call_log)
exten => _99881NXXNXXXXXX,n,NoOp(MY CALLERD !!!! ${CALLERID(all)})
exten => _99881NXXNXXXXXX,n,Set(_CALLERID(num)=${CALLERID(num)})
exten => _99881NXXNXXXXXX,n,Dial(${TRUNKloop}/999${EXTEN:4},55,Tto)
exten => _99881NXXNXXXXXX,n,Hangup()
exten => _9991NXXNXXXXXX,1,Goto(loopback-no-log,9${EXTEN:3},1)
exten => _9991NXXNXXXXXX,n,Hangup()

Step 2: Extension.conf for carrier dialplan

    Now you need to login the console either ssh to the server using putty or direct console access.
using nano or vi editor open the file extensions.conf

nano  /etc/asterisk/extensions.conf

now under the loopback-no-log context add the below Dialplan, which actually dials through your carrier

[loopback-no-log]
exten => _91NXXNXXXXXX,1,Set(CALLERID(name)=${CALLERID(num)})
exten => _91NXXNXXXXXX,n,Dial(SIP/siptrunk1/${EXTEN:1},,Tto)
exten => _91NXXNXXXXXX,n,Hangup()

save the file and reload the asterisk once

asterisk -rx "reload"

Solution 2: other SIP server as trunk

    You can use another SIP server like asterisk, open sips and create a trunk between the vicidial and the other SIP server, the Other SIP will be configured with the actual carrier sip settings to dialout, the vicidial will be registering to the other SIP server either via SIP trunk or IAX trunk.

Solution 3: Trim the Caller ID Name

    you may request your Trunk provider to trim the caller ID name sent by the vicidial, which is the easiest way, but few of the vendors wont supports this, is this case either use solution 1 or solution 2 mentioned in this article.

Comments

Popular posts from this blog

voice broadcast in vicidial Step by Step Guide

 Follow all below mention steps:- 1.  Open https://ttsmp3.com/   2.  Select Voice Indian English 3.  Type whatever you want to convert into voice.   4.  Read and confirm and then download as a MP3.   5.  Open downloaded file with wavepad and convert into 16bit Mono 8k PCM WAV. or you can use online audio converter from below mention link. site support .wav file only so you need to convert MP3 file to wav using below mention site. https://g711.org/   6.  Upload file to vicidial audio store.   7.  Manual copy file into /var/lib/asterisk/sound/ folder using winscp software. https://winscp.net/download/WinSCP-5.21.6-Portable.zip   8.  Copy campaign from existing Broadcast camp.   9.  Click on created camp and select details view then click on survey     select Survey First Audio File:- as audio file which we created in step 1 and submit.   10. Create list and select campaign as Newly created campaign broadcast, and change routing extensions.   11. Create user with same name of remote agent

Debian 11 Vicidial scratch install dynamic portal

  Step by step guide to scratch install the vidial dynamic portal in Debian 11 or ubuntu based vicidial scratch installations. If you have installed vicidial using scratch installation instead of using the default vicibox iso then you need to manually install and configure the dynamic portal , follow this blog tutorial to scratch install the vicidial dynamic portal . Here's the steps to install and configure the vicidial dynamic portal in scratch installations. Steps to install vicidial dynamic portal cd /usr/src git clone https://github.com/manish23k/vicidial-dynamicportal.git cd vicidial-dynamicportal chmod +x vici_dynportal.sh ./vici_dynportal.sh or you can install manually. Follow the below steps to install and configure the vicidial dynamic portal in your scratch installations, Step 1: Install the firewalld and ipset apt install firewalld apt  install ipset Step 2: Download the Dynamic portal files from my Github cd /usr/src/ mkdir dynamicportal cd dynamicportal wget ht

Vicidial Scratch installation Debian 11 with Asterisk 16, WebRTC and Dynamic Portal

  Vicidial Scratch installation Debian 11  Asterisk 16, WebRTC and Dynamic Portal apt update apt upgrade apt-get install git nano wget cd /usr/src/ git clone https://github.com/manish23k/Vici_Install_Scripts_Deb_11.git cd Vici_Install_Scripts_Deb_11/ chmod +x *.sh Run ./vici_install_deb_ast16.sh Install WebRTC ./vicidial-install-webrtc.sh Once Done with Configuration Secure Server with Vici Dynamic Portal Run ./vici_dynportal.sh