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

Vicidial Scratch installation Alma -9

Step 1 – Download the dependencies   hostnamectl set-hostname xxxxxx.xxxxx.xxx ### Use YOUR SubDomain vi /etc/hosts ##Change domain name for actual server ip (xxx.xxx.xxx.xxx   complete domain name    subdomain only) timedatectl set-timezone Asia/Kolkata yum check-update yum update -y yum -y install epel-release yum update -y yum install git -y yum install -y kernel* #Disable SELINUX sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config     reboot Step 2 – Run the Script cd /usr/src/ git clone https://github.com/manish23k/vicidial-install-scripts cd vicidial-install-scripts chmod +x alma-rocky9-ast16.sh ./alma-rocky9-ast16.sh Or the Asterisk 18 version: chmod +x alma-rocky9-ast18.sh ./alma-rocky9-ast18.sh

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

How to delete old call logs and other logs in vicidial or goautodial.

Step 1 : SSH to the server using the Putty Step 2:   login to mysql by typing   mysql -p                    (if you dont know password try below command )               mysql -ucron -p1234 Step 3 : select the asterisk database by typing               use asterisk step 4: Run the below command to check total disk occupied by asterisk database                SELECT table_schema AS "asterisk", ROUND(SUM(data_length + index_length) / 1024 / 1024, 2) AS "Size (MB)" FROM information_schema.TABLES GROUP BY table_schema; Step 5 : Run the below command to check disk space consumed by each table in asterisk database SELECT table_name AS "Table", ROUND(((data_length + index_length) / 1024 / 1024), 2) AS "Size (MB)" FROM information_schema.TABLES WHERE table_schema = "asterisk" ORDER BY (data_length + inde...