Hello,<br>I am not good at kamailio. Could anyone tell me how can I forward register messages coming to kamailio to asterisk? I need users to be registered on kamailio and on asterisk at one time. <br>I do in kamailio.cfg:<br>
if (is_method(&quot;REGISTER&quot;))<br>      {<br>                save(&quot;location&quot;);<br>                route(FWD_REG);<br>                exit;<br><br>        }<br>route[FWD_REG] {<br>       rewritehost(&quot;Asterisk_IP:5060&quot;);<br>
       if(!t_relay())<br>               sl_reply_error();<br><br>       exit;<br>}<br><br>But it (kamailio ver 3.1) does not forward them.<br><br>