Re: [SR-Users] Regd : SIP Configuration in Kamailio

2020-10-14 Thread Henning Westerholt
Hello, please keep the list in CC. I can see Kamailio in your log: Oct 14 11:21:59 nickar /usr/sbin/kamailio[24567]: INFO: [main.c:842]: sig_usr(): signal 15 received Oct 14 11:21:59 nickar systemd[1]: Stopping Kamailio (OpenSER) - the Open Source SIP Server... Oct 14 11:21:59 nickar

[SR-Users] To Header Manipulation

2020-10-14 Thread Sam Ware
Wondering if this is intended behavior. We have a customer doing some craziness with the TO header. They are including their tech prefix in the TO header as well as the RURI. It doesn't cause any issue in our systems but apparently it does with one of our vendors. In an effect to prevent the

Re: [SR-Users] Error in RTP engine setup

2020-10-14 Thread David Villasmil
I believe you need to add the table yourself like: https://github.com/sipwise/rtpengine # this only needs to be one once after system (re-) boot modprobe xt_RTPENGINE iptables -I INPUT -p udp -j RTPENGINE --id 0 ip6tables -I INPUT -p udp -j RTPENGINE --id 0 # ensure that the table we want to

[SR-Users] Error in RTP engine setup

2020-10-14 Thread Pavithra Mohanraja
Hi, I tried to setup rtpengine to make my sip clients communicate through proxy following https://open5gs.org/open5gs/docs/tutorial/02-VoLTE-setup/ I started sip communication since the service was running and saw that the RTP packets go to exposed rtp interface instead of other sip client. But i

Re: [SR-Users] how to get a value from SIP INVITE Header

2020-10-14 Thread sai sudheer
hii,, I tried {uri.user} from the URI transformations. but i just get 0 or Null in the log. Now i tried the string transformation as per your reply, and  {s.select,index,separator} is thing i was expecting ..  It worked now, and i am getting +34xxx alone, which is what i need.  Thanks a lot. 

Re: [SR-Users] SRTP

2020-10-14 Thread Olle E. Johansson
> On 14 Oct 2020, at 16:48, Andy Kama wrote: > > Hi Fred > > So i am running rtpengine but prob i am having is i receive the call as rtp > and need it to become srtp before i send it to the carrier > then the carrier sends me a call as srtp and need that to become normal rtp > before i can

Re: [SR-Users] SRTP

2020-10-14 Thread Andy Kama
Hi Fred So i am running rtpengine but prob i am having is i receive the call as rtp and need it to become srtp before i send it to the carrier then the carrier sends me a call as srtp and need that to become normal rtp before i can go to the uac On Wed, Oct 14, 2020 at 3:27 PM Fred Posner

Re: [SR-Users] SRTP

2020-10-14 Thread Fred Posner
On Wed, 2020-10-14 at 11:51 +0100, Andy Kama wrote: > Hi All, > > I have setup a tls connection to a sip provider and it works > perfectly > But they are requesting i send srtp > i can find any documentation how i do it with rtpengine etc? > > any guidance would be appreciated > > Generally

Re: [SR-Users] [sr-dev] pstn_route add_route(): route name not defined error

2020-10-14 Thread Daniel-Constantin Mierla
Hello, do not send emails to both sr-dev and sr-users mailing lists when you have questions about using Kamailio, sr-dev is only for discussing about code development for project or what is only in development branch (not part of a stable release). I removed sr-dev from recipients. I think you

Re: [SR-Users] how to get a value from SIP INVITE Header

2020-10-14 Thread Santanu B
Please help to configure uri transformation page. Thanks Santanu On Wed, Oct 14, 2020 at 1:08 PM Henning Westerholt wrote: > Hello, > > > > can you share the error you have got? If you just want to get the > substring of the +34x@domain URI, have a look to the string > transformations on

[SR-Users] SRTP

2020-10-14 Thread Andy Kama
Hi All, I have setup a tls connection to a sip provider and it works perfectly But they are requesting i send srtp i can find any documentation how i do it with rtpengine etc? any guidance would be appreciated ___ Kamailio (SER) - Users Mailing List

Re: [SR-Users] '302 Moved temporarily' contact parsing error

2020-10-14 Thread David VILLAUME
Hi, Sorry for the noise and thanks for your help, i forgot to exclude the 302 from the relaying in my reply_route. Regards, David From: Daniel-Constantin Mierla Sent: Wednesday, October 14, 2020 9:54 AM To: David VILLAUME ; Kamailio (SER) - Users Mailing List Subject: Re: [SR-Users] '302

Re: [SR-Users] '302 Moved temporarily' contact parsing error

2020-10-14 Thread Daniel-Constantin Mierla
Hello, but do you have reply_route or onreply_route[x] where you access the contact with a transformation? Can you give here those lines from your config accessing the contact header? parse_to_param() is not used by core Contact header parser, thus that can happen only on some config

Re: [SR-Users] '302 Moved temporarily' contact parsing error

2020-10-14 Thread David VILLAUME
Hi Daniel, I already use the select for getting the contact, but I still got the error as it happens before the fist line of my failure_route : Oct 14 09:32:53 fr-kam-misc-lab-vma-1 kamailio[21633]: ERROR: { 2 udp 172.18.0.15 17 REGISTER #

Re: [SR-Users] Regd : SIP Configuration in Kamailio

2020-10-14 Thread Henning Westerholt
Hello, have a look to /var/log/messages or /var/log/syslog, depending on the distribution. Kamailio might be logged there. Cheers, Henning -- Henning Westerholt – https://skalatan.de/blog/ Kamailio services – https://gilawa.com From: sr-users On Behalf Of Santanu B

Re: [SR-Users] how to get a value from SIP INVITE Header

2020-10-14 Thread Henning Westerholt
Hello, can you share the error you have got? If you just want to get the substring of the +34x@domain URI, have a look to the string transformations on the same link. Cheers, Henning -- Henning Westerholt – https://skalatan.de/blog/ Kamailio services –

Re: [SR-Users] '302 Moved temporarily' contact parsing error

2020-10-14 Thread Daniel-Constantin Mierla
Hello, the Contact header body looks ok, using comma to separate many contact values is ok. My guess is that {to.body} transformation is used in this case, it is not coming from core or a module. The To header cannot appear many times, thus the transformation is throwing error in this case. If I