[sr-dev] [kamailio/kamailio] siptrace module not send ACK (#1811)

2019-01-16 Thread sergey-safarov
### Description siptrace module not mirror relayed ACK message. ### Troubleshooting Reproduction Need patch vanilla kamailio config like this diff ```patch --- kamailio.cfg +++ /etc/kamailio/kamailio.cfg @@ -1,4 +1,8 @@ #!KAMAILIO +#!define WITH_DEBUG +#!define WITH_PSTN +#!define WITH_NAT

Re: [sr-dev] [kamailio/kamailio] siptrace module not send ACK (#1811)

2019-01-16 Thread lazedo
@sergey-safarov i think the issue is in `freeswitch` you can try these PRs for freeswitch in order [merged] https://freeswitch.org/stash/projects/FS/repos/freeswitch/pull-requests/1660/overview https://freeswitch.org/stash/projects/FS/repos/freeswitch/pull-requests/1523/overview https://freeswitc

Re: [sr-dev] [kamailio/kamailio] siptrace module not send ACK (#1811)

2019-01-16 Thread sergey-safarov
Thank you Luis I will try this PR. Could you also look [rfc3665](https://tools.ietf.org/html/rfc3665) Here is many calls examples with proxy. I cannot find here `ACK` and `BYE` messages with `Record-Route` header. -- You are receiving this because you are subscribed to this thread. Reply to thi

Re: [sr-dev] [kamailio/kamailio] siptrace module not send ACK (#1811)

2019-01-17 Thread Daniel-Constantin Mierla
If you want to mirror all the sip traffic, just set this modparam: * https://www.kamailio.org/docs/modules/stable/modules/siptrace.html#siptrace.p.trace_mode If you still want to do selective mirroring, for outgoing ACK you have to use onsend_route block, because the ACK doesn't have a corres

Re: [sr-dev] [kamailio/kamailio] siptrace module not send ACK (#1811)

2019-01-17 Thread Daniel-Constantin Mierla
Closed #1811. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/1811#event-2080393810___ Kamailio (SER) - Development Mailing List sr-dev@l

Re: [sr-dev] [kamailio/kamailio] siptrace module not send ACK (#1811)

2019-01-17 Thread sergey-safarov
Luis @lazedo, i merged FS PRs 1523, 1524, 1516 into FS master and made same test. ACK message is still no send to siptrace server. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/1

Re: [sr-dev] [kamailio/kamailio] siptrace module not send ACK (#1811)

2019-01-17 Thread lazedo
@sergey-safarov then you're good. for the `sip trace`, as @miconda commented , did you tried to change the trace_mode ? @miconda if only we could filter out the `OPTIONS` ..., its a blocker for us not having that. -- You are receiving this because you are subscribed to this thread. Reply to thi

Re: [sr-dev] [kamailio/kamailio] siptrace module not send ACK (#1811)

2019-01-17 Thread sergey-safarov
This kamailio config change is fixed `ACK` packet mirroring ```sh onsend_route { if (is_method("ACK")) { sip_trace(); } } ``` -- You are receiving this because you are subscribed to this threa

Re: [sr-dev] [kamailio/kamailio] siptrace module not send ACK (#1811)

2019-01-17 Thread sergey-safarov
@lazedo yes `trace_mode` also works as expected. I created this ticket to get working selective mirroring on your kamailio config. In short time i will create PR for your config. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHu