<html><head></head><body><div style="color:#000; background-color:#fff; font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:16px"><div dir="ltr" id="yui_3_16_0_ym18_1_1458841577174_40203">Hi Liviu, I did confirm that trace_on was already set to 1. I did define the trace flag as you suggested and tried it with both trace_dialog() and sip_trace() but am still not seeing any packets egress from the source host to the dest host. Here's what I have set up. I had to fill in a bogus DB (not using it anyway) because it wouldn't let me start opensips if it wasn't defined. My goal is to have this sip_trace node send captures to a sipcapture (homer) node. <br></div><div id="yui_3_16_0_ym18_1_1458841577174_40235"><br></div><div id="yui_3_16_0_ym18_1_1458841577174_40236" dir="ltr">#### SIP Trace module<br>loadmodule "siptrace.so"<br>modparam("siptrace", "db_url", "mysql://user:passwd@host/dbname")<br>modparam("siptrace", "duplicate_uri", "sip:192.168.2.142:9060")<br>modparam("siptrace", "duplicate_with_hep", 1)<br>modparam("siptrace", "trace_to_database", 0)<br>modparam("siptrace", "trace_on", 1)<br>modparam("siptrace", "trace_flag", "TRACE_FLAG")<br>modparam("siptrace", "hep_version", 2)<br></div><div id="yui_3_16_0_ym18_1_1458841577174_40202"><br></div><div dir="ltr" id="yui_3_16_0_ym18_1_1458841577174_40446">INSIDE MAIN ROUTE BLOCK:</div><div id="yui_3_16_0_ym18_1_1458841577174_40456" dir="ltr"><br></div><div dir="ltr" id="yui_3_16_0_ym18_1_1458841577174_38700">&nbsp;&nbsp;&nbsp; # create dialog with timeout and hide topology<br>&nbsp;&nbsp;&nbsp; if ( !create_dialog("B") ) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; xlog("L_INFO", "Unable to create dialog \n");<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; send_reply("500","Internal Server Error");<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; exit;<br><br>&nbsp;&nbsp;&nbsp; } else {<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; # We have a dialog, Lets hide the topology from where the call originated<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; topology_hiding();<br>&nbsp;&nbsp;&nbsp; }<br><br>&nbsp;&nbsp;&nbsp; # Trace this dialog<br>&nbsp;&nbsp;&nbsp; setflag(TRACE_FLAG);<br>&nbsp;&nbsp;&nbsp; sip_trace();<br>&nbsp;&nbsp;&nbsp; #trace_dialog();<br></div></div></body></html>