similar to: softhangup

Displaying 20 results from an estimated 10000 matches similar to: "softhangup"

2010 Mar 30
2
Priority based softhangup
Hi, Is it possible to softhangup a channel based on priority. I mean I want to put some calls in higher priority lets say 100. If all channels are busy and somebody wants to dial an extension with priority higher than 100. How can softhangup drop a line which has priority less than 100? I will appreciate your valuable help. Thanks Smir
2010 Mar 03
1
911, channel full
Hi, I am trying to implement 911 funtionality in my PBX. A call should drop if all lines are busy. Here is my context nineoneone from extensions.conf [nineoneone] exten => s,1,Set(SET_EMERG_FLAG=0) exten => s,n(checkavail),ChanIsAvail(${EMERGENCY_TRUNK}) exten => s,n,Set(EMERGENCY=1,g) exten => s,n,Set(SET_EMERG_FLAG=1) exten => s,n(dial),Dial(${EMERGENCY_TRUNK}/${EMERGENCY_NUM})
2011 Apr 02
1
Problem getting TDM400P clone card to go off-hook and dial
I am having problems getting a Nicherons TDM400P wildcard clone to dial out. Everything appears to be configured correctly, but although I see call progress, it never seems to actually pick up the phone. (The following is a test of 911 emergency, where I substitute 811 [repair service] as the actual number dialed.) *CLI> -- Executing [911 at from-internal:1]
2009 Oct 15
4
PSTN to SIP line ratio
Hi, I am planning to deploy an Asterisk PBX for 100-200 users. I am not sure about PSTN incoming/outgoing line ratio for SIP users. I mean if you recall dial up internet the common line ratio is 1:10 (one line for 10 users on access server or an E1 for 300 users). Can somebody tell me what is the good ratio for incoming and outgoing analogue/ digital PSTN lines. Regards Smir
2005 Mar 25
2
911 & SoftHangup on SPA-3000
Hi, I have a SPA-3000 and would like to use the 911 recipe from http://www.voip-info.org/wiki-Asterisk+tips+911. So I took the simple recipe and modified it slightly: exten => 911,1,ChanIsAvail(SIP/potsoutbound) exten => 911,2,Dial(SIP/potsoutbound/911) exten => 911,3,Hangup() exten => 911,102,SoftHangup(SIP/potsoutbound) exten => 911,103,Wait(1) exten => 911,104,Goto(1) Now,
2011 Feb 04
1
SoftHangup on asterisk 1.8.2.3
I am trying to use SoftHangup in my dialplan, but it's either not working or I'm not using it correctly. when i'm on the console, i see: pbx1*CLI> core show channels Channel Location State Application(Data) SIP/vgw1-000000a2 2156181505 at inbound:1 Up AppDial((Outgoing Line)) SIP/143-0000009f s at macro-SaferSIPDial Up Dial(SIP/99302156181505 at vgw1,, 2 active
2011 Feb 04
1
keep.source when semicolons separate statements on the one line
The following is 'semicolon.Rnw' > \SweaveOpts{engine=R, keep.source=TRUE} > > <<xycig-A, eval=f, echo=f>>= > library(SMIR); data(bronchit); library(KernSmooth) > @ % > > Code for panel A is > <<code-xycig-A, eval=f, echo=t>>= > <<xycig-A>> > @ % Sweave("semicolon") yields the following 'semicolon.tex'
2009 Feb 28
2
clone X100p+dahdi dial out works only after receiving call
So, tweaking configs, rebuilding this and that... restarting, twiddling, it works (yeah!), but fails on re-boot to work at all. Consistently, though. I believe it comes down to this: I can call out only *after* I've received a call. So, cold boot. Then: modprobe dahdi modprobe wctc4xxp modprobe wcfxo dahdi: Telephony Interface Registered on major 196 dahdi: Version: 2.1.0.3
2009 Dec 29
1
identifying channel for softhangup
When I place an outbound call from asterisk 1.6.1.12 to a FXO port on my Cisco 1760V 12.4, the channel changes - seemingly incrementing: e.g., in the first call, below, the channel name is "SIP/vgw1-00000075" -- the second call (on the same FXO port after a soft hangup on the CLI) is "SIP/vgw1-00000077" How can I extract this information in the dialplan so that I can use
2008 Sep 05
1
dahdi & tdm400p: no luck
As best i could figure it out, I've installed dahdi and rc4. My TDM400P doesn't answer fxo or fxs. /etc/dahdi/system.conf: loadzone = us defaultzone=us fxoks=1,2 fxsks=4 /etc/asterisk/chan_dahdi.conf: [house-phones] context=internal ; Uses the [internal] context in extensions.conf signalling=fxo_ks ; fxo_ks Use FXO signalling for an FXS chanel dahdichan => 1 ;
2010 Aug 30
2
help with dialplan
Todd How do you have the context in the phones sip configs set? Bryant From: "Todd Reese" treese65 at gmail.com Hi all, I've been have problems with getting this system on line and would like to acquire some help with the extensions.conf. My current problem is that the phones won't dialout.on the VOIP lines listed as dialout1, dialout2, dialout3. This version of asterisk
2009 Jun 04
7
Asterisk AGI issues (at high load)
Hi, we are experiencing a strange issue and I am hoping someone can point me to the right direction or help out with some pointers. We have asterisk 1.6.0.6 with a sangome a104DE card. We have basically 4 T1's for a total of DAHDI 96 channels. We have an agi application (php) that acts as a kind of a calling card application. All users are SIP users that make calls and asterisk then bridges
2005 Jun 03
3
911 context, is this right?
I have 3 analog trunks zap/1, zap/4 and zap/5. zap/5 is the least used line. Would the following work for 911 calls? [e911] exten => 911,1,ChanIsAvail(Zap/1) exten => 911,2,Dial(Zap/1/911) exten => 911,3,Hangup() exten => 911,102,ChanIsAvail(Zap/4) exten => 911,103,Dial(Zap/4/911) exten => 911,104,Hangup() exten => 911,203,ChanIsAvail(Zap/5) exten =>
2005 Oct 04
4
Emergency calls - forcing through on channel
Hi Hypothetical but quite possible scenerio: Attempted emergency 911 call but all zap channels are already in use. Is there any way to hangup zap channels before dial(Zap/g1/911) or equivalent. AFAIK hangup doesn't except options so I CANNOT do something like hangup(Zap/g1) to clear zap channels before the dial statement - this is what i was hoping to do. So what do other people do?
2005 Jun 03
0
(no subject)
Rich, What about a combination of your excellent/intelligent suggestion & something like this: exten => 911,1,Dial(Zap/g17/${EXTEN}) exten => 911,2,SoftHangup(Zap/1-1) exten => 911,3,Wait(1) exten => 911,4,Goto(1) ... with the idea that if a line is not free, we forcible seize one. Probably not correctly written, but, do you "get" where I am going? How would I
2010 Jan 28
2
911, location
Hi there, I am running a PBX under asterisk 1.6. I have few FXO analogue lines connecting to PSTN. These lines are in a hunt group. I trying to make my extensions to dial 91, but this is a bit scary, I mean if somebody make an emergency call after hours and without completing call is not able to tell his/her location. How can I make 911 call center to know the exact location of my extension. I
2009 Sep 29
2
play audio file within an active call
Hi, I'm wondering if someone can share their thoughts on how to implement a system that periodically checks active channels which have been up for more than X minutes and plays/injects a sound file. The idea is to simply warn users that they've been on the phone for quite a while and maybe they should consider hanging up. If the call stays up for more than Y minutes, it is dropped
2003 Dec 02
3
How to restart * thru phone "when convenient"
Hi there, here is my attempt to initiate a "restart when convenient" from a software SIP phone. exten => 588,1,Answer exten => 588,2,Wait(1) exten => 588,3,Playback(restart-convenient) exten => 588,4,Wait(1) exten => 588,5,Authenticate(00000) exten => 588,6,System(/usr/sbin/asterisk -rx "restart when convenient") exten => 588,7,Hangup The problem: We
2003 Apr 30
2
oh323 failed to load
when i issue asterisk -vvv command i get this error please help regards Barbra [app_softhangup.so] => (Hangs up the requested channel) == Registered application 'SoftHangup' [codec_lpc10.so] => (LPC10 2.4kbps (signed linear) Voice Coder) == Registered translator 'lpc10tolin' from format 7 to 6, cost 50 == Registered translator 'lintolpc10' from format 6 to 7,
2005 Jan 03
3
Line-in as MOH source
Hello, Most traditional PBX-es have the ability to use external audio source (e.g. radio tuner) for music on hold. This is also useful because you can let your users listen to radio by dialing some extension. I wanted to achieve the same on asterisk, and chan_alsa seemed the logical choice. I installed ALSA drivers, connected the radio to line-in and added the folowing to extensions.conf: exten