News:

On Tuesday September 6th the forum will be down for maintenance from 9:30 PM to 11:59 PM PDT

Main Menu

How to pass CID when forking a call?

Started by AAABen, June 14, 2013, 03:43:43 PM

Previous topic - Next topic

AAABen

In "SP1 Service" I have
X_InboundCallRoute    set to be    {ph1,sp4(6688)}

But how can I pass the real CID from sp1 to sp4(6688)? I have tried

{ph1,sp4($1>6688)}, which seems does not work.

azrobert

This doesn't work for every provider, but try:

Service Provider -> ITSP Profile D -> SIP

X_SpoofCallerID = Checked

And

{ph1,sp4(6688)}

ianobi

Where using X_SpoofCallerID = Checked is a problem, leave it unchecked and try the following:

Voice Services > SP1 Service > X_InboundCallRoute:

{ph1,sp4(6688;ui=$1)}

QBZappy

Quote from: ianobi on June 15, 2013, 02:13:43 AM
Where using X_SpoofCallerID = Checked is a problem, leave it unchecked and try the following:

Voice Services > SP1 Service > X_InboundCallRoute:

{ph1,sp4(6688;ui=$1)}


This is one of those little known gems which can be very handy. In the next version of the Admin guide more emphasis on CID setups with examples should be offered. They should be asking Ian to proof read the admin guide before releasing it.  :)
Owner of the 1st OBi110/100 units in service in Canada & South America. 1st OBi202 on my street. 1st OBi1032 in Montreal.

ianobi

I don't think that Obihai can afford my pay rate of two beers per day  :D

Also, there's lots I don't know such as using GV with OBi, so we might have to split the proof reading into sections!

zapattack

Instead of
{ph1,sp4(6688)}
format,
I used
{ph1},{sp4(6688)}
as shown in example(4) of the admin manual.

azrobert

Quote from: zapattack on June 17, 2013, 11:52:17 PM
Instead of
{ph1,sp4(6688)}
format,
I used
{ph1},{sp4(6688)}
as shown in example(4) of the admin manual.

Are you sure your example works?
I always thought processing goes left to right and stops with the first matching rule.
Since you're not comparing for anything in either rule all calls will match the first rule and will be routed to ph1.  Processing will then stop and calls will never be routed to sp4.

zapattack

Of course you are right. I did it
{sp2(xxxxxxx)}, {ph}
and only noticed the forwarding worked (obviously)!
However ui=$1 doesn't have any effect in my situation as I am routing to an OG trunk which has its own CID.

ianobi

This appears to be a question of format. Using SIP URI format - anything@anywhere - ui=$1 seems to work fine, but without the @ it does not.

With X_SpoofCallerID = unchecked I tested:

Voice Services > SP1 Service > X_InboundCallRoute:
{ph1,sp2(anything@anywhere)}

This gives CallerID of AuthUserName of sp2.


Voice Services > SP1 Service > X_InboundCallRoute:
{ph1,sp2(anything@anywhere;ui=$1)}

This gives CallerID of the original caller.

Looks like spoofing can be done with With X_SpoofCallerID = unchecked, but only if SIP URI format is used. Another lesson learnt   :)