Author Topic: SS7 call redirect  (Read 4218 times)

latcom

  • Newbie
  • *
  • Posts: 5
    • View Profile
SS7 call redirect
« 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!

latcom

  • Newbie
  • *
  • Posts: 5
    • View Profile
Re: SS7 call redirect
« Reply #1 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!

marian

  • Hero Member
  • *****
  • Posts: 513
    • View Profile
Re: SS7 call redirect
« Reply #2 on: June 28, 2018, 01:24:02 AM »
You may try to set error to desired code.
Regexroute example:

[default]
^123=-;error=2

latcom

  • Newbie
  • *
  • Posts: 5
    • View Profile
Re: SS7 call redirect
« Reply #3 on: July 02, 2018, 05:36:20 AM »
Yes,
$ev->SetParam("error",2);
works like I wanted.
Thanks for tips.