Re: [SR-Users] sip options not relaying

2016-07-22 Thread gerry kernan
Hi You can ignore this request, I found my problem. It was a typo by me. Best Regards Gerry Kernan From: sr-users [mailto:sr-users-boun...@lists.sip-router.org] On Behalf Of gerry kernan Sent: Friday 22 July 2016 16:47 To: 'Kamailio (SER) - Users Mailing List' Subject: [SR-Us

Re: [SR-Users] SIP OPTIONS

2014-01-15 Thread Benjamin Henrion
On Wed, Jan 15, 2014 at 10:06 AM, Daniel-Constantin Mierla wrote: > Hello, > > if you just want to send a 200 ok for OPTIONS, do: > > if(is_method("OPTIONS")) { > send_reply("200", "OK"); > exit; > } > > You can also add condition on IP of the trunk gateway, like: > > if(src_ip==_GW_IP) { > .

Re: [SR-Users] SIP OPTIONS

2014-01-15 Thread Daniel-Constantin Mierla
Hello, if you just want to send a 200 ok for OPTIONS, do: if(is_method("OPTIONS")) { send_reply("200", "OK"); exit; } You can also add condition on IP of the trunk gateway, like: if(src_ip==_GW_IP) { ... } Cheers, Daniel On 13/01/14 17:30, Keith wrote: Hi, I have a trunk trying to con