Assuming a sip client lands calls in a context named 'from-sip', I would
have following sort of logic in dialplan.

[from-sip]
exten => _X.,1,Noop(${EXTEN},${UNIQUEID})
same => n,System(echo -e
"Channel:Local/s@specific-number/n\\nContext:external\\nExtension:s\\npriority:1\\nSet:
external_num=${EXTEN}" >/tmp/${UNIQUEID}.call)
same => n,System(/bin/mv /tmp/${UNIQUEID}.call
/var/spool/asterisk/outgoing/)
same => n,Hangup()

[specific-number]
exten => s,1,Noop()
same => n,Dial(DAHDI/g0/XXXXXXXXXX,30)

[external]
exten => s,1,Noop()
same => n,Dial(DAHDI/g0/${external_num},30)

You can also use Asterisk application 'originate' in place of callfiles. I
normally prefer local channels in Callfiles or Originate so that I can have
better call control through dialplan.

--Satish Barot


On Mon, Dec 3, 2012 at 3:08 PM, bilal ghayyad <[email protected]> wrote:

> Hi All;
>
> How I can acheive the following:
>
> From sip client softphone (from the iPhone for example), if I dialed a
> number that I need to call it, then a call to be initated to a specific
> number through DAHDI channel and another call to be initiated for the
> destination number (the number that I dialed it from the softphone) and
> these two calls to be linked togethor (to call each other directly). So the
> call from the softphone just to important in the begining to trigger this
> scenario.
>
> How this settings to be done?
>
> Regards
> Bilal
>
> --
> _____________________________________________________________________
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
> New to Asterisk? Join us for a live introductory webinar every Thurs:
>                http://www.asterisk.org/hello
>
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>    http://lists.digium.com/mailman/listinfo/asterisk-users
>
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Reply via email to