<div dir="ltr">At my confiig I have route like this<br><br><div>onreply_route[REPLY_FROM_WS] {</div><div><br></div><div><br></div><div><span class="" style="white-space:pre">      </span>if(status=~"[12][0-9][0-9]") {</div><div><span class="" style="white-space:pre">           </span>xlog("L_INFO", "Manage_Reply from webrtc client {$si:$sp} for method {$rm}: $rs");</div><div><span class="" style="white-space:pre">             </span>rtpengine_manage("force trust-address replace-origin replace-session-connection DTLS=passive ICE=remove RTP/AVP");</div><div><span class="" style="white-space:pre">               </span>route(NATMANAGE);</div><div><span class="" style="white-space:pre">  </span>}<br> }<br><br>This route successfully handling replies 180 183 and 200 and then (after natmanage route) resend to mediaserver.<br><br>When callee client reject call  it send 480 ot 486 message that not resended by kamailio nowhere.<br><br>First of all I thought that 480 and 486 replies are failure replies but at log I see its at onreply route.<br><br>So Ok . I added this to onreply_route<br> if (status=~"48[06]"){</div><div><span class="" style="white-space:pre">                </span>xlog("L_INFO", "Manage_Reply from webrtc client {$si:$sp} for method {$rm}: $rs");</div><div><span class="" style="white-space:pre">             </span>rtpengine_manage("force trust-address replace-origin replace-session-connection DTLS=passive ICE=remove RTP/AVP");</div><div><span class="" style="white-space:pre">               </span>route(NATMANAGE);</div><div><span class="" style="white-space:pre">  </span>}<br><br>But message just going through natmanage route and goes nowhere<br><br>My NATMANAGE route is<br><br>       xlog("L_INFO","NATMANAGE reply  {$rm}");<br><div><span class="" style="white-space:pre">    </span>if (is_reply()) {</div><div><span class="" style="white-space:pre">          </span>if(isbflagset(FLB_NATB)) {</div><div><span class="" style="white-space:pre">                 </span>add_contact_alias();</div><div><span class="" style="white-space:pre">               </span>}</div><div><span class="" style="white-space:pre">  </span>xlog("L_INFO","reply  {$rm}");</div><div><br></div><div><span class="" style="white-space:pre">       </span>}<br><br>I see at my log only first NATMANAGE xlog... no more...<br><br>thnks for answer</div></div></div>