- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with opensips
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
This module purpose is to provision a SIP server running on Centos 7. This module was tested with puppet 5.
To install opensips on a server, simply use the following:
include opensips
This modules install an configure a SIP server based on the Opensips proxy, rtpproxy as media relay proxy and mariadb database server.
Packages installed:
- augeas
- bash-completion
- fail2ban
- opensips
- opensips-db_mysql
- opensips-httpd
- opensips-json
- opensips-proto_tls
- opensips-tls_mgm
- opensips-pua
- opensips-pua_usrloc
- rtpproxy
- sngrep
- tcpdump
Configured services:
- Opensips
- Mysql
- rtpproxy
- syslog
- logrotate
The following packages are dependencies:
- epel-release
The following modules are dependencies:
- puppetlabs-stdlib (>= 4.22.0 < 6.0.0)
- puppetlabs-mysql (>= 10.0.0 < 11.0.0)
You must install OpenSIPS Control Panel or rtpengine media proxy if you wish to use them, as these tools are not provided by this module. It is possible to use existing puppet forge modules like alisio-opensipscp or alisio-rtpengine.
There are sample manifest inside the 'tests' folder.
Sample install with Control Panel and rtpengine:
class {'opensips':}
class {'opensipscp':}
class {'rtpengine':}
Sample install with Control Panel and rtpproxy:
class {'opensips':
mediaproxy_type => 'rtpproxy',
}
-> class {'opensipscp':}
To install opensips on a server, simply include the class.
include opensips
Add SIP users with opensipctl:
opensipsctl add <USERNAME>@<DOMAIN> <PASSWORD>
Add domains with opensipctl:
opensipsctl domain add <DOMAIN>
To customize the installation change the parameters as desired, acording to the Parameters session.
class {'opensips':
proxy_port => 5070,
opensips_mediaserver_hostport => '192.168.33.10:5060'
}
These default parameters are set for testing purposes. You should, nay, you must, change it for production.
-
$db_server_ipIP address or hostname of the mysql database server. -
$db_server_portMariadb server port. -
$db_root_pwDatabase root password. -
$db_opensips_dbThe opensips mysql database name. -
$db_opensips_userThe opensips mysql user. -
$db_opensips_pwThe password for the opensips mysql user. -
$opensips_advertised_addressThe external IP address or hostname of a server behind NAT. -
$opensips_advertised_portThe external SIP port of a server behind NAT. -
$opensips_cfgThe path for the opensips config file -
$opensips_ctlrcThe path for the opensips control file -
$opensips_http_mi_portOpensips HTTP Manager Interface Port. Default value: 8888 -
$opensips_script_modeThe opensips operation mode, acording to the osipconfig utility. Accepted values: default, trunking, residential. -
$opensips_yum_repo_baseurlOpensips 2.4 yum repo 'http://yum.opensips.org/2.4/releases/el/7/$basearch' -
$opensips_defaultgw_hostportExternal gateway address:port (e.g. '127.0.0.1:5070') -
$opensips_mediaserver_hostportExternal mediaserver address:port (e.g '127.0.0.1:5070') -
$proxy_transportOpensips default signal transport. Accepted calues: udp, tcp, tls -
$proxy_ipAddress of the interface where opensips will listen to. -
$proxy_module_ratelimit_enableEnable/disable the ratelimit module for implemeting rate limiting for SIP requests. Default: true -
$proxy_module_ratelimit_limitthreshold limit per second for the ratelimit module. Default: 10 per second -
$proxy_portPort where opensips will listen to (e.g. 5060) -
$proxy_eth_interfaceArray of ethernet interfaces where opensips will listen to. E.g ['eth0','eth2'] -
$repo_installInstall necessary yum repositories. Default to true -
$mediaproxy_ctrl_socketControl socket composed by protocol:address:port for controlling rtpproxy. E.g 'udp:127.0.0.1:22222' -
$mediaproxy_offer_flagsThe “flags” string is a list of space-separated items. Each item is either an individual token, or a token in “key=value” format. Default to 'transcode-PCMA transcode-PCMU codec-mask-G729' -
$mediaproxy_typeSet which mediaproxy wil be used. Accepted values are 'rtpproxy' or 'rtpengine'. Default to rtpproxy -
$rtpproxy_listen_ipAddress where rtpproxy will listen to. E.g '0.0.0.0' -
$rtpproxy_min_portInteger representing the lowest rtp port rtpproxy will listen to (e.g 10000) -
$rtpproxy_max_portInteger representing the highest port rtpproxy will listen to (e.g 2000) -
$rtpproxy_file_limitInteger representing file descriptors limit (e.g. 16000) -
$syslog_localSyslog level (e.g. 5) for opensips and rtpproxy log -
$syslog_fileSyslog file for opensips and rtpproxy (e.g. /var/log/opensips.log) -
tls_certificate_pathPath for the certificate used with TLS and Websocket. Default to /etc/letsencrypt/live/acme.com/cert.pem -
tls_private_key_pathPath for the Private key used with TLS and Websocket. Default to /etc letsencrypt/live/acme.com/privkey.pem -
webrtc_ws_portWebsocket Ws (http) port. Default to 8080 -
webrtc_wss_portWebsocket Wss (https) port. Detault to 4443
The OpenSIPS module has tasks for performing trivial operations using Bolt. Please refer to to the Puppet documentation or Bolt documentation on how to execute a task.
-
opensips::ctlTask for using opensipsctl - opensips control tool. -
opensips::domainaddAdd domain to the database using opensipsctl -
opensips::domainrmRemove domain from the database using opensipsctl -
opensips::domainshowShow domain in memory using opensipsctl -
opensips::restartRestart OpenSIPS service -
opensips::ulshowShow opensips in-RAM online users
The most up to date reference and documentation for all configurations can be found online manual:
- Opensips: https://www.opensips.org/Documentation/Manual-2-4
- Rtpengine: https://github.com/sipwise/rtpengine
- Rtpproxy: https://www.rtpproxy.org/doc/master/user_manual.html
- MariaDB: https://mariadb.org/learn/
This module purpose is to provision an SIP server running on the Centos7 OS. This module was tested with puppet 5.
Copyright 2019 Antonio Alisio de Meneses Cordeiro
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.