search for: fastbusy

Displaying 20 results from an estimated 21 matches for "fastbusy".

2004 Dec 22
2
Can't Receive/Send Calls
...[102] disallow=all allow=ulaw type=friend host=dynamic dtmf=inband username=102 secret=testing123 context=home nat=no ; Extensions.conf [general] static=yes writeprotect=no [globals] MAINPHONE=SIP/101 FWDUSERID1=533990 FWD1USERNAME=Norman Zhang FWDPREFIX=* HOMENUMBER=XXXXXXXXXX ; Macros [macro-fastbusy] exten => s,1,Answer exten => s,2,Wait,1 exten => s,3,Playback(ss-noservice) exten => s,4,Wait(30) exten => s,5,Hangup [macro-dialoutsip] exten => s,1,SetCallerID(${FWDUSERID1}) exten => s,2,SetCIDName(${FWD1USERNAME}) exten => s,3,Dial(SIP/${FWDPREFIX}${ARG1}@fwd,70) exten...
2007 Aug 17
1
Connecting a GSM gateway to a FXO port
...rogress=yes progzone=nl busydetect=yes busycount=4 language=nl ; define channels context=binnenkomend signalling=fxs_ks channel => 1 ; pstn attached to port 1 This is the Dialplan fragment: exten => _87.,1,Wait(0.5) exten => _87.,n,Dial(Zap/1/${EXTEN:2},30,rtT) exten => _87.,n,Macro(fastbusy) exten => _87.,n,Hangup exten => _87.,102,Playback(tt-allbusy) [macro-fastbusy] exten => s,1,Answer exten => s,n,Wait,1 exten => s,n,Playback(vm-isunavail) exten => s,n,Wait(3) exten => s,n,Hangup -- Executing [870623027714 at home:1] Wait("SIP/kimura1-08236550&quo...
2003 Nov 24
11
Picking an open channel (FXO port) for outbound calls
...ing Asterisk system at home with two Digium X100P FXO cards. When my SIP phones want to dial-out I have them setup to grab the first analog card (Zap/1) with the following extensions.conf segment: ==== snippet ==== ; Outbound exten => _9.,1,Dial(Zap/1/${EXTEN:1},90,Tt) exten => _9.,2,Macro(fastbusy) exten => _9.,102,Macro(fastbusy) ==== /snippet ==== Zap/1 and Zap/2 are analog phone lines. What is the best method of picking an open line when someone tries to dial-out? i.e. if Zap/1 is in use how can I instruct Asterisk to use Zap/2 and vice versa? I know complex methods of making this h...
2004 Jun 21
2
Failover Trunking Won't Fail Over
...,1,Dial(ZAP/26/${EXTEN}) exten => _763NXXXXXX,2,Congestion ; exten => _952NXXXXXX,1,Dial(ZAP/26/${EXTEN}) exten => _952NXXXXXX,2,Congestion [iconnectlocal] ; ; Local calls routed through iConnectHere ; exten => _NXXXXXX,1,Macro(dialiconnect,1952${EXTEN},70) exten => _NXXXXXX,2,Macro(fastbusy) ; exten => _612NXXXXXX,1,Macro(dialiconnect,1${EXTEN},70) exten => _612NXXXXXX,2,Macro(fastbusy) ; exten => _651NXXXXXX,1,Macro(dialiconnect,1${EXTEN},70) exten => _651NXXXXXX,2,Macro(fastbusy) ; exten => _763NXXXXXX,1,Macro(dialiconnect,1${EXTEN},70) exten => _763NXXXXXX,2,Macro...
2004 Dec 18
4
Free World Dialup and Asterisk
...ite=no extensions.conf FWDUSERID1=421058 FWD1USERNAME=Gonzalo Gasca FWDUSERID2=431044 FWD2USERNAME=Gonzalo Gasca FWDPREFIX=* [fwd1-out] exten => _8.,1,SetCallerID(${FWDUSERID2}) exten => _8.,2,SetCIDName(${FWD2USERNAME}) exten => _8.,3,Dial(SIP/${EXTEN:1}@fwd1,70) exten => _8.,4,Macro(fastbusy) exten => _8.,5,Hangup [fwd2-out] exten => _7.,1,SetCallerID(${FWDUSERID1}) exten => _7.,2,SetCIDName(${FWD1USERNAME}) exten => _7.,3,Dial(SIP/${EXTEN:1}@fwd2,70) exten => _7.,4,Macro(fastbusy) exten => _7.,5,Hangup My IP phone include those fwd1-fwd2-out ___________________...
2003 Apr 19
0
Unexpected behavior of X100P and * in no-dialtone situations
...e way that the X100P detects "busy" signals, or it may be something in the software. Could someone with more in-depth knowledge make a comment on the items below? My dialing logic says "dial local area code numbers out of the analog line, and if the analog line is broken, play a fastbusy signal. If the analog line is simply already occupied, push the call out of iconnect." I use macros to play the busy signals and dial through iconnect, but that is more or less irrelevant to the question I have. The snippet of extensions.conf: exten => _1503.,1,Dial(${DIALOUTANALOG}...
2004 Dec 01
1
IAX long distance... Re: Asterisk for home office
...@VPWS) exten => s,407,Hangup exten => s,408,Congestion ; I declare the params for IAXTRUNK1-4 and the login details as global variables. My callout routine looks like the following; [outbound-ip-local] exten => _713XXXXXXX,1,Macro(multidial,1${EXTEN}) exten => _713XXXXXXX,2,Macro(fastbusy) exten => _281XXXXXXX,1,Macro(multidial,1${EXTEN}) exten => _281XXXXXXX,2,Macro(fastbusy) exten => _832XXXXXXX,1,Macro(multidial,1${EXTEN}) exten => _832XXXXXXX,2,Macro(fastbusy) [outbound-ip-domestic] exten => _1NXXNXXXXXX,1,Macro(multidial,${EXTEN}) exten => _1NXXNXXXXXX,2,Play...
2003 Nov 24
0
Picking an open channel (FXO port) for outbo und calls
...m X100P FXO cards. When my SIP phones > want to dial-out I have them setup to grab the first analog card > (Zap/1) with the following extensions.conf segment: > > ==== snippet ==== > > ; Outbound > exten => _9.,1,Dial(Zap/1/${EXTEN:1},90,Tt) > exten => _9.,2,Macro(fastbusy) > exten => _9.,102,Macro(fastbusy) > > ==== /snippet ==== > > Zap/1 and Zap/2 are analog phone lines. What is the best method of > picking an open line when someone tries to dial-out? i.e. if Zap/1 is > in use how can I instruct Asterisk to use Zap/2 and vice versa? I...
2004 Dec 23
1
Can't Make Outgoing Call
...to call 523936. Is there something wrong with my setup here? Could someone please give me a few pointers? Regards, Norman Zhang [fwd-out] exten => _8.,1,SetCallerID(${FWDUSERID}) exten => _8.,2,SetCIDName(${FWDUSERNAME}) exten => _8.,3,Dial(SIP/${EXTEN}@fwd,70) exten => _8.,4,Macro(fastbusy) exten => _8.,5,Hangup *CLI> -- Executing SetCallerID("SIP/101-e528", "533990") in new stack -- Executing SetCIDName("SIP/101-e528", "Norman Zhang") in new stack -- Executing Dial("SIP/101-e528", "SIP/8523936@fwd|70")...
2019 Oct 11
3
clarification on gosub, macros and AEL
I'm trying to clarify my understand of gosub, macros and AEL. My understanding is that macros using the Macro() application, which is defined in extensions.conf by: [macro-foo] ... and called in extensions.conf with exten => _9NXXNXXXXXX.,n,Macro(fastbusy) is deprecated in favour of Gosub(). True so far? But then there are "macro"s defined in extensions.ael: macro foo() { ... } and called in extensions.ael with: &foo(...) These are not deprecated because they use Gosub() underneath and not Macro()? Still good so far? So if mac...
2004 Jun 23
0
connecting to Iconnect here using asterisk
...hrough iconnect to make calls ; prefixed with "6" go out the iconnect channel. This is to ; test some functionality for inbound connections; feel free ; to comment it out. ; ; Dial out on iconnect and wait for 70 seconds for a connect ; ; If no connection in 70 seconds, jump to fastbusy macro ; exten => _7XXXXXXXXXXX,1,Macro(dialiconnect,${EXTEN:1},70) exten => _7XXXXXXXXXX,2,Macro(fastbusy) [intern-post] ; if someone dials a "9" in front of their number, send out via iconnect (commercial PSTN gateway) include => iconnect-forced David Leon Low...
2004 Apr 03
1
Asterisk - Cisco 7960 - NAT
...ones are setup with a unique voip_control_port and they are all able to dial out. However, my phone is the only one that can receive a call. Every phone in the office can dial my extension and it will ring. I can call our main number and my phone will ring. But no other phone will ring! I get a fastbusy signal when trying to dial someone else's extension from my phone or from another phone. Can someone please help! Thanks, Ryan _______________________________________________ Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users T...
2004 Dec 23
1
Qestion about TDM over enthernet
...name=101 > secret=testing123 > context=home > nat=no > > ; extensions.conf > > [general] > static=yes > writeprotect=no > > [globals] > MAINPHONE=SIP/101 > FWDUSERID=533990 > FWDUSERNAME=Norman Zhang > FWDPREFIX=* > > ; Macros > > [macro-fastbusy] > exten => s,1,Answer > exten => s,2,Wait,1 > exten => s,3,Playback(ss-noservice) > exten => s,4,Wait(30) > exten => s,5,Hangup > > [macro-dialoutsip] > exten => s,1,SetCallerID(${FWDUSERID}) > exten => s,2,SetCIDName(${FWDUSERNAME}) > exten =&gt...
2004 Jan 15
0
Ringback Problem
...ting from *. As I've said in my previous post, I am not hearing the "real ringback" from the Cisco gateway terminating my call. I don't want to provide false ringback from * (r option of dial), because it'll still give me ringback even if I am suppose to hear announcement or fastbusy. Below is captured ISDN debug from Cisco. It's sending ALERT (progress indicator 8), but I am not sure why * is not relaying that signal to the ATA. I hope someone is out there to help me on this. Thanks in advance. Jan 15 22:53:24: ISDN Se1/0:23: TX -> SETUP pd = 8 callref = 0x007...
2005 Sep 01
0
Fax trouble with HP 3330mfp (again)
...0000,2,zapEC(off) ; disable EC on the incoming channel exten => 0000000000,3,SetCIDNum(${PRI_NETWORK_CID}) exten => 0000000000,4,LookupCIDName exten => 0000000000,5,Dial(${FAX}) To send a fax I use these options: exten => _9.,1,Dial(ZAP/g1md/${EXTEN:1},70,rdT) exten => _9.,2,Macro(fastbusy) I'm puzzled why I can receive faxes but not send them. The HP is capable of 14k4 transmission speeds (and I think even higher) but why wouldn't that be a show stopper to receive faxes? In the firmware of the HP I cannot discover an option to limit the tx/rx speed. Any hints on what I...
2007 Apr 14
1
Fast busy on TDM400P
I'm getting a random fast busy signal after two rings on an incoming ZAP channel through an FXO interface on a TDM400P. I have a NoOp in the dial plan showing the callerID. When the random fastbusy happens, no CallerID is sent. When it works, the CallerID information is sent. Is this a card issue or a telco issue? I have a very upset client and need to figure out how to resolve this. Thanks, DR -------------- next part -------------- An HTML attachment was scrubbed... URL: http://li...
2005 May 26
1
How do I diagnose the problem in this Asterisk test session with FWD?
...include => daytime-fwd|9:00-21:00|*|* include => nighttime-fwd|21:00-9:00|*|* ; ; Outbound ; [fwd-out] exten => _8.,1,SetCallerID(${FWDCIDNAME}) exten => _8.,2,Dial(IAX2/${FWDUSERID1}: ${FWDPASSWORD}@iax2.fwdnet.net/${EXTEN:1},60,r) exten => _8.,3,Congestion exten => _8.,4,Macro(fastbusy) exten => _8.,5,Hangup [fromiaxfwd] exten => ${FWDUSERID1},1,Goto(inbound-fwd,s,1) exten => ${FWDUSERID1},2,Voicemail2,u${FWDVMBOX} exten => ${FWDUSERID1},102,Voicemail2,b${FWDVMBOX} exten => ${FWDUSERID1},3,Hangup [dialout] include => fwd-out include => fromiaxfwd Thanks
2007 Jun 18
0
no sound with chan_mobile
...t=1 context=mobiel-hans Part of dialplan [mobiel-uit] exten => _06XXXXXXXX,1,Answer exten => _06XXXXXXXX,n,Authenticate(1234,a) exten => _06XXXXXXXX,n,Goto(mobiel-hans,${EXTEN},1) [mobiel-hans] exten => _06XXXXXXXX,1,Dial(Mobile/Hans.bt/${EXTEN},40,r) exten => _06XXXXXXXX,n,Macro(fastbusy) exten => _06XXXXXXXX,n,Hangup asterisk*CLI> mobile show devices ID Address Connected State SMS Hans.bt 00:12:D1:8A:06:8E Yes Free Yes Some logging while dialing out via the mobile channel: -- Starting simple switch on 'Zap/3-1' -- Execu...
2015 Apr 13
1
dial out with channel variable; sub-string usage
On 15-04-09 12:06 PM, Chad Wallace wrote: >> but don't know where to put those lines. I have BABY defined as >> >channel variable: >> > >> >BABY = SIP/babytel_out >> > >> >but that seems circular, somehow. > You put them in the context for your clients... From what you show > below, I'd say they go in the "local_200"
2004 Dec 23
1
where I can find some learning book about asterisk?
...to call 523936. Is there something wrong with my setup here? Could someone please give me a few pointers? Regards, Norman Zhang [fwd-out] exten => _8.,1,SetCallerID(${FWDUSERID}) exten => _8.,2,SetCIDName(${FWDUSERNAME}) exten => _8.,3,Dial(SIP/${EXTEN}@fwd,70) exten => _8.,4,Macro(fastbusy) exten => _8.,5,Hangup *CLI> -- Executing SetCallerID("SIP/101-e528", "533990") in new stack -- Executing SetCIDName("SIP/101-e528", "Norman Zhang") in new stack -- Executing Dial("SIP/101-e528", "SIP/8523936@fwd|70")...