mirror of https://github.com/sipwise/kamailio.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
414 lines
11 KiB
414 lines
11 KiB
#!KAMAILIO
|
|
#
|
|
# Kamailio SIP Server v5.0 - default configuration script
|
|
# - web: https://www.kamailio.org
|
|
# - git: http://sip-router.org
|
|
#
|
|
# Direct your questions about this file to: <sr-users@lists.kamailio.org>
|
|
#
|
|
# Refer to the Core CookBook at https://www.kamailio.org/wikidocs/
|
|
# for an explanation of possible statements, functions and parameters.
|
|
#
|
|
# Several features can be enabled using '#!define WITH_FEATURE' directives:
|
|
#
|
|
# *** To run in debug mode:
|
|
# - define WITH_DEBUG
|
|
#
|
|
# *** To enable mysql:
|
|
# - define WITH_MYSQL
|
|
#
|
|
# *** To enable authentication execute:
|
|
# - enable mysql
|
|
# - define WITH_AUTH
|
|
# - add users using 'kamctl'
|
|
#
|
|
# *** To enable IP authentication execute:
|
|
# - enable mysql
|
|
# - enable authentication
|
|
# - define WITH_IPAUTH
|
|
# - add IP addresses with group id '1' to 'address' table
|
|
#
|
|
# *** To enable persistent user location execute:
|
|
# - enable mysql
|
|
# - define WITH_USRLOCDB
|
|
#
|
|
# *** To enable nat traversal execute:
|
|
# - define WITH_NAT
|
|
# - install RTPProxy: http://www.rtpproxy.org
|
|
# - start RTPProxy:
|
|
# rtpproxy -l _your_public_ip_ -s udp:localhost:7722
|
|
# - option for NAT SIP OPTIONS keepalives: WITH_NATSIPPING
|
|
#
|
|
# *** To use RTPEngine (instead of RTPProxy) for nat traversal execute:
|
|
# - define WITH_RTPENGINE
|
|
# - install RTPEngine: https://github.com/sipwise/rtpengine
|
|
# - start RTPEngine:
|
|
# rtpengine --listen-ng=127.0.0.1:2223 ...
|
|
#
|
|
# *** To enable TLS support execute:
|
|
# - adjust CFGDIR/tls.cfg as needed
|
|
# - define WITH_TLS
|
|
#
|
|
# *** To enhance accounting execute:
|
|
# - enable mysql
|
|
# - define WITH_ACCDB
|
|
# - add following columns to database
|
|
#!ifdef ACCDB_COMMENT
|
|
ALTER TABLE acc ADD COLUMN src_user VARCHAR(64) NOT NULL DEFAULT '';
|
|
ALTER TABLE acc ADD COLUMN src_domain VARCHAR(128) NOT NULL DEFAULT '';
|
|
ALTER TABLE acc ADD COLUMN src_ip varchar(64) NOT NULL default '';
|
|
ALTER TABLE acc ADD COLUMN dst_ouser VARCHAR(64) NOT NULL DEFAULT '';
|
|
ALTER TABLE acc ADD COLUMN dst_user VARCHAR(64) NOT NULL DEFAULT '';
|
|
ALTER TABLE acc ADD COLUMN dst_domain VARCHAR(128) NOT NULL DEFAULT '';
|
|
ALTER TABLE missed_calls ADD COLUMN src_user VARCHAR(64) NOT NULL DEFAULT '';
|
|
ALTER TABLE missed_calls ADD COLUMN src_domain VARCHAR(128) NOT NULL DEFAULT '';
|
|
ALTER TABLE missed_calls ADD COLUMN src_ip varchar(64) NOT NULL default '';
|
|
ALTER TABLE missed_calls ADD COLUMN dst_ouser VARCHAR(64) NOT NULL DEFAULT '';
|
|
ALTER TABLE missed_calls ADD COLUMN dst_user VARCHAR(64) NOT NULL DEFAULT '';
|
|
ALTER TABLE missed_calls ADD COLUMN dst_domain VARCHAR(128) NOT NULL DEFAULT '';
|
|
#!endif
|
|
|
|
#!define WITH_MYSQL
|
|
#!define WITH_AUTH
|
|
#!define WITH_IPAUTH
|
|
#!define WITH_USRLOCDB
|
|
#!define WITH_NAT
|
|
#!define WITH_ANTIFLOOD
|
|
#!define WITH_ACCDB
|
|
|
|
####### Include Local Config If Exists #########
|
|
import_file "kamailio-local.cfg"
|
|
|
|
####### Defined Values #########
|
|
|
|
# *** Value defines - IDs used later in config
|
|
#!ifdef WITH_MYSQL
|
|
# - database URL - used to connect to database server by modules such
|
|
# as: auth_db, acc, usrloc, a.s.o.
|
|
#!ifndef DBURL
|
|
#!define DBURL "mysql://kamailio:kamailiorw@localhost/kamailio"
|
|
#!endif
|
|
#!endif
|
|
#!define MULTIDOMAIN 0
|
|
|
|
# - flags
|
|
# FLT_ - per transaction (message) flags
|
|
# FLB_ - per branch flags
|
|
#!define FLT_ACC 1
|
|
#!define FLT_ACCMISSED 2
|
|
#!define FLT_ACCFAILED 3
|
|
#!define FLT_NATS 5
|
|
|
|
#!define FLB_NATB 6
|
|
#!define FLB_NATSIPPING 7
|
|
|
|
####### Global Parameters #########
|
|
|
|
### LOG Levels: 3=DBG, 2=INFO, 1=NOTICE, 0=WARN, -1=ERR
|
|
#!ifdef WITH_DEBUG
|
|
debug=4
|
|
log_stderror=yes
|
|
#!else
|
|
debug=2
|
|
log_stderror=no
|
|
#!endif
|
|
|
|
memdbg=5
|
|
memlog=5
|
|
|
|
#!ifdef WITH_CFGLUA
|
|
log_prefix="LUA {$rm}: "
|
|
#!define KEMIENGINE "lua"
|
|
#!define KEMIMODULE "app_lua"
|
|
#!define KEMILOAD "/usr/local/etc/kamailio/kamailio-basic-kemi-lua.lua"
|
|
#!endif
|
|
|
|
#!ifdef WITH_CFGPYTHON
|
|
log_prefix="PY2 {$rm}: "
|
|
#!define KEMIENGINE "python"
|
|
#!define KEMIMODULE "app_python"
|
|
#!define KEMILOAD "/usr/local/etc/kamailio/kamailio-basic-kemi-python.py"
|
|
#!endif
|
|
|
|
#!ifdef WITH_CFGPYTHON3
|
|
log_prefix="PY3 {$rm}: "
|
|
#!define KEMIENGINE "python"
|
|
#!define KEMIMODULE "app_python3"
|
|
#!define KEMILOAD "/usr/local/etc/kamailio/kamailio-basic-kemi-python.py"
|
|
#!endif
|
|
|
|
#!ifdef WITH_CFGPYTHON3S
|
|
log_prefix="PY8 {$rm}: "
|
|
#!define KEMIENGINE "python"
|
|
#!define KEMIMODULE "app_python3s"
|
|
#!define KEMILOAD "/usr/local/etc/kamailio/kamailio-basic-kemi-python3s.py"
|
|
#!endif
|
|
|
|
#!ifdef WITH_CFGJSDT
|
|
log_prefix="JSC {$rm}: "
|
|
#!define KEMIENGINE "jsdt"
|
|
#!define KEMIMODULE "app_jsdt"
|
|
#!define KEMILOAD "/usr/local/etc/kamailio/kamailio-basic-kemi-jsdt.js"
|
|
#!endif
|
|
|
|
#!ifdef WITH_CFGSQLANG
|
|
log_prefix="SQL {$rm}: "
|
|
#!define KEMIENGINE "sqlang"
|
|
#!define KEMIMODULE "app_sqlang"
|
|
#!define KEMILOAD "/usr/local/etc/kamailio/kamailio-basic-kemi-sqlang.sq"
|
|
#!endif
|
|
|
|
#!ifdef WITH_CFGRUBY
|
|
log_prefix="RUB {$rm}: "
|
|
#!define KEMIENGINE "ruby"
|
|
#!define KEMIMODULE "app_ruby"
|
|
#!define KEMILOAD "/usr/local/etc/kamailio/kamailio-basic-kemi-ruby.rb"
|
|
#!endif
|
|
|
|
#!ifndef KEMIENGINE
|
|
log_prefix="NAT {$rm}: "
|
|
#!endif
|
|
|
|
latency_cfg_log=2
|
|
latency_log=2
|
|
latency_limit_action=100000
|
|
latency_limit_db=200000
|
|
log_facility=LOG_LOCAL0
|
|
|
|
fork=yes
|
|
children=2
|
|
|
|
/* uncomment the next line to disable TCP (default on) */
|
|
#disable_tcp=yes
|
|
|
|
/* uncomment the next line to disable the auto discovery of local aliases
|
|
* based on reverse DNS on IPs (default on) */
|
|
#auto_aliases=no
|
|
|
|
/* add local domain aliases */
|
|
#alias="sip.mydomain.com"
|
|
|
|
/* uncomment and configure the following line if you want Kamailio to
|
|
* bind on a specific interface/port/proto (default bind on all available) */
|
|
#listen=udp:10.0.0.10:5060
|
|
|
|
/* port to listen to
|
|
* - can be specified more than once if needed to listen on many ports */
|
|
port=5060
|
|
|
|
#!ifdef WITH_TLS
|
|
enable_tls=yes
|
|
#!endif
|
|
|
|
# life time of TCP connection when there is no traffic
|
|
# - a bit higher than registration expires to cope with UA behind NAT
|
|
tcp_connection_lifetime=3605
|
|
|
|
####### Modules Section ########
|
|
|
|
/* set paths to location of modules (to sources or installation folders) */
|
|
# mpath="/usr/local/lib/kamailio/modules/"
|
|
|
|
#!ifdef WITH_MYSQL
|
|
loadmodule "db_mysql.so"
|
|
#!endif
|
|
|
|
loadmodule "jsonrpcs.so"
|
|
loadmodule "kex.so"
|
|
loadmodule "corex.so"
|
|
loadmodule "tm.so"
|
|
loadmodule "tmx.so"
|
|
loadmodule "sl.so"
|
|
loadmodule "rr.so"
|
|
loadmodule "pv.so"
|
|
loadmodule "maxfwd.so"
|
|
loadmodule "usrloc.so"
|
|
loadmodule "registrar.so"
|
|
loadmodule "textops.so"
|
|
loadmodule "siputils.so"
|
|
loadmodule "xlog.so"
|
|
loadmodule "sanity.so"
|
|
loadmodule "ctl.so"
|
|
loadmodule "cfg_rpc.so"
|
|
loadmodule "acc.so"
|
|
loadmodule "kemix.so"
|
|
|
|
#!ifdef WITH_AUTH
|
|
loadmodule "auth.so"
|
|
loadmodule "auth_db.so"
|
|
#!ifdef WITH_IPAUTH
|
|
loadmodule "permissions.so"
|
|
#!endif
|
|
#!endif
|
|
|
|
#!ifdef WITH_NAT
|
|
loadmodule "nathelper.so"
|
|
#!ifdef WITH_RTPENGINE
|
|
loadmodule "rtpengine.so"
|
|
#!else
|
|
loadmodule "rtpproxy.so"
|
|
#!endif
|
|
#!endif
|
|
|
|
#!ifdef WITH_TLS
|
|
loadmodule "tls.so"
|
|
#!endif
|
|
|
|
#!ifdef WITH_DEBUG
|
|
loadmodule "debugger.so"
|
|
#!endif
|
|
|
|
#!ifdef WITH_ANTIFLOOD
|
|
loadmodule "htable.so"
|
|
loadmodule "pike.so"
|
|
#!endif
|
|
|
|
#!ifdef KEMIENGINE
|
|
loadmodule KEMIMODULE
|
|
#!endif
|
|
|
|
# ----------------- setting module-specific parameters ---------------
|
|
|
|
# ----- jsonrpcs params -----
|
|
modparam("jsonrpcs", "pretty_format", 1)
|
|
/* set the path to RPC fifo control file */
|
|
# modparam("jsonrpcs", "fifo_name", "/run/kamailio/kamailio_rpc.fifo")
|
|
/* set the path to RPC unix socket control file */
|
|
# modparam("jsonrpcs", "dgram_socket", "/run/kamailio/kamailio_rpc.sock")
|
|
|
|
# ----- ctl params -----
|
|
#modparam("ctl", "binrpc", "unix:/run/kamailio/kamailio_ctl")
|
|
|
|
# ----- tm params -----
|
|
# auto-discard branches from previous serial forking leg
|
|
modparam("tm", "failure_reply_mode", 3)
|
|
# default retransmission timeout: 30sec
|
|
modparam("tm", "fr_timer", 30000)
|
|
# default invite retransmission timeout after 1xx: 120sec
|
|
modparam("tm", "fr_inv_timer", 120000)
|
|
|
|
|
|
# ----- rr params -----
|
|
# add value to ;lr param to cope with most of the UAs
|
|
modparam("rr", "enable_full_lr", 1)
|
|
# do not append from tag to the RR (no need for this script)
|
|
modparam("rr", "append_fromtag", 0)
|
|
|
|
|
|
# ----- registrar params -----
|
|
modparam("registrar", "method_filtering", 1)
|
|
/* uncomment the next line to disable parallel forking via location */
|
|
# modparam("registrar", "append_branches", 0)
|
|
/* uncomment the next line not to allow more than 10 contacts per AOR */
|
|
#modparam("registrar", "max_contacts", 10)
|
|
# max value for expires of registrations
|
|
modparam("registrar", "max_expires", 3600)
|
|
# set it to 1 to enable GRUU
|
|
modparam("registrar", "gruu_enabled", 0)
|
|
|
|
|
|
# ----- acc params -----
|
|
/* what special events should be accounted ? */
|
|
modparam("acc", "early_media", 0)
|
|
modparam("acc", "report_ack", 0)
|
|
modparam("acc", "report_cancels", 0)
|
|
/* by default we do not adjust the direct of the sequential requests.
|
|
* if you enable this parameter, be sure the enable "append_fromtag"
|
|
* in "rr" module */
|
|
modparam("acc", "detect_direction", 0)
|
|
/* account triggers (flags) */
|
|
modparam("acc", "log_flag", FLT_ACC)
|
|
modparam("acc", "log_missed_flag", FLT_ACCMISSED)
|
|
modparam("acc", "log_extra",
|
|
"src_user=$fU;src_domain=$fd;src_ip=$si;"
|
|
"dst_ouser=$tU;dst_user=$rU;dst_domain=$rd")
|
|
modparam("acc", "failed_transaction_flag", FLT_ACCFAILED)
|
|
/* enhanced DB accounting */
|
|
#!ifdef WITH_ACCDB
|
|
modparam("acc", "db_flag", FLT_ACC)
|
|
modparam("acc", "db_missed_flag", FLT_ACCMISSED)
|
|
modparam("acc", "db_url", DBURL)
|
|
modparam("acc", "db_extra",
|
|
"src_user=$fU;src_domain=$fd;src_ip=$si;"
|
|
"dst_ouser=$tU;dst_user=$rU;dst_domain=$rd")
|
|
#!endif
|
|
|
|
|
|
# ----- usrloc params -----
|
|
/* enable DB persistency for location entries */
|
|
modparam("usrloc", "preload", "location")
|
|
#!ifdef WITH_USRLOCDB
|
|
modparam("usrloc", "db_url", DBURL)
|
|
modparam("usrloc", "db_mode", 2)
|
|
modparam("usrloc", "use_domain", MULTIDOMAIN)
|
|
#!endif
|
|
|
|
|
|
# ----- auth_db params -----
|
|
#!ifdef WITH_AUTH
|
|
modparam("auth_db", "db_url", DBURL)
|
|
modparam("auth_db", "calculate_ha1", yes)
|
|
modparam("auth_db", "password_column", "password")
|
|
modparam("auth_db", "load_credentials", "")
|
|
modparam("auth_db", "use_domain", MULTIDOMAIN)
|
|
|
|
# ----- permissions params -----
|
|
#!ifdef WITH_IPAUTH
|
|
modparam("permissions", "db_url", DBURL)
|
|
modparam("permissions", "db_mode", 1)
|
|
#!endif
|
|
|
|
#!endif
|
|
|
|
|
|
#!ifdef WITH_NAT
|
|
#!ifdef WITH_RTPENGINE
|
|
# ----- rtpengine params -----
|
|
modparam("rtpengine", "rtpengine_sock", "udp:127.0.0.1:2223")
|
|
#!else
|
|
# ----- rtpproxy params -----
|
|
modparam("rtpproxy", "rtpproxy_sock", "udp:127.0.0.1:7722")
|
|
#!endif
|
|
|
|
# ----- nathelper params -----
|
|
modparam("nathelper", "natping_interval", 30)
|
|
modparam("nathelper", "ping_nated_only", 1)
|
|
modparam("nathelper", "sipping_bflag", FLB_NATSIPPING)
|
|
modparam("nathelper", "sipping_from", "sip:pinger@kamailio.org")
|
|
|
|
# params needed for NAT traversal in other modules
|
|
modparam("nathelper|registrar", "received_avp", "$avp(RECEIVED)")
|
|
modparam("usrloc", "nat_bflag", FLB_NATB)
|
|
#!endif
|
|
|
|
|
|
#!ifdef WITH_TLS
|
|
# ----- tls params -----
|
|
modparam("tls", "config", "/usr/local/etc/kamailio/tls.cfg")
|
|
#!endif
|
|
|
|
#!ifdef WITH_DEBUG
|
|
# ----- debugger params -----
|
|
modparam("debugger", "cfgtrace", 1)
|
|
#!endif
|
|
|
|
#!ifdef WITH_ANTIFLOOD
|
|
# ----- pike params -----
|
|
modparam("pike", "sampling_time_unit", 2)
|
|
modparam("pike", "reqs_density_per_unit", 16)
|
|
modparam("pike", "remove_latency", 4)
|
|
|
|
# ----- htable params -----
|
|
# ip ban htable with autoexpire after 5 minutes
|
|
modparam("htable", "htable", "ipban=>size=8;autoexpire=300;")
|
|
#!endif
|
|
|
|
#!ifdef KEMIENGINE
|
|
modparam(KEMIMODULE, "load", KEMILOAD)
|
|
cfgengine KEMIENGINE
|
|
#!else
|
|
cfgengine "native"
|
|
include_file "/usr/local/etc/kamailio/kamailio-basic-kemi-native.cfg"
|
|
#!endif
|
|
|