Hi;<br /><br />Thanks for the idea, but this module (PATH) is designed to be used at intermediate sip proxies. It provides functions for inserting a Path header including a parameter for passing forward the received-URI of a registration to the next hop.<br /><br />I need the following feature: Upper Registration - This feature forwards REGISTER requests sent from Client Phone to another server as configured at SBC. A client can send just one REGISTER request to SBC to register itself both at SBC and at other server (mysipswitch). This is, capability of relaying registrations to upper registrars. In other words: Capability to hijack-registrations towards upstream registrars.<br /><br />I'm using the following feature of tutorial “<em>Kamailio 3.1.x and Asterisk 1.6.2 using Asterisk Database</em>”:  <br /><strong>Registration:</strong><br /><em>Kamailio does authentication for registration. If successful, it notifies Asterisk with a new REGISTER that the phone is availabl
 e at its IP.</em> <br /><br />This feature works with Upper Registration, but doesn?t perform authentication for registration between the servers (Ex.: Kamailio and Asterisk).<br /> <br /># Forward REGISTER to Asterisk<br />route[REGFWD] {<br /> if(!is_method("REGISTER"))<br /> {<br /> return;<br /> }<br /> $var(rip) = $sel(cfg_get.asterisk.bindip);<br /> $uac_req(method)="REGISTER";<br /> $uac_req(ruri)="sip:" + $var(rip) + ":" + $sel(cfg_get.asterisk.bindport);<br /> $uac_req(furi)="sip:" + $au + "@" + $var(rip);<br /> $uac_req(turi)="sip:" + $au + "@" + $var(rip);<br /> $uac_req(hdrs)="Contact: &lt;sip:" + $au + "@"<br /> + $sel(cfg_get.kamailio.bindip)<br /> + ":" + $sel(cfg_get.kamailio.bindport) + "&gt;\r\n";<br /> if($sel(contact.expires) != $null)<br /> $uac_req(hdrs)= $uac_req(hdrs) + "Expires: " + $sel(contact.expires) + "\r\n";<br /> else<br /> $uac_req(hdrs)= $uac_req(hdrs) + "Expires: " + $hdr(Expires) + "\r\n";<br /> uac_req_send();<br />}<br />#!endif<br /><b
 r />How to configure authentication for registration between the servers (UAC Module)?<br /><span id="result_box" class="short_text" lang="en"><span class="hps">See the</span> <span class="hps">above</span> <span class="hps">configuration!</span></span><br /><br />Best regards;<br />Edson Gomes Leme<br />