FreePBX Installation Notes
Users of FreePBX who are using version 3.5.0 or greater of DPMA and who have already Registered their FreePBX system do not need to separately execute the register utility.
DPMA Installation
No-charge license keys for DPMA are available from Digium's webstore at the following web address:
https://store.digium.com/cart.php?action=add&product_code=804-00032&quantity=1
Overview
Once you have a DPMA license key, there are two primary tasks to perform in order to install DPMA software:
- Download and execute the register utility to generate a valid license.
- Download and install the DPMA binary that is built for your platform.
- The DPMA binary consists of the res_digium_phone.so, the res_pjsip_endpoint_identifier_dpma.so binary, and the res_pjsip_dialog_info_digium_body_supplement.so binary.
- Releases for versions of Asterisk prior to Asterisk 12 contain only the res_digium_phone.so binary.
- Releases prior to 3.5.0 do not contain the res_pjsip_dialog_info_digium_body_supplement.so binary.
- The DPMA binary consists of the res_digium_phone.so, the res_pjsip_endpoint_identifier_dpma.so binary, and the res_pjsip_dialog_info_digium_body_supplement.so binary.
The steps to complete these tasks are described in the Installation Procedure section.
The register utility may be downloaded from:
http://downloads.digium.com/pub/register
The DPMA binary may be downloaded from:
http://downloads.digium.com/pub/telephony/res_digium_phone
Installation Procedure
- Download and execute the register utility to generate a valid license.
Download the register utility to the root home directory of your Asterisk server. First, log in as the user "root".
Command-line Example for 32-bit Linux# cd /root # wget http://downloads.digium.com/pub/register/x86-32/register
Change the permissions of the /root/register file to r-x------.
Command-line Example# chmod 500 /root/register
Run the register utility and follow the interactive instructions. The registration utility will prompt you for your DPMA license key.
Command-line Example# /root/register
Download and install the DPMA binary that is built for your platform.
Download DPMA to the root home directory of your Asterisk server,
Command-line Example for 32-bit Linux# cd /root # wget http://downloads.digium.com/pub/telephony/res_digium_phone/\ asterisk-13.0/x86-64/\ res_digium_phone-13.0_3.5.5-x86_64.tar.gz
Expand the res_digium_phone archive and copy the DPMA binary to the /usr/lib/asterisk/modules directory.
Command-line Example for 32-bit Linux# tar xzvf res_digium_phone-13.0_3.5.5-x86_64.tar.gz # cp /root/res_digium_phone-13.0_3.5.5-x86_64/res_*.so /usr/\ lib/asterisk/modules
For a RedHat or CentOS 64-bit distro (where a /usr/lib64 path exists), copy the modules to the /usr/lib64 directory instead:
# tar xzvf res_digium_phone-13.0_3.5.5-x86_64.tar.gz # cp /root/res_digium_phone-13.0_3.5.5-x86_64/res_*.so /usr/\ lib64/asterisk/modules
If you already have a configuration file present from a previous installation, skip this step. Next, copy the res_digium_phone.conf.sample sample configuration file to the /etc/asterisk directory and rename it res_digium_phone.conf.
Command-line Example for Config Copy# cp /root/res_digium_phone-13.0_3.5.5-x86_64/res_digium_phone.conf.sample \ /etc/asterisk/res_digium_phone.conf
The DPMA binary must now be loaded. (See General Notes to use multiple licenses on one server.)
Command-line Example for new installs# asterisk -rx "module load res_digium_phone.so"
Command-line Example for a DPMA upgrade# asterisk -rx "module reload res_digium_phone.so"
Verify that DPMA is licensed and operating. This can be verified by issuing "digium_phones license status" in the Asterisk CLI.
Command-line Example# asterisk -rvvv *CLI> digium_phones license status OK, Valid product license found
- Copy the generated license files to a safe place as described in the Backup Procedure section.
Backup Procedure
It is extremely important that you backup all of the files located in the /var/lib/asterisk/licenses directory. This directory contains the Host-ID specific license files for your system. These license files are tied to the MAC address of all the ethernet devices installed in your system. Creating a backup of this directory will allow you to restore your DPMA license file in case you need to reinstall your operating system. This will help prevent the need to contact Digium to request authorization to increment your DPMA key and from needing to freely order a new DPMA key if you exceed the maximum number of DPMA key increments allowed.
General Notes
A DPMA key must be re-registered if any of the Ethernet devices in your Asterisk server are changed, added, or removed. The unique DPMA license file which is located in your /var/lib/asterisk/licenses directory is tied to the MAC address of all the Ethernet devices installed in your system. A DPMA key can only be re-registered once without authorization from Digium. Digium must be contacted by phone in order to request authorization to have your DPMA key incremented. Digium reserves the right to deny authorization for having a DPMA key incremented.
It is not required or suggested to specify a load line in the /etc/asterisk/modules.conf for the DPMA binary. Asterisk will automatically load it using the autoload option. The autoload option is set on by default.