<div dir="ltr">Hello. I try to manage by dialog module every signaling session, that goes through my proxy.<br>I added newx mod params<br><br><div>modparam("dialog", "timeout_avp", "$avp(i:10)")</div><div>modparam("dialog", "dlg_flag", 4)</div><div>modparam("dialog", "initial_cbs_inscript", 1)</div><div>modparam("dialog", "profiles_with_value", "caller")</div><div>modparam("dialog", "track_cseq_updates", 1)</div><div>modparam("dialog", "ka_timer", 10)</div><div>modparam("dialog", "ka_interval", 30<br><br><br>And at request route I added this for all invite methods<br><br><div>if (is_method("INVITE")){</div><div><span style="white-space:pre-wrap">                </span>$dlg_ctx(timeout_route) = "DIALOG_END";</div><div><span style="white-space:pre-wrap">                </span>$avp(i:10)=43200;</div><div><span style="white-space:pre-wrap">                </span>$dlg_ctx(timeout_bye) = 1;</div><div><span style="white-space:pre-wrap">               </span>dlg_set_property("ka-src");</div><div>                dlg_set_property("ka-dst");</div><div><span style="white-space:pre-wrap">                </span>dlg_manage();</div><div><span style="white-space:pre-wrap">            </span>xlog("L_INFO","Dialog manage is {$ct}\n");<br>...<br>}<br><br>So after this As I think every session must be dialog managed session and every leg of call must be checked by keepalive OPTIONS packets but no one OPTIONS request generated  wen session goes through my proxy. <br><br>thanks</div></div></div>