Hi Bogdan,<br><br><div class="gmail_quote">On Wed, Aug 12, 2009 at 3:56 PM, Bogdan-Andrei Iancu <span dir="ltr">&lt;<a href="mailto:bogdan@voice-system.ro">bogdan@voice-system.ro</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi Taner,<div class="im">
<br>
Taner Sener wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi,<br>
<br>
I&#39;m using Opensips 1.5.2 to distribute incoming calls to my clients using dispatcher module. I&#39;m keeping my gateway list in db_mysql and use ds_select_dst(&quot;1&quot;, &quot;4&quot;); to select a gateway using round-robin algorithm. I have a few issues about the module behaviour.<br>

<br>
- The first one is about pinging. I&#39;ve configured dispatcher to send ping requests every 20 seconds. But if destination is not available, ping requests are repeated every 4 seconds. I guess there is another module which repeats the unresponded sip messages. How can I prevent this and change the repeat timeout about this?<br>

</blockquote></div>
there should be no second module to do the pinging, and there is no way the module can dynamically change the pinging interval.<br>
<br>
try enabling full debug (debug=6) and look for the log messages like:<br>
   &quot;probing set #n, URI xxxxxxxx  &quot;</blockquote><div> </div><div>I looked inside logs and found &quot;DBG:dispatcher:ds_check_timer: probing set #1, URI sip:&quot; lines there. So i guess it means that timer has expired and dispatcher is sending SIP OPTIONS at that time. But later found that TM module was enabled in my configuration and it was TM retransmitting SIP OPTIONS to dead destinations (with T2_timer which is 4 seconds). I can increase T2_timer but it will effect other messages, so I will leave it as is. <br>
 </div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="im"><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>
- The second issue is about selecting gateways. When I receive busy from one of the destinations I&#39;m calling ds_next_dst() and this returns me a destination which is not alive and does not respond to ping requests. I&#39;m expecting to have only destinations which are alive, and don&#39;t understand why it is returned. Another issue here is: I&#39;m sending INVITE request to this dead destination and dead host is not responding as expected. After that, every 4 seconds INVITE request is repeated for this dead destination.<br>

</blockquote></div>
you should call the ds_mark_dst() function from failure route, when you detect a destination as failed (and before the ds_next_dst() ). See:<br>
<br>
   <a href="http://www.opensips.org/html/docs/modules/1.5.x/dispatcher.html#id271344" target="_blank">http://www.opensips.org/html/docs/modules/1.5.x/dispatcher.html#id271344</a></blockquote><div><br>I thought that if a destination is not alive and not responding to PING requests (in my case Destination Unreachable ICMP messages are received), it is marked as failure route automatically, but it looks like I must mark it by myself. At this point I want to ask if I can listen for results of PING resuls. So if I receive REPLY I will mark it as healthy and if PING timeout occurs I can mark it as dead. BTW are Destination Unreachable ICMP messages identified by opensips?<br>
<br>Thanks,<br>Taner<br> </div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>
<br>
<br>
Regards,<br>
Bogdan<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="im">
<br></div></blockquote></blockquote></div><br>