asterisk auto dialing using call file

asterisk

asterisk auto dialing using call file Asterisk call files are structured files which, when moved to the appropriate directory, are able to automatically place calls using Asterisk. Call files are a great way place calls automatically without using more complex Asterisk features like the AGI, AMI, and dialplan, and require very little technical knowledge to … Read more

Vicidial Lead upload sample csv file

vicidial lea upload file

Vicidial Lead upload sample csv file Below is a standard vicidial lead csv/excel template to upload the data. Download link : ClickHere  refer the below video of reference Open the file in excel Fill the necessary fields (like , Phone, Phone code, Firstname , lastname etc) Save the file Now click the (save as) option from … Read more

Configure Allo 3rd gen PRI Card in VICIdial, Goautodial and Asterisk

allo-2nd-gen-4-port-pri-e1-t1-card

Configure Allo 3rd gen PRI Card in VICIdial, Goautodial and Asterisk based system Steps: 1. Uninstalling the existing Dahdi driver 2. Allo card Licensing 3. Installing the Allo patched Dahdi driver 4. configuring the Card Step 1: Uninstall the old dahdi drivers ssh the server via putty First check the dahdi modules installed by running … Read more

RAND : Asterisk function to choose a random number

asterisk

RAND : Asterisk function to choose a random number rand function is use to choose a random number in a range.  Range has to be set between minimum and maximum number. This would be useful in many scenario based on implementation logic. some of the examples are : Setting  of random caller id Setting of … Read more

how to set random caller ids on Asterisk based system

asterisk

Setting random caller IDs on an Asterisk-based system involves modifying the dial plan and potentially using an external script or function to generate random caller IDs. Here’s how you can achieve this: Read more How to save audio stream from Asterisk to a file via WebSocket How to set random caller IDs on the Asterisk-based … Read more

pointer example program in C

pointer c program example

pointer example program in C What would be the output of following pointer program written in c   main( ) { int a = 10, b = 20 ; swapr ( &a, &b ) ; printf ( “\na = %d b = %d”, a, b ) ; } swapr( int *x, int *y ) { … Read more

Introduction to Pointers in C

understanding c pointers

Introduction to Pointers in C Pointer Notation Consider the declaration, int i = 3 ; This declaration tells the C compiler to: Reserve space in memory to hold the integer value. Associate the name i with this memory location. Store the value 3 at this location. We may represent i’s location in memory by the … Read more

SELinux : Introduction to SELinux

understanding selinux

SELinux : Introduction to SELinux SELinux, or Security-Enhanced Linux, is a part of the Linux security kernel that acts as a protective agent on servers. In the Linux kernel, SELinux relies on mandatory access controls (MAC) that restrict users to rules and policies set by the system administrator. MAC is a higher level of access … Read more