Yate Community Forum

General Category => Yate users hangout place => Topic started by: latcom on May 21, 2018, 01:40:39 PM

Title: SS7 call redirect
Post by: latcom on May 21, 2018, 01:40:39 PM
Hello all,
I need to redirect a call, using ss7
the main idea is to release the call with the proper cause code and provide the
redirection number in a specific parameter.
is it possible with yate?
Thanks!
Title: Re: SS7 call redirect
Post by: latcom on June 27, 2018, 02:37:40 AM
Is it possible to release SS7 call with the specific cause?

For example, 17 code - for busy, 1 - Unassigned Number, 2 - No Route to Transit Network, etc...

(Full list for reference http://www.dialogic.com/webhelp/img1010/10.5.2/webhelp/General_Reference/def_sip-ss7_cc.htm)

Thanks for any help!
Title: Re: SS7 call redirect
Post by: marian on June 28, 2018, 01:24:02 AM
You may try to set error to desired code.
Regexroute example:

[default]
^123=-;error=2
Title: Re: SS7 call redirect
Post by: latcom on July 02, 2018, 05:36:20 AM
Yes,
$ev->SetParam("error",2);
works like I wanted.
Thanks for tips.