This tool allows ACLs/groupt provisioning for the SIP users (from the subscriber table). This tool maps over the group module from OpenSIPS.
You can search by username, domain and group, or show all records. In terms of operations, you assign or un-assign a SIP user to one or multiple groups.
Database layer configuration file :
opensips-cp/config/tools/users/acl_management/db.inc.phpAttributes set in this file :
Local configuration file :
opensips-cp/config/tools/users/acp_management/local.inc.php
Attributes set in this file :
Attributes like variables which control the way the tool displays information from database.
// Sets number of results listed on a page $config->results_per_page = 10; //Sets number of pages per range $config->results_page_range = 10;
The name of the DB table where the groups (and mapping to SIP users) are stored.
$config->table_acls = "grp";
A list with the groups that you are using in your OpenSIPS config file. The value are custom and they are define by the script writer.
$config->grps = array("grp_one","grp_two","grp_three");