Hi,
I have configure the load balancer as per opensips
http://www.opensips.org/Resources/DocsTutLoadbalancing

My question is how can i forward registration requests to asterisk. What am
i doing wrong 

Thanks


if (is_method("REGISTER"))   {
         # authenticate the REGISTER requests
         if (!www_authorize("", "subscriber")) {
             www_challenge("", "0");
             exit;
         }

         if (!db_check_to()) {
             sl_send_reply("403","Forbidden auth ID");
             exit;
         }

         # auth done -> send it to registrar
        consume_credentials();
#       rewritehostport("192.168.10.2:5060");

 if (!save("location")) {
    log(1,"Location Error\n");
    sl_reply_error();
  };


        log(1,"Trying to Save location\n");


        t_relay();

         exit;
     }

 

-- 
View this message in context: 
http://opensips-open-sip-server.1449251.n2.nabble.com/opensips-forward-register-tp4946855p4946855.html
Sent from the OpenSIPS - Users mailing list archive at Nabble.com.

_______________________________________________
Users mailing list
[email protected]
http://lists.opensips.org/cgi-bin/mailman/listinfo/users

Reply via email to