Hi List,<br>I am using dispatcher module to route everything from registerations to calls toa asterisk pbx. thats all what openser is doing at the moment. outgoing calls are fine but I get CHANUNAVAILABLE status for incoming calls on Asterisk. I guess the reverse sip dialogue are not working properly through openser. Following is my open ser config<br>
<br>route{<br><br>        if (!mf_process_maxfwd_header(&quot;10&quot;)) {<br>                sl_send_reply(&quot;483&quot;,&quot;Too Many Hops&quot;);<br>                exit;<br>        }<br><br>        if(!sanity_check(&quot;1511&quot;, &quot;7&quot;))<br>
        {<br>                xlog(&quot;Malformed SIP message from $si:$sp\n&quot;);<br>                exit;<br>        }<br><br>        #record_route();<br>        ds_select_dst(&quot;1&quot;,&quot;2&quot;);<br>        forward();<br>
<br>}<br><br>I have tried with and without record_route() but nothing working for incoming calls.<br><br>Any ideas?<br>