Login | Register

Documentation

Documentation -> Migration -> Migration from 1.5.x to 1.6.x

This page has been visited 5255 times.


This section is to provide useful help in migrating your OpenSIPS installations from any release from 1.5 branch to any release from 1.6 branch.

You can find the all the new additions in 1.6.x release compiled under this page. Reading it may help you understand the migration / update process.


1.  DB migration

One table was remove, one table had its schema changed and new tables were added (corresponding to the newly added modules).

The biggest change was done in the PERMISSIONS module, where the trusted and address tables were merged into the address table.

You can migrate your 1.5.x DB to the 1.5.x format by using the opensipdbctl(deprecated) or osipsconsole tools:

   # opensipsdbctl migrate opensips_1_5 opensips_1_6
   or
   # osipsconsole 
   > db migrate opensips_1_5 opensips_1_6
   > quit
   # 

where :

  • opensips_1_5 is the existing DB name corresponding to version 1.5.x format
  • opensips_1_6 is the DB name to be created for 1.6.x format

NOTE:

  • the old database will not be deleted, altered or changed - it will not be touched at all
  • new database will be created and data from old DB will be imported into it

Take care and edit (if necessary) the opensipsctlrc / '''osipsconsolerc" files if you want to customize the DB users used for accessing the new DB.

NOTE that the migration tool is available only for MYSQL databases!

Back to Table of Contents


2.  Script migration

2.1  OpenSIPS core

  1. "$branch" pseudovariable was replaced by "$br" variable

2.2  RADIUS modules

A generic AAA interface was build in 1.6 ( very similar to the DB interface). Therefore some changes must be made in the script in the parts referring to modules that use RADIUS. First you must load the aaa_radius module which contains the radius implementation for the AAA interface. Second, you must change the name of the module according to the list:

  1. auth_radius modules became auth_aaa module
  2. group_radius module was merged with group module
  3. uri_radius and uri_db were merged with uri module
  4. avp_radius module does not exist anymore and its functionalities were integrated in aaa_radius modules

2.3  ALIAS_DB module

  1. use_domain module parameter was removed as replaced by the "d" per-lookup option.

2.4  DISPATCHER module

  1. ds_is_from_list() replaced with a more generic function ds_is_in_list("ip","port"). The new function takes as parameters the IP and PORT to test against the dispatcher list, instead of using only the source IP and PORT (as ds_is_from_list()).

ds_is_from_list() == ds_is_in_list("$si","$sp")

2.5  GROUP module

  1. is_user_in() renamed as db_is_user_in()
  2. get_user_group() renamed as db_get_user_group()

2.6  PERMISSIONS module

  1. the following script parameters are no longer used: peer_tag_avp, trusted_table, source_col
  • ip_addr_col parameter was renamed as ip_col
  • tag_col parameter was renamed as info_col
  • from_col parameter was renamed as pattern_col
  1. the new functions check_address(), check_source_address(), get_source_group() replace old functions allow_address(), allow_source_address(), allow_trusted()

2.7  REGISTRAR module

  1. former global parameters like method_filtering, max_contacts, append_branches, use_path, path_mode and path_use_received are now per AOR / function parameters
  2. sock_flag was moved as flag of the save() function

2.8  TM module

  1. t_reply() function does not requires any more a prior create Transaction. If no transaction is found, it will be automatically created.
  2. t_cancel_branch() take flags ("a" - cancel all branches; "o" - cancel all other branches except current; "" - current branch); t_cancel_call() is obsoleted and removed (same as t_cancel_branch("a")).

2.9  URI module

  1. check_from() renamed to db_check_from()
  2. check_to() renamed to db_check_to()
  3. does_uri_exist() renamed to db_does_uri_exist()
  4. get_auth_id() renamed to db_get_auth_id()

Page last modified on May 16, 2013, at 07:25 PM