Table of Contents
hash_size
(integer)timer_interval
(integer)enable_clustering
(integer)db_url
(string)table_name
(string)registrar_column
(string)proxy_column
(string)aor_column
(string)third_party_registrant_column
(string)username_column
(string)password_column
(string)binding_URI_column
(string)binding_params_column
(string)expiry_column
(string)forced_socket_column
(string)cluster_shtag_column
(string)List of Tables
List of Examples
hash_size
parametertimer_interval
parameterenable_clustering
parameterThe module enable OpenSIPS to register itself on a remote SIP registrar.
At startup, the registrant records are loaded into a hash table in memory and a timer is started. The hash index is computed over the AOR field.
The timer interval for checking records in a hash bucket is computed by dividing the timer_interval module param by the number of hash buckets. When the timer fires for the first time, the first hash bucket will be checked and REGISTERs will be sent out for each record that is found. On the next timeout fire, the second hash bucket will be checked and so on. If the configured timer_interval module param is lower then the number of buckets, the module will fail to start.
Example: setting the timer_interval module to 8 with a hash_size of 2, will result in having 4 hash buckets (2^2=4) and buckets will be checked one by one every 2s (8/4=2).
Each registrant has it's own state. Registrant's status can be inspected via "reg_list" MI comand.
UAC registrant states:
0 - NOT_REGISTERED_STATE - the initial state (no REGISTER has been sent out yet);
1 - REGISTERING_STATE - waiting for a reply from the registrar after a REGISTER without authentication header was sent;
2 - AUTHENTICATING_STATE - waiting for a reply from the registrar after a REGISTER with authentication header was sent;
3 - REGISTERED_STATE - the uac is successfully registered;
4 - REGISTER_TIMEOUT_STATE : no reply received from the registrar;
5 - INTERNAL_ERROR_STATE - some errors were found/encountered during the processing of a reply;
6 - WRONG_CREDENTIALS_STATE - credentials rejected by the registrar;
7 - REGISTRAR_ERROR_STATE - error reply received from the registrar;
8 - UNREGISTERING_STATE - waiting for a reply from the registrar after an unREGISTER without authentication header was sent;
9 - AUTHENTICATING_UNREGISTER_STATE - waiting for a reply from the registrar after an unREGISTER with authentication header was sent;
The following modules must be loaded before this module:
uac_auth - UAC authentication module
The size of the hash table internally used to keep the registrants. A larger table distributes better the registration load in time but consumes more memory. The hash size is a power of number two.
Default value is 1.
Defines the periodic timer for checking the registrations status.
Default value is 100.
This parameter enables the clustering support in the module. This is used to share this registration between all the nodes in the cluster. When using this option, you should define (for each registrant record) a sharing tag - this sharing tag will control at the cluster level which node is entitled to perform the registation (only the node having that tag as active will do the registation, the onther nodes being idle).
Default value is 0 / off.
Example 1.3. Set enable_clustering
parameter
... modparam("uac_registrant", "enable_clustering", 1) ...
Database where to load the registrants from.
Default value is “NULL” (use default DB URL from core).
Example 1.4. Set “db_url” parameter
... modparam("uac_registrant", "db_url", "mysql://user:passw@localhost/database") ...
The database table that holds the registrant records.
Default value is “registrant”.
Example 1.5. Set “table_name” parameter
... modparam("uac_registrant", "table_name", "my_registrant") ...
The column's name in the database storing the URI pointing to the remote registrar (mandatory field). OpenSIPS expects a valid URI.
Default value is “registrar”.
Example 1.6. Set “registrar_column” parameter
... modparam("uac_registrant", "registrar_column", "registrant_uri") ...
The column's name in the database storing the URI pointing to the outbond proxy (not mandatory field). An empty or NULL value means no outbound proxy, otherwise OpenSIPS expects a valid URI.
Default value is “proxy”.
Example 1.7. Set “proxy_column” parameter
... modparam("uac_registrant", "proxy_column", "proxy_uri") ...
The column's name in the database storing the URI defining the address of record (mandatory field). The URI stored here will be used in the To URI of the REGISTER. OpenSIPS expects a valid URI.
Default value is “aor”.
The column's name in the database storing the URI defining the third party registrant (not mandatory field). The URI stored here will be used in the From URI of the REGISTER. An empty or NULL value means no third party registration (the From URI will be identical to To URI), otherwise OpenSIPS expects a valid URI.
Default value is “third_party_registrant”.
Example 1.9. Set “third_party_registrant_column” parameter
... modparam("uac_registrant", "third_party_registrant_column", "from_uri") ...
The column's name in the database storing the username for authentication (mandatory if the registrar requires authentication).
Default value is “username”.
Example 1.10. Set “username_column” parameter
... modparam("uac_registrant", "username_column", "auth_username") ...
The column's name in the database storing the password for authentication (mandatory if the registrar requires authntication).
Default value is “password”.
Example 1.11. Set “password_column” parameter
... modparam("uac_registrant", "password_column", "auth_passowrd") ...
The column's name in the database storing the binding URI in REGISTER (mandatory field). The URI stored here will be used in the Contact URI of the REGISTER. OpenSIPS expects a valid URI.
Default value is “binding_URI”.
Example 1.12. Set “binding_URI_column” parameter
... modparam("uac_registrant", "binding_URI_column", "contact_uri") ...
The column's name in the database storing the binding params in REGISTER (not mandatory field). If not NULL or not empty, the string stored here will be added as params to the Contact URI in REGISTER (it MUST start with “;”.
If the following two params are present, then the binding will be enforced to be unique (if two bindings are received in a 200ok, a complete binding removal will be performed before re-registering):
reg-id
+sip.instance
Example of params that will force unique binding:
;reg-id=1;+sip.instance="<urn:uuid:11111111-AABBCCDDEEFF>"
Default value is “binding_params”.
Example 1.13. Set “binding_params_column” parameter
... modparam("uac_registrant", "binding_params_column", "contact_params") ...
The column's name in the database storing the expiration time (not mandatory).
Default value is “expiry”.
Example 1.14. Set “expiry_column” parameter
... modparam("uac_registrant", "expiry_column", "registration_timeout") ...
The column's name in the database storing the socket for sending the REGISTER (not mandatory). If a forced socket is provided, the socket MUST be explicitely set as a global listening socket in the config (see “listen” core parameter).
Default value is “forced_socket”.
Example 1.15. Set “forced_socket_column” parameter
... modparam("uac_registrant", "forced_socket_column", "fs") ...
The column's name in the database storing the cluster sharing tag in [tag_name/cluster_id] format (not mandatory). If a cluster sharing tag is provided, the REGISTER requests will be fired out only when the tag is active.
Default value is “cluster_shtag”.
Example 1.16. Set “cluster_shtag_column” parameter
... modparam("uac_registrant", "cluster_shtag_column", "sh") ...
Lists the registrant records and their status.
Name: reg_list
Parameters: none
MI FIFO Command Format:
opensips-cli -x mi reg_list
Table 2.1. Top contributors by DevScore(1), authored commits(2) and lines added/removed(3)
Name | DevScore | Commits | Lines ++ | Lines -- | |
---|---|---|---|---|---|
1. | Ovidiu Sas (@ovidiusas) | 144 | 40 | 5687 | 3266 |
2. | Liviu Chircu (@liviuchircu) | 17 | 14 | 58 | 71 |
3. | Bogdan-Andrei Iancu (@bogdan-iancu) | 12 | 8 | 288 | 13 |
4. | Razvan Crainea (@razvancrainea) | 9 | 7 | 16 | 14 |
5. | Vlad Patrascu (@rvlad-patrascu) | 8 | 5 | 89 | 77 |
6. | Nick Altmann (@nikbyte) | 4 | 2 | 35 | 4 |
7. | Vlad Paiu (@vladpaiu) | 4 | 2 | 6 | 3 |
8. | Peter Lemenkov (@lemenkov) | 3 | 1 | 1 | 1 |
(1) DevScore = author_commits + author_lines_added / (project_lines_added / project_commits) + author_lines_deleted / (project_lines_deleted / project_commits)
(2) including any documentation-related commits, excluding merge commits. Regarding imported patches/code, we do our best to count the work on behalf of the proper owner, as per the "fix_authors" and "mod_renames" arrays in opensips/doc/build-contrib.sh. If you identify any patches/commits which do not get properly attributed to you, please submit a pull request which extends "fix_authors" and/or "mod_renames".
(3) ignoring whitespace edits, renamed files and auto-generated files
Table 2.2. Most recently active contributors(1) to this module
Name | Commit Activity | |
---|---|---|
1. | Liviu Chircu (@liviuchircu) | Mar 2014 - Sep 2020 |
2. | Razvan Crainea (@razvancrainea) | Sep 2011 - Sep 2019 |
3. | Bogdan-Andrei Iancu (@bogdan-iancu) | Dec 2012 - Apr 2019 |
4. | Vlad Patrascu (@rvlad-patrascu) | May 2017 - Apr 2019 |
5. | Ovidiu Sas (@ovidiusas) | Feb 2011 - Mar 2019 |
6. | Peter Lemenkov (@lemenkov) | Jun 2018 - Jun 2018 |
7. | Nick Altmann (@nikbyte) | Nov 2015 - Dec 2015 |
8. | Vlad Paiu (@vladpaiu) | Jul 2011 - Sep 2011 |
(1) including any documentation-related commits, excluding merge commits
Last edited by: Ovidiu Sas (@ovidiusas), Razvan Crainea (@razvancrainea), Bogdan-Andrei Iancu (@bogdan-iancu), Peter Lemenkov (@lemenkov), Liviu Chircu (@liviuchircu), Vlad Patrascu (@rvlad-patrascu).
Documentation Copyrights:
Copyright © 2011-2014 VoIP Embedded, Inc.