Hello;
[image: Inline image 1]
HOW can I send 4XX to the caller when the callee response to a BYE message
is:
*481 Call leg/transaction does not exist. BUT the caller is waiting.*
Before this message. I drop the bye sent by the callee, my purpose here is
"*Do not send the BYE TO THE CALLER"*
JUST send a message in order to the caller do failover, If I send *BYE* to
the caller it can't do failover
Thanks in advance.
10.929596| | BYE | |
|SIP Request BYE CSeq:104
| | |(5060) ------------------> (5060) |
|
|10.929981| | 481 Call leg/transac |
|SIP Status 481 Call leg/transaction does not exist
| | |(5060) <------------------ (5060) |
|
|10.929983| | 481 Call leg/transac |
|SIP Status 481 Call leg/transaction does not exist
Call leg/transaction does not exist
| | |(5060) ------------------> (5060) |
|
|10.930445| | 481 Call leg/transac |
|SIP Status 481 Call leg/transaction does not exist
| | |(5060) ------------------> (5060) |
|
|10.930451| | 481 Call leg/transac |
|SIP Status 481 Call leg/transaction does not exist
Hello
I am trying to send 404 to the caller instead of BYE. Using the
configuration showned bellow. when the callee send BYE
Kamailio sends -- *404* to the callee (to the source of the BYE signaling)
--- and *BYE* to the caller
But I need to send 404 response to the caller only
Thanks in advance
event_route[dialog:end] {
if(is_method("BYE") && ((src_ip==XXXXXXX) )){
send_reply("404", "Not found");
xlog("L_INFO","ENVIO 404 ON BYE \n");
}
exit;
}
Hi,
I would like to know how I can make subsequent messages in a dialog (ACK and BYE) to be stateful.Your help will be greatly appreciated.
// reroute INVITE after timeout.failure_route[MANAGE_FAILURE]{ if (t_branch_timeout()) { # change to new destination IP $rd = "10.10.10.10"; t_relay(); exit; }...}
Thanks,AS
Hello All,
I have a need to save the Record-Route header from the INVITE and
use it as a route header in requests like BYE.
PROXY --> Kamailio(as PROXY) --> Asterisk
I am using rr module to add a record_route when passing the INVITE to Asterisk.
Thanks,
Jignesh Gandhi