Asterisk confbridge drop when marked user exit the conference

Hi, I want to create a conference using confbridge, in which marked user exit the conference call, conference should automatically drop. I have create a marked user and also enable end_marked=yes but still not working. Can anyone help here? Regards, Satya  

Asterisk dialpaln [context] : context in asterisk dialpaln

dialplan basic asterisk dialplan

Contexts Dialplans are broken into sections called contexts. Contexts are named groups of extensions, which serve several purposes. 1. Contexts keep different parts of the dialplan from interacting with one another. 2. An extension that is defined in one context is completely isolated from extensions in any other context, unless interaction is specifically allowed. 3. As a simple … Read more

reinstall, uninstall, upgrade : sangmoa wanpipe driver

sangmoa wanpipe driver reinstall upgrade

Sangoma Wanpipe Driver Reinstall or Uninstall 1. Check the existing wanpipe version installed. a. # wanrouter version 2. Change the directory to source code of installed version or Downloaded directory.Generally it would be /usr/src. If you want to reinstall and yet not downloaded latest version, you can get it from ftp://ftp.sangoma.com/linux/current_wanpipe/ a. # cd /usr/src/wanpipe-* … Read more

Time synchronization Error , Vicidial ,Goautodial

time synchronization error-goautodial vicidial

Why This Error?? The major cause for the time sync error are 1.The vicidial based system is using MeetMe conference , These MeetMe Conference Bridge requires a timing resources like Dahdi or Zaptel. if they are not loaded poperly then time sync error occurs 2.wrong System timing . different timing in server and agent systems … Read more

Asterisk AMI API Action Orginate: Orginate Asterisk manager Action

asterisk manager ami action orginate

Asterisk Manager API Action Originate Action: Originate Parameters: Channel: Channel on which to originate the call (The same as you specify in the Dial application command) Context: Context to use on connect (must use Exten & Priority with it) Exten: Extension to use on connect (must use Context & Priority with it) Priority: Priority to … Read more

Asterisk Dial () command

Asterisk dial command

What is command and how it works? One of Asterisk’s most valuable features is its ability to connect different callers to each other. This is especially useful when callers are using different methods of communication. For example, caller A might be communicating over the traditional analog telephone network, while user B might be sitting in … Read more

Email alert on disk space outage in linux

disk alert in linux

For Send mail Tutorial Click Here Need to be installed sendmail ( yum install sendmail) and mailx (yum install mailx) Create a shell script in linux. vi diskalert.sh #!/bin/sh support=”itsupport@xyz.com” # set alert level 90% is default ALERT=90 df -HP | grep -vE ‘^Filesystem|tmpfs|cdrom’ |   while read partition size used free perc mnt ; … Read more

Autodestruct on dialog….: Asterisk issue

WARNING[1812] chan_sip.c: Autodestruct on dialog ‘38617eb73184c21225d3133b398b0dc6@10.0.8.18:5060’ with owner SIP/1000-00000533 in place (Method: BYE). Rescheduling destruction for 10000 ms Solution: We resolved this by looking into the dialplan. It seems that we had a channel held open that Asterisk couldn’t destroy. These built up and Asterisk was unable to successfully make calls. A key thing I … Read more