Copyright © 2007 1&1 Internet AG
Revision History | |
---|---|
Revision $Revision: 4872 $ | $Date: 2008-09-09 17:39:38 +0200 (Tue, 09 Sep 2008) $ |
Table of Contents
subscriber_table
(string)subscriber_user_col
(string)subscriber_domain_col
(string)subscriber_carrier_col
(string)config_source
(string)config_file
(string)default_tree
(string)use_domain
(int)fallback_default
(int)fetch_rows
(integer)match_mode
(integer)cr_user_carrier(user, domain, dstavp)
cr_route(carrier, domain, prefix_matching, rewrite_user, hash_source, descavp)
cr_prime_route(carrier, domain, prefix_matching, rewrite_user, hash_source, descavp)
cr_next_domain(carrier, domain, prefix_matching, host, reply_code, dstavp)
db_url
(String)carrierroute_table
(String)carrierroute_id_col
(string)carrierroute_carrier_col
(string)carrierroute_domain_col
(string)carrierroute_scan_prefix_col
(string)carrierroute_flags_col
(string)carrierroute_mask_col
(string)carrierroute_prob_col
(string)carrierroute_strip_col
(string)carrierroute_rewrite_host_col
(string)carrierroute_rewrite_prefix_col
(string)carrierroute_rewrite_suffix_col
(string)carrierroute_description_col
(string)carrierfailureroute_table
(String)carrierfailureroute_id_col
(string)carrierfailureroute_carrier_col
(string)carrierfailureroute_domain_col
(string)carrierfailureroute_scan_prefix_col
(string)carrierfailureroute_host_name_col
(string)carrierfailureroute_reply_code_col
(string)carrierfailureroute_flags_col
(string)carrierfailureroute_mask_col
(string)carrierfailureroute_next_domain_col
(string)carrierfailureroute_description_col
(string)carrier_name_table
(String)carrier_name_id_col
(string)carrier_name_carrier_col
(string)domain_name_table
(String)domain_name_id_col
(string)domain_name_domain_col
(string)List of Examples
subscriber_table
parametersubscriber_user_col
parametersubscriber_domain_col
parametersubscriber_carrier_col
parameterconfig_source
parameterconfig_file
parameterdefault_tree
parameteruse_domain
parameterfallback_default
parameterfetch_rows
parametermatch_mode
parametercr_replace_host
usagecr_deactivate_host
usagecr_activate_host
usagecr_add_host
usagecr_delete_host
usagedb_url
parametercarrierroute_table
parametercarrierroute_id_col
parametercarrierroute_carrier_col
parametercarrierroute_domain_col
parametercarrierroute_scan_prefix_col
parametercarrierroute_flags_col
parametercarrierroute_mask_col
parametercarrierroute_prob_col
parametercarrierroute_strip_col
parametercarrierroute_rewrite_host_col
parametercarrierroute_rewrite_prefix_col
parametercarrierroute_rewrite_suffix_col
parametercarrierroute_description_col
parametercarrierfailureroute_table
parametercarrierfailureroute_id_col
parametercarrierfailureroute_carrier_col
parametercarrierfailureroute_domain_col
parametercarrierfailureroute_scan_prefix_col
parametercarrierfailureroute_host_name_col
parametercarrierfailureroute_reply_code_col
parametercarrierfailureroute_flags_col
parametercarrierfailureroute_mask_col
parametercarrierfailureroute_next_domain_col
parametercarrierfailureroute_description_col
parametercarrier_name_table
parametercarrier_name_id_col
parametercarrier_name_carrier_col
parameterdomain_name_table
parameterdomain_name_id_col
parameterdomain_name_domain_col
parameterA module which provides routing, balancing and blacklisting capabilities.
The module provides routing, balancing and blacklisting capabilities. It reads routing entries from a database source or from a config file at Kamailio startup. It can uses one routing tree (for one carrier), or if needed for every user a different routing tree (unique for each carrier) for number prefix based routing. It supports several route tree domains, e.g. for failback routes or different routing rules for VoIP and PSTN targets.
Based on the tree, the module decides which number prefixes are forwarded to which gateway. It can also distribute the traffic by ratio parameters. Furthermore, the requests can be distributed by a hash funcion to predictable destinations. The hash source is configurable, two different hash functions are available.
This modules scales up to more than a few million users, and is able to handle more than several hundred thousand routing table entries. We recieved reports of some setups that used more than a million routing table entries. It also supports a large number of carriers and domains which can be efficiently looked up in most of the cases (see below for more informations). In load balancing scenarios the usage of the config file mode is recommended, to avoid the additional complexity that the database driven routing creates.
Routing tables can be reloaded and edited (in config file mode) with the MI interface, the config file is updated according the changes. This is not implemented for the db interface, because its easier to do the changes directly on the db. But the reload and dump functions works of course here too.
Some module functionality is not fully available in the config file mode, as it is not possible to specify all information that can be stored in the database tables in the config file. Further information about these limitations is given in later sections. For user based routing or LCR you should use the database mode.
In database mode, this module supports names and IDs for the carriers and domains. When using IDs for the routing functions, efficient binary search is used to find the needed data structures. If you are using constant strings as parameter, these will be converted to IDs during the fixup procedure. However, if you are using AVPs as parameter and they contain strings, this cannot be converted to IDs during the fixup procedure. In that case linear search is performed to find the needed data structures. So from a performance point of view it is better to pass only IDs in AVPs to the routing functions.
Basically this module could be used as an replacement for the lcr and the dispatcher module, if you have certain flexibility, integration and/or performance requirements that can't be satisfied with these modules. But for smaller installations it probably make more sense to use the lcr and dispatcher module.
If you want to use this module in failure routes, then you need to call “append_branch()” after rewriting the request URI in order to relay the message to the new target. Its also supportes the usage of database derived failure routing descisions with the carrierfailureroute table.
The following module must be loaded before this module:
a database module, when a database is used as configuration data source. Only SQL based databases are supported, as this module needs the capability to issue raw queries. Its not possible to use the dbtext or db_berkeley module at the moment.
The tm module, when you want to use the $T_reply_code pseudo-variable in the “cr_next_domain” function.
The name of the table containing the subscribers
Default value is “subscriber”.
Example 1.1. Set subscriber_table
parameter
... modparam("carrierroute", "subscriber_table", "subscriber") ...
The name of the column in the subscriber table containing the usernames.
Default value is “username”.
Example 1.2. Set subscriber_user_col
parameter
... modparam("carrierroute", "subscriber_user_col", "username") ...
The name of the column in the subscriber table containing the domain of the subscriber.
Default value is “domain”.
Example 1.3. Set subscriber_domain_col
parameter
... modparam("carrierroute", "subscriber_domain_col", "domain") ...
The name of the column in the subscriber table containing the carrier id of the subscriber.
Default value is “cr_preferred_carrier”.
Example 1.4. Set subscriber_carrier_col
parameter
... modparam("carrierroute", "subscriber_carrier_col", "cr_preferred_carrier") ...
Specifies whether the module loads its config data from a file or from a database. Possible values are file or db.
Default value is “file”.
Specifies the path to the config file.
Default value is “/etc/kamailio/carrierroute.conf”.
Example 1.6. Set config_file
parameter
... modparam("carrierroute", "config_file", "/etc/kamailio/carrierroute.conf") ...
The name of the carrier tree used per default (if the current subscriber has no preferred tree)
Default value is “default”.
When using tree lookup per user, this parameter specifies whether to use the domain part for user matching or not.
Default value is “0”.
This parameter defines the behaviour when using user-based tree lookup. If the user has a non-existing tree set and fallback_default is set to 1, the default tree is used. Otherwise, cr_user_rewrite_uri returns an error.
Default value is “1”.
The number of the rows to be fetched at once from database when loading the routing data. This value can be used to tune the load time at startup. For 1MB of private memory (default) it should be below 3750. The database driver must support the fetch_result() capability.
Default value is “2000”.
The number of individual characters that are used for matching. Valid values are 10 or 128. When you specifiy 10, only digits will be used for matching, this operation mode is equivalent to the old behaviour. When configured with 128, all standard ascii chars are available for matching. Please be aware that memory requirements for storing the routing tree in shared memory will also increase by a factor of 12.8.
Default value is “10”.
Previous versions of carrierroute had some more function. All the old semantics can be achieved by using the few new functions like this:
cr_rewrite_uri(domain, hash_source) -> cr_route("default", domain, "$rU", "$rU", hash_source) cr_prime_balance_uri(domain, hash_source) -> cr_prime_route("default", domain, "$rU", "$rU", hash_source) cr_rewrite_by_to(domain, hash_source) -> cr_route("default", domain, "$tU", "$rU", hash_source) cr_prime_balance_by_to(domain, hash_source) -> cr_prime_route("default", domain, "$tU", "$rU", hash_source) cr_rewrite_by_from(domain, hash_source) -> cr_route("default", domain, "$fU", "$rU", hash_source) cr_prime_balance_by_from(domain, hash_source) -> cr_prime_route("default", domain, "$fU", "$rU", hash_source) cr_user_rewrite_uri(uri, domain) -> cr_user_carrier(user, domain, "$avp(tree_avp)") -> cr_route("$avp(tree_avp)", domain, "$rU", "$rU", "call_id") cr_tree_rewrite_uri(tree, domain) -> cr_route(tree, domain, "$rU", "$rU", "call_id")
This function loads the carrier and stores it in an AVP. It cannot be used in the config file mode, as it needs a mapping of the given user to a certain carrier. The is derived from a database entry belonging to the user parameter. This mapping must be available in the table that is specified in the “subscriber_table” variable. This data is not cached in memory, that means for every execution of this function a database query will be done.
Meaning of the parameters is as follows:
user - Name of the user for the carrier tree lookup. Additional to a string any pseudo-variable could be used as input.
domain - Name of the routing domain to be used. Additional to a string any pseudo-variable could be used as input.
dstavp - Name of the AVP where to store the carrier id.
This function searches for the longest match for the user given in prefix_matching at the given domain in the given carrier tree. The Request URI is rewritten using rewrite_user and the given hash source and algorithm. Returns -1 if there is no data found or an empty rewrite host on the longest match is found. On sucess also the description is stored in the given AVP (if obmitted, nothing is stored in an AVP). This is useful if you need some additional informations that belongs to each gw, like the destination or the number of channels.
This function is only usable with rewrite_user and prefix_matching containing a valid string. This string needs to be numerical if the match_mode parameter is set to 10. It uses the standard CRC32 algorithm to calculate the hash values.
If flags and masks values are specified in the routing rule, they will be compared by this function to the message flags. Specify a flag and mask value of “0” to match to all possible message flags (this is the default value). If flags and mask are not zero, and no match to the message flags is possible, no routing will be done. The calculation of the hash and the load-balancing is done after the flags matching.
Meaning of the parameters is as follows:
carrier - The routing tree to be used. Additional to a string any pseudo-variable could be used as input.
domain - Name of the routing domain to be used. Additional to a string any pseudo-variable could be used as input.
prefix_matching - User name to be used for prefix matching in the routing tree. Additional to a string any pseudo-variable could be used as input.
rewrite_user - The user name to be used for applying the rewriting rule. Usually this is the user part of the request URI. Additional to a string any pseudo-variable could be used as input.
hash_source - The hash values of the destination set must be a contiguous range starting at 1, limited by the configuration parameter max_targets. Possible values for hash_source are: call_id, from_uri, from_user, to_uri and to_user.
decsavp - Name of the AVP where to store the description. This parameter is optional.
This function searches for the longest match for the user given in prefix_matching at the given domain in the given carrier tree. The Request URI is rewritten using rewrite_user and the given hash source and algorithm. Returns -1 if there is no data found or an empty rewrite host on the longest match is found. On success also the description is stored in the given AVP (if obmitted, nothing is stored in an AVP). This is useful if you need some additional informations that belongs to each gw, like the destination or the number of channels. This function is only usable with rewrite_user and prefix_matching containing a valid string. This string needs to be numerical if the match_mode parameter is set to 10.
It uses the prime hash algorithm to calculate the hash values. This means that the function behaves different then the normal routing function. If you don't know what this prime functionality is, you should just use the cr_route function. The prime routing algorithm not use the configured probabilities in order to route requests, it just uses a fixed hash distribution. If one of the hash targets is not available, and no backup rule is configured, the function will return -1.
Meaning of the parameters is as follows:
carrier - The routing tree to be used. Additional to a string any pseudo-variable could be used as input.
domain - Name of the routing domain to be used. Additional to a string any pseudo-variable could be used as input.
prefix_matching - User name to be used for prefix matching in the routing tree. Additional to a string any pseudo-variable could be used as input.
rewrite_user - The user name to be used for applying the rewriting rule. Usually this is the user part of the request URI. Additional to a string any pseudo-variable could be used as input.
hash_source - The hash values of the destination set must be a contiguous range starting at 1, limited by the configuration parameter max_targets. Possible values for hash_source are: call_id, from_uri, from_user, to_uri and to_user.
descavp - Name of the AVP where to store the description. This parameter is optional.
This function searches for the longest match for the user given in prefix_matching at the given domain in the given carrier failure tree. It tries to find a next domain matching the given host, reply_code and the message flags. The matching is done in this order: host, reply_code and then flags. The more wildcards in reply_code and the more bits used in flags, the lower the priority. Returns -1 if there is no data found or an empty next_domain on the longest match is found. Otherwise the next domain is stored in the given AVP. This function is only usable with rewrite_user and prefix_matching containing a valid string. This string needs to be numerical if the match_mode parameter is set to 10.
Meaning of the parameters is as follows:
carrier - The routing tree to be used. Additional to a string any pseudo-variable could be used as input.
domain - Name of the routing domain to be used. Additional to a string any pseudo-variable could be used as input.
prefix_matching - User name to be used for prefix matching in the routing tree. Additional to a string any pseudo-variable could be used as input.
host - The host name to be used for failure route rule matching. Usually this is the last tried routing destination stored in an avp by cr_route. Additional to a string any pseudo-variable could be used as input.
reply_code - The reply code to be used for failure route rule matching. Additional to a string any pseudo-variable could be used as input.
dstavp - Name of the AVP where to store the next routing domain.
All commands understand the "-?" parameter to print a short help message. The options have to be quoted as one string to be passed to MI interface. Each option except host and new host can be wildcarded by * (but only * and not things like "-d prox*").
This command reloads the routing data from the data source.
Important: When new domains have been added, a restart of the server must be done, because the mapping of the ids used in the config script cannot be updated at runtime at the moment. So a reload could result in a wrong routing behaviour, because the ids used in the script could differ from the one used internally from the server. Modifying of already existing domains is no problem.
This command can replace the rewrite_host of a route rule, it is only usable in file mode. Following options are possible:
-d - the domain containing the host
-p - the prefix containing the host
-h - the host to be replaced
-t - the new host
Use the "null" prefix to specify an empty prefix.
Example 1.12. cr_replace_host
usage
... kamctl fifo cr_replace_host "-d proxy -p 49 -h proxy1 -t proxy2" ...
This command deactivates the specified host, i.e. it sets its status to 0. It is only usable in file mode. Following options are possible:
-d - the domain containing the host
-p - the prefix containing the host
-h - the host to be deactivated
-t - the new host used as backup
When -t (new_host) is specified, the portion of traffic for the deactivated host is routed to the host given by -t. This is indicated in the output of dump_routes. The backup route is deactivated if the host is activated again.
Use the "null" prefix to specify an empty prefix.
Example 1.13. cr_deactivate_host
usage
... kamctl fifo cr_deactivate_host "-d proxy -p 49 -h proxy1" ...
This command activates the specified host, i.e. it sets its status to 1. It is only usable in file mode. Following options are possible:
-d - the domain containing the host
-p - the prefix containing the host
-h - the host to be activated
Use the "null" prefix to specify an empty prefix.
Example 1.14. cr_activate_host
usage
... kamctl fifo cr_activate_host "-d proxy -p 49 -h proxy1" ...
This command adds a route rule, it is only usable in file mode. Following options are possible:
-d - the domain containing the host
-p - the prefix containing the host
-h - the host to be added
-w - the weight of the rule
-P - an optional rewrite prefix
-S - an optional rewrite suffix
-i - an optional hash index
-s - an optional strip value
Use the "null" prefix to specify an empty prefix.
This command delete the specified hosts or rules, i.e. remove them from the route tree. It is only usable in file mode. Following options are possible:
-d - the domain containing the host
-p - the prefix containing the host
-h - the host to be added
-w - the weight of the rule
-P - an optional rewrite prefix
-S - an optional rewrite suffix
-i - an optional hash index
-s - an optional strip value
Use the "null" prefix to specify an empty prefix.
Example 1.16. cr_delete_host
usage
... kamctl fifo cr_delete_host "-d proxy -p 49 -h proxy1 -w 0.25" ...
Example 1.17. Configuration example - Routing to default tree
... route { # route calls based on hash over callid # choose route domain 0 of the default carrier if(!cr_route("default", "0", "$rU", "$rU", "call_id")){ sl_send_reply("403", "Not allowed"); } else { # In case of failure, re-route the request t_on_failure("1"); # Relay the request to the gateway t_relay(); } } failure_route[1] { revert_uri(); # In case of failure, send it to an alternative route: if (t_check_status("408|5[0-9][0-9]")) { #choose route domain 1 of the default carrier if(!cr_route("default", "1", "$rU", "$rU", "call_id")){ t_reply("403", "Not allowed"); } else { t_on_failure("2"); append_branch(); t_relay(); } } } failure_route[2] { # further processing }
Example 1.18. Configuration example - Routing to user tree
... route[1] { cr_user_carrier("$fU", "$fd", "$avp(s:carrier)"); # just an example domain $avp(s:domain)="start"; if (!cr_route("$avp(s:carrier)", "$avp(s:domain)", "$rU", "$rU", "call_id")) { xlog("L_ERR", "cr_route failed\n"); exit; } # if you store also the port as part of the rewrite host, # otherwise you can just use $rd later $avp(s:host)= $rd+":"+$rp; t_on_failure("1"); if (!t_relay()) { sl_reply_error(); }; } failure_route[1] { revert_uri(); if (!cr_next_domain("$avp(s:carrier)", "$avp(s:domain)", "$rU", "$avp(s:host)", "$T_reply_code", "$avp(s:domain)")) { xlog("L_ERR", "cr_next_domain failed\n"); exit; } if (!cr_route("$avp(s:carrier)", "$avp(s:domain)", "$rU", "$rU", "call_id")) { xlog("L_ERR", "cr_route failed\n"); exit; } $avp(s:host)= $rd+":"+$rp; t_on_failure("1"); append_branch(); if (!t_relay()) { xlog("L_ERR", "t_relay failed\n"); exit; }; } ...
Example 1.19. Configuration example - module configuration
The following config file specifies within the default carrier two domains, each with an prefix that contains two hosts. It is not possible to specify another carrier if you use the config file as data source.
All traffic will be equally distributed between the hosts, both are active. The hash algorithm will working over the [1,2] set, messages hashed to one will go to the first host, the other to the second one. Don't use a hash index value of zero. If you ommit the hash completly, the module gives them a autogenerated value, starting from one.
Use the “NULL” prefix to specify an empty prefix in the config file. Please note that the prefix is matched against the request URI (or to URI), if they did not contain a valid (numerical) URI, no match is possible. So for loadbalancing purposes e.g. for your registrars, you should use an empty prefix.
... domain proxy { prefix 49 { max_targets = 2 target proxy1.localdomain { prob = 0.500000 hash_index = 1 status = 1 comment = "test target 1" } target proxy2.localdomain { prob = 0.500000 hash_index = 2 status = 1 comment = "test target 2" } } } domain register { prefix NULL { max_targets = 2 target register1.localdomain { prob = 0.500000 hash_index = 1 status = 1 comment = "test target 1" } target register2.localdomain { prob = 0.500000 hash_index = 2 status = 1 comment = "test target 2" } } } ...
Before running Kamailio with carrierroute, you have to setup the database table where the module will store the routing data. For that, if the table was not created by the installation script or you choose to install everything by yourself you can use the carrierroute-create.sql SQL script in the database directories in the kamailio/scripts folder as template. Database and table name can be set with module parameters so they can be changed, but the name of the columns must be as they are in the SQL script. You can also find the complete database documentation on the project webpage, http://www.kamailio.org/docs/db-tables/kamailio-db-devel.html. The flags and mask columns have the same function as in the carrierfailureroute table. A zero value in the flags and mask column means that any message flags will match this rule.
For a minimal configuration either use the config file given above, or insert some data into the tables of the module.
Example 1.20. Example database content - carrierroute table
... +----+---------+--------+-------------+-------+------+---------------+ | id | carrier | domain | scan_prefix | flags | prob | rewrite_host | +----+---------+--------+-------------+-------+------+---------------+ | 1 | 1 | 1 | 49 | 0 | 0.5 | de-1.carrier1 | | 2 | 1 | 1 | 49 | 0 | 0.5 | de-2.carrier1 | | 3 | 1 | 1 | 49 | 16 | 1 | de-3.carrier1 | | 4 | 1 | 1 | | 0 | 1 | gw.carrier1-1 | | 5 | 1 | 2 | 49 | 0 | 1 | gw.carrier1-1 | | 6 | 1 | 3 | | 0 | 1 | gw.carrier1-2 | | 7 | 1 | 4 | | 0 | 1 | gw.carrier1-3 | | 8 | 2 | 1 | 49 | 0 | 0.5 | de-1.carrier2 | | 9 | 2 | 1 | 49 | 0 | 0.5 | de-2.carrier2 | | 10 | 2 | 1 | | 0 | 1 | gw.carrier2 | | 11 | 2 | 2 | 49 | 0 | 1 | gw.carrier2 | | 12 | 3 | 8 | 49 | 0 | 1 | de-gw.default | | 13 | 3 | 8 | | 0 | 1 | gw.default | +----+---------+--------+-------------+-------+------+---------------+ ...
This table contains three routes to two gateways for the “49” prefix, and a default route for other prefixes over carrier 2 and carrier 1. The gateways for the default carrier will be used for functions that don't support the user specific carrier lookup. The routing rules for carrier 1 and carrier 2 for the “49” prefix contains a additional rule with the domain 2, that can be used for example as fallback if the gateways in domain 1 are not reachable. Two more fallback rules (domain 3 and 4) for carrier 1 are also supplied to support the functionality of the carrierfailureroute table example that is provided in the next section.
This table provides also a “carrier 1” routing rule for the “49” prefix, that is only choosen if some message flags are set. If this flags are not set, the other two rules are used. The “strip”, “mask” and “comment” colums are omitted for brevity.
Example 1.21. Example database content - simple carrierfailureroute table
... +----+---------+--------+---------------+------------+-------------+ | id | carrier | domain | host_name | reply_code | next_domain | +----+---------+--------+---------------+------------+-------------+ | 1 | 1 | 1 | gw.carrier1-2 | ... | 3 | | 2 | 1 | 1 | gw.carrier1-3 | ... | 2 | +----+---------+--------+---------------+------------+-------------+ ...
This table contains two failure routes for the “gw.carrier1-1” and “-2” gateways. For any (failure) reply code the respective next domain is choosen. After that no more failure routes are available, an error will be returned from the “cr_next_domain” function. Not all table colums are show here for brevity.
For each failure route domain and carrier that is added to the carrierfailureroute table there must be at least one corresponding entry in the carrierroute table, otherwise the module will not load the routing data.
Example 1.22. Example database content - more complex carrierfailureroute table
... +----+---------+-----------+------------+--------+-----+-------------+ | id | domain | host_name | reply_code | flags | mask | next_domain | +----+---------+-----------+------------+-------+------+-------------+ | 1 | 99 | | 408 | 16 | 16 | | | 2 | 99 | gw1 | 404 | 0 | 0 | 100 | | 3 | 99 | gw2 | 50. | 0 | 0 | 100 | | 4 | 99 | | 404 | 2048 | 2112 | 101 | +----+---------+-----------+------------+-------+------+-------------+ ...
This table contains four failure routes that shows the usage of more advanced features. The first route matches to a 408, and to some flag for example that indicates that ringing has happened. If this flag is set, there will be no further forwarding, because next_domain is empty. In the second and third routes are certain gateway errors matched, if this errors have occured, then the next domain will be choosen. The last route does forwarding according some flags, e.g. the customer came from a certain carrier, and has call-forwarding deactivated. In order to use the routing that is specified above, a matching carrierroute table must be provided, that holds domain entries for this routing rules. Not all table colums are show here for brevity.
Example 1.23. Example database content - carrier_name table
... +----+----------+ | id | carrier | +----+----------+ | 1 | carrier1 | | 2 | carrier2 | | 3 | default | +----+----------+ ...
This table contains the mapping of the carrier id to actual names.
Example 1.24. Example database content - domain_name table
... +----+----------+ | id | domain | +----+----------+ | 1 | domain1 | | 2 | domain2 | | 3 | domain3 | +----+----------+ ...
This table contains the mapping of the domain id to actual names.
For a functional routing the “cr_preferred_carrier” column must be added to the subscriber table (or to the table and column that you specified as modul parameter) to choose the actual carrier for the users.
Example 1.25. Necessary extensions for the user table
Suggested changes:
... ALTER TABLE subscriber ADD cr_preferred_carrier int(10) default NULL; ...
URL to the database containing the data.
Default value is “mysql://openserro:openserro@localhost/openser”.
Example 2.1. Set db_url
parameter
... modparam("carrierroute", "db_url", "dbdriver://username:password@dbhost/dbname") ...
Name of the carrierroute table for the carrierroute module.
Default value is “carrierroute”.
Example 2.2. Set carrierroute_table
parameter
... modparam("carrierroute", "carrierroute_table", "carrierroute") ...
Name of the column contains the unique identifier of a route.
Example 2.3. Set carrierroute_id_col
parameter
... modparam("carrierroute", "carrierroute_id_col", "id") ...
This column contains the carrier id.
Example 2.4. Set carrierroute_carrier_col
parameter
... modparam("carrierroute", "carrierroute_carrier_col", "carrier") ...
This column contains the routing domain id. You can define several routing domains to have different routing rules. Maybe you use domain 0 for normal routing and domain 1 if domain 0 failed.
Example 2.5. Set carrierroute_domain_col
parameter
... modparam("carrierroute", "carrierroute_domain_col", "domain") ...
Name of column contains the scan prefixes. Scan prefixes define the matching portion of a phone number, e.g. when we have the scan prefixes 49721 and 49, the called number is 49721913740, it matches 49721, because the longest match is taken. If no prefix matches, the number is not routed. To prevent this, an empty prefix value of could be added.
Example 2.6. Set carrierroute_scan_prefix_col
parameter
... modparam("carrierroute", "carrierroute_scan_prefix_col", "scan_prefix") ...
This column contains the flags used for rule matching.
Example 2.7. Set carrierroute_flags_col
parameter
... modparam("carrierroute", "carrierroute_flags_col", "flags") ...
This column contains the mask that is applied to the message flags before rule matching.
Example 2.8. Set carrierroute_mask_col
parameter
... modparam("carrierroute", "carrierroute_mask_col", "mask") ...
Name of column contains the probability. The probability value is used to distribute the traffic between several gateways. Let's say 70 % of the traffic shall be routed to gateway A, the other 30 % shall be routed to gateway B, we define a rule for gateway A with a prob value of 0.7 and a rule for gateway B with a prob value of 0.3. If all probabilities for a given prefix, tree and domain don't add to 100%, the prefix values will be adjusted according the given prob values. E.g. if three hosts with prob values of 0.5, 0.5 and 0.4 are defined, the resulting probabilities are 35.714, 35.714 and 28.571%. But its better to choose meaningful values in the first place because of clarity.
Example 2.9. Set carrierroute_prob_col
parameter
... modparam("carrierroute", "carrierroute_prob_col", "prob") ...
Name of the column contains the number of digits to be stripped of the userpart of an URI before prepending rewrite_prefix.
Example 2.10. Set carrierroute_strip_col
parameter
... modparam("carrierroute", "carrierroute_strip_col", "strip") ...
Name of column contains the rewrite prefixes. Here you can define a rewrite prefix for the localpart of the SIP URI. An empty field represents a blacklist entry, anything else is put as domain part into the Request URI of the SIP message.
Example 2.11. Set carrierroute_rewrite_host_col
parameter
... modparam("carrierroute", "carrierroute_rewrite_host_col", "rewrite_host") ...
Name of column contains the rewrite prefixes. Here you can define a rewrite prefix for the localpart of the SIP URI.
Example 2.12. Set carrierroute_rewrite_prefix_col
parameter
... modparam("carrierroute", "carrierroute_rewrite_prefix_col", "rewrite_prefix") ...
Name of column contains the rewrite suffixes. Here you can define a rewrite suffix for the localpart of the SIP URI.
Example 2.13. Set carrierroute_rewrite_suffix_col
parameter
... modparam("carrierroute", "carrierroute_rewrite_suffix_col", "rewrite_suffix") ...
A comment for the route entry, useful for larger routing tables. The comment is also displayed by the fifo cmd "cr_dump_routes".
Example 2.14. Set carrierroute_description_col
parameter
... modparam("carrierroute", "carrierroute_description_col", "description") ...
Name of the carrierfailureroute table for the carrierroute module.
Default value is “carrierfailureroute”.
Example 2.15. Set carrierfailureroute_table
parameter
... modparam("carrierroute", "carrierfailureroute_table", "carrierfailureroute") ...
This column contains the unique identifier of a failure route.
Example 2.16. Set carrierfailureroute_id_col
parameter
... modparam("carrierroute", "carrierfailureroute_id_col", "id") ...
This column contains the carrier id.
Example 2.17. Set carrierfailureroute_carrier_col
parameter
... modparam("carrierroute", "carrierfailureroute_carrier_col", "carrier") ...
This column contains the routing domain id. You can define several routing domains to have different routing rules. Maybe you use domain 0 for normal routing and domain 1 if domain 0 failed.
Example 2.18. Set carrierfailureroute_domain_col
parameter
... modparam("carrierroute", "carrierfailureroute_domain_col", "domain") ...
Name of column contains the the scan prefixes. Scan prexies define the matching portion of a phone number, e.g. we have the scan prefixes 49721 and 49, the called number is 49721913740, it matches 49721, because the longest match is taken. If no prefix matches, the number is not failure routed. To prevent this, an empty prefix value of could be added.
Example 2.19. Set carrierfailureroute_scan_prefix_col
parameter
... modparam("carrierroute", "carrierfailureroute_scan_prefix_col", "scan_prefix") ...
Name of the column containing the host name of the last routing destination, using for rules matching.
Example 2.20. Set carrierfailureroute_host_name_col
parameter
... modparam("carrierroute", "carrierfailureroute_host_name_col", "host_name") ...
This column contains the reply code used for rule matching.
Example 2.21. Set carrierfailureroute_reply_code_col
parameter
... modparam("carrierroute", "carrierfailureroute_reply_code_col", "reply_code") ...
This column contains the flags used for rule matching.
Example 2.22. Set carrierfailureroute_flags_col
parameter
... modparam("carrierroute", "carrierfailureroute_flags_col", "flags") ...
This column contains the mask that is applied to the message flags before rule matching.
Example 2.23. Set carrierfailureroute_mask_col
parameter
... modparam("carrierroute", "carrierfailureroute_mask_col", "mask") ...
This column contains the route domain id that should be used for the next routing attempt.
Example 2.24. Set carrierfailureroute_next_domain_col
parameter
... modparam("carrierroute", "carrierfailureroute_next_domain_col", "next_domain") ...
A comment for the route entry, useful for larger routing tables.
Example 2.25. Set carrierfailureroute_description_col
parameter
... modparam("carrierroute", "carrierfailureroute_description_col", "description") ...
Name of the carrier_name table for the carrierroute module.
Default value is “carrier_name”.
Example 2.26. Set carrier_name_table
parameter
... modparam("carrierroute", "carrier_name_table", "carrier_name") ...
Name of the column containing the unique identifier of a carrier.
Example 2.27. Set carrier_name_id_col
parameter
... modparam("carrierroute", "carrier_name_id_col", "id") ...
This column contains the carrier name.
Example 2.28. Set carrier_name_carrier_col
parameter
... modparam("carrierroute", "carrier_name_carrier_col", "carrier") ...
Name of the domain_name table for the carrierroute module.
Default value is “domain_name”.
Example 2.29. Set domain_name_table
parameter
... modparam("carrierroute", "domain_name_table", "domain_name") ...