Re: [OpenSIPS-Users] strange INVITE transmission

2022-03-28 Thread Daniel Zanutti
Hi Kiwon You applied at beginning, before loose_route. Not sure it gonna work this way, i sent you exactly line where to put the code. Move this: if (nat_uac_test(23)) { if (is_method("REGISTER")) { fix_nated_register(); setbflag("NAT"); } else { fix_nated_contact(); setflag("NAT"); } } After:

Re: [OpenSIPS-Users] strange INVITE transmission

2022-03-28 Thread 이기원
Hi Daniel and opensips users goup, Thank you for answering my questions. I missed to inform you about the opensips version I'm trying. It is 3.2.5. After modifying config, opensips does not respond for the REGISTER requests from phones. Actually I already tried the following

Re: [OpenSIPS-Users] mid_registrar multi domains

2022-03-28 Thread Andrei G.
Hello, I'm using the following code in opensips.config # # absorb retransmissions, but do not create transaction t_check_trans(); if (is_method("REGISTER")) {

Re: [OpenSIPS-Users] strange INVITE transmission

2022-03-28 Thread Daniel Zanutti
Hi Kiwon You need to handle NAT scenarios. Try putting this code on line 254, right after "t_check_trans()": if (nat_uac_test("7")) { #nathelper if(is_method("REGISTER")) fix_nated_register(); else fix_nated_contact(); xlog("L_NOTICE", "Fix contact - M=$rm RURI=$ru F=$fu T=$tu

[OpenSIPS-Users] strange INVITE transmission

2022-03-28 Thread 이기원
Hi guys, I'm trying to introduce opensips into my company these days. I'm testing with many other phones. During the test, I had a very strange symptom. Please, take look at the picture below first. (Please find my screenshot from the link below) A. The most left one 14.52.252.236 is a phone

Re: [OpenSIPS-Users] mid_registrar multi domains

2022-03-28 Thread Andrei G.
Hi, How do I modify the field "Authorization: Digest username" in REGISTER packet? tried with uac_replace_to(,"user@asterisk1") and uac_replace_from(,"user@asterisk1") but it does affect only to and from headers not digest username thanks Andrei On Thu, Mar 24, 2022 at 4:20 AM Artiom Druz