Hi to all, We use uac module to use remote registration but when I add a new user to uacreg table the change doesnt take effect until I restart kamailio service which is not convenient for us.Is there another way to achieve this without restarting service? My configuration is below.Am I doing sth wrong? modparam("rr", "enable_full_lr", 1) # do not append from tag to the RR (no need for this script) modparam("rr", "append_fromtag", 1) # ------ uac params ------------------ modparam("uac", "reg_db_url",DBURL) modparam("uac", "reg_timer_interval", 30) modparam("uac", "reg_retry_interval", 60) modparam("uac", "reg_db_table", "uacreg") modparam("uac","restore_mode","auto") modparam("uac", "reg_contact_addr","my ip") modparam("uac","auth_realm_avp","$avp(i:10)") modparam("uac","auth_username_avp","$avp(i:11)") modparam("uac","auth_password_avp","$avp(i:12)") modparam("uac","credential","username:domain:password") modparam("uac","restore_to_avp","$avp(original_uri_to)") modparam("uac","restore_from_avp","$avp(original_uri_from)") failure_route[REMOTE_AUTH]{ xlog("L_INFO","REMOTE_AUTH:$fU:$si$rm:REGISTER"); if ($T_reply_code == 401 or $T_reply_code == 407) { xlog("L_NOTICE", "Remote asked for authentication"); uac_auth(); } } if(is_method("REGISTER")){ xlog("L_INFO","AUTH:$fU:$si$rm:REGISTER:Ru:$rU"); if(uac_reg_request_to("$fU","0")){ xlog("L_NOTICE", "Found remote user [$rU] on [$rd] via [$du]"); t_on_failure("REMOTE_AUTH"); t_relay(); exit; }else{ xlog("L_INFO","AUTH:$fU:$si$rm:REGISTER:else"); if (!auth_check("$fd", "subscriber", "0")) { auth_challenge("$fd", "0"); exit; } } } Thanks in advance.
Iyi geceler Betül,
On 05/23/2014 10:40 AM, betul.cerit@netgsm.com.tr wrote:
Hi to all, We use uac module to use remote registration but when I add a new user to uacreg table the change doesnt take effect until I restart kamailio service which is not convenient for us.Is there another way to achieve this without restarting service?
Unfortunately there is no mechanism for this; the 'uacreg' facility in the 'uac' module is a bit rudimentary, because it is definitely not a primary or common application of Kamailio, in light of its character as a proxy.
I ran into this issue myself in a project a few years ago, and added the 'reg_timer_interval' modparam to 'uac' to increase the frequency with which registrations are managed and renewed:
http://git.sip-router.org/cgi-bin/gitweb.cgi?p=sip-router;a=commitdiff;h=455...
However, it provides no mechanism to reload the 'uacreg' table and become aware of new registration bindings to track.
It might be worthwhile for someone to consider adding this functionality to the existing timer. The problem is just that it's a pain because it involves rebuilding the entire runtime structure with a dynamic DB query, and not everyone is going to want it to work that way, so it would have to be made optional, which means more modparams, etc.
-- Alex