Asterisk local channels
Created by: oej,Last modification on Sat 20 of Sep, 2008 [16:56 UTC] by koosvdhout
Local channel
chan_local is a pseudo-channel. Use of this channel simply loops calls back into the dialplan in a different context. Useful for recursive routing; it is able to return to the dialplan after call completion.
Syntax:
Local/extension@context[/n]Local/extension@context[/nj] (starting with Asterisk 1.6, backport available for 1.4)
Adding "/n" at the end of the string will make the Local channel not do a native transfer (the "n" stands for "n"o release) upon the remote end answering the line. This is an esoteric, but important feature if you expect the Local channel to handle calls exactly like a normal channel. If you do not have the "no release" feature set, then as soon as the destination (inside of the Local channel) answers the line, the variables and dial plan will revert back to that of the original call, and the Local channel will become a zombie and be removed from the active channels list. This is desirable in some circumstances, but can result in unexpected dialplan behavior if you are doing fancy things with variables in your call handling.
Adding "/j" will apply the the generic jitterbuffer to the Local channel driver; this feature was introduced in Asterisk 1.6, with a backport being available for 1.4. With this jitter buffer and a Local channelnow also calls that aren't bridged but 'talk' to an Asterisk application can take advantage of de-jittering.
Purpose:
The Local channel construct can be used to establish dialling into any part of the dialplan.Imagine you have a TE410P in your box. You want to do something for which you must use a Dial statement (for instance when dropping files in /var/spool/outgoing) but you do want to be able to use your dialplans least-cost-routes or other intelligent stuff. What you could do before we had chan_local was create a cross-link between two ports of the TE410P and then Dial out one port and in the other. This way you could control where the call was going.
Of course, this was a nasty hack, and to make it more sensible, chan_local was built.
The "Local" channel driver allows you to convert an arbitrary extension into a channel. It is used in a variety of places, including agents, etc.
Here are some examples (primarily using conferencing) where it might be useful:
- Suppose you wanted to build a web GUI for building conferences... You could make your script ask for what number to call and use Local/number@context as the channel in your .call file, and set the conference as the extension to go to.
- Imagine you had a conference going on and you wanted to be able to add someone in sales. You could use Local/salesexten@context as the channel to add to the conference, which would then ring everyone in sales.
- Imagine you wanted to link two conferences together.
- Imagine you wanted to add MusicOnHold to a conference.
- You'd like to use .call files for automated dialling and still want to make sure that a CDR record = log entry gets created
This also allows us to hop to contexts like a GoSub routine; See examples below.
Examples:
[inbound]
; here falls all incoming calls
exten => s,1,Answer
exten => s,2,Dial(local/200@internals,30,r)
exten => s,3,Playback(sorrynoanswer)
exten => s,4,Hangup
[internals]
; here where our phones falls for default
exten => 200,1,Dial(sip/blah)
exten => 200,102,VoiceMail(${EXTEN}@default)
exten => 201,1,Dial(zap/1)
exten => 201,102,VoiceMail(${EXTEN}@default)
exten => _0.,1,Dial(Zap/g1/${EXTEN:1}) ; outgoing calls with 0+number
so that let me to call a local (internal) extension, without:
- duplicate the dial & voicemail statements
- don't letting them to dial out, since in internal context I have the possibility to dialout.
Using the local channel to play music on hold when already answered while waiting for a script that takes a while:
[waitforscript]
exten => s,1,Dial(local/s@somescript,60,m)
[somescript]
exten => s,1,Ringing
exten => s,n,System(' .. something which takes a lot of work ..')
exten => s,n,Answer()
One could create a special music on hold class saying 'please wait while we process your request'. Just remember that the caller may fall into the music on hold loop at any point.
Caveats:
If you use chan_local from a call-file and you want to pass channel variables into your context, make sure you append the '/n', because otherwise chan_local will 'optimize' itself out of the call-path, and the variables will get lost. i.e.Local/00531234567@pbx becomes Local/00531234567@pbx/n
Local channels don't support state information (see hint) in Asterisk 1.4. For that you either need to use 1.6 or backport of state_interface for 1.4. Then you have to set call-limit for peers, and specify state_interface device when logging in agents. For more information please search for "asterisk queue state" on the asterisk-users mailinglist.
Be aware that your CDR data will become clutter with extra data; you might want to consider using NoCDR() and ResetCDR() to prevent this from happening.
See also
Go back to Asterisk channels

Comments
333DIALSTATUS after dialing a Local channel
If I have:
exten => s,n, Dial(Local/200@context)
exten => s,n,NoOp(${DIALSTATUS})
context
exten => _X.,1,Macro(dundi,${EXTEN})
macro-dundi
include => dundi-lookup
dundi-lookup
switch => DUNDI/priv
I get always CHANUNAVAIL even if dialing ends with NOANSWER or BUSY.
333
333Re: Linking two conferences together.
333Using local channels for a large page group
I had already created different paging areas, though (for example, group 68 is the marketing group, so you can dial 768 and only page them), and it was trivial after that to simply page the entire group of paging areas. It's a meetme room full of meetme rooms, each of which has a bunch of users.<p>
Here's how it looks:<p>
[pagegroup] ; Note: groups are defined in globals.conf. ; Also: condense-group(group) returns the extensions of everyone in the group who is available in CGRP exten => _7Δ-8]X,1,Macro(condense-group,${EXTEN:1:2}) exten => _7Δ-8]X,n,Page(${CGRP}) exten => 700,1,Set(PageGrp=Local/760@pagegroup) exten => 700,n,Set(PageGrp=${PageGrp}&Local/761@pagegroup) exten => 700,n,Set(PageGrp=${PageGrp}&Local/762@pagegroup) exten => 700,n,Set(PageGrp=${PageGrp}&Local/763@pagegroup) exten => 700,n,Set(PageGrp=${PageGrp}&Local/764@pagegroup) exten => 700,n,Set(PageGrp=${PageGrp}&Local/765@pagegroup) exten => 700,n,Set(PageGrp=${PageGrp}&Local/766@pagegroup) exten => 700,n,Set(PageGrp=${PageGrp}&Local/767@pagegroup) exten => 700,n,Set(PageGrp=${PageGrp}&Local/768@pagegroup) exten => 700,n,Set(PageGrp=${PageGrp}&Local/769@pagegroup) exten => 700,n,Page(${PageGrp})Of course I could have done all that in one big line, but who wants to read that? Ick. :)<p>
- Adam<p>
PS - I'm obviously not familiar with the syntax of posting comments here... if anybody wants to send a link to instructions, I'd appreciate it. (hlagfarj on gmail)
333Originating with Extension/Priority instead of Channel
If you want to use an exten for the origination side you do it via a local channel... local/exten@context.
Then you can have control over the dialout from extensions.conf using the dial command with parameters or variables (or referenced agi) .
but...
Okay ya know when you originate a call from astreisk, commonly you need to specify the channel
(zap/1/623666-7777), context(callout), extension (2000), priority(1)
But I want the channel speicied later in the the agi script called from the dialplan.
I was told to use local channel to do this.
The callout file still needs the four parameters as exemplied above.
So I do channel (local/2000@callout), context(callout), extension (2000), priority(1)
Won't this connect two calls to exten 2000 of context callout?
Anyone know what I am talking about/
333Linking two conferences together.