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.
59 lines
1.7 KiB
59 lines
1.7 KiB
# IP-Adress for incoming SIP-Traffic, in the following format:
|
|
##!define NETWORK_INTERFACE 192.168.0.1
|
|
##!define NETWORK_INTERFACE_2 [some ipv6 address maybe?]
|
|
|
|
# Port, where we listen to Traffic
|
|
#!define PORT 5060
|
|
|
|
#!subst "/NETWORKNAME/kamailio-ims.org/"
|
|
#!subst "/HOSTNAME/pcscf.kamailio-ims.org/"
|
|
#!define HOSTNAME_IP pcscf.kamailio-ims.org
|
|
#!define HOSTNAME_ESC "pcscf\.kamailio-ims\.org"
|
|
|
|
# SIP-Address of capturing node, if not set, capturing is disabled.
|
|
##!define CAPTURE_NODE "sip:10.0.6.1"
|
|
|
|
# IP-Adress(es) of the RTP-Proxy
|
|
#!define RTPPROXY_ADDRESS "udp:127.0.0.1:22222"
|
|
#
|
|
# Several features can be enabled using '#!define WITH_FEATURE' directives:
|
|
#
|
|
# *** To run in debug mode:
|
|
# - define WITH_DEBUG
|
|
#
|
|
# *** To enable nat traversal execute:
|
|
# - define WITH_NAT
|
|
# - define the connection to the RTP-Proxy: RTPPROXY_ADDRESS
|
|
# - install RTPProxy: http://www.rtpproxy.org
|
|
# - start RTPProxy:
|
|
# rtpproxy -l _your_public_ip_ -s udp:localhost:7722
|
|
#
|
|
# *** To enable TLS support execute:
|
|
# - adjust CFGDIR/tls.cfg as needed
|
|
# - define WITH_TLS
|
|
#
|
|
# *** To enable XMLRPC support execute:
|
|
# - define WITH_XMLRPC
|
|
# - adjust route[XMLRPC] for access policy
|
|
#
|
|
# *** To enable anti-flood detection execute:
|
|
# - adjust pike and htable=>ipban settings as needed (default is
|
|
# block if more than 16 requests in 2 seconds and ban for 300 seconds)
|
|
# - define WITH_ANTIFLOOD
|
|
#
|
|
# *** To enable the Rx-Interface:
|
|
# - Configure Rx-Diameter-Interface in pcscf.xml
|
|
# - define WITH_RX
|
|
#
|
|
# *** To enable a Homer SIP-Capter-Node:
|
|
# - define CAPTURE_NODE with a proper address
|
|
#
|
|
# Enabled Features for this host:
|
|
##!define WITH_DEBUG
|
|
##!define WITH_NAT
|
|
##!define WITH_TLS
|
|
#!define WITH_XMLRPC
|
|
#!define WITH_ANTIFLOOD
|
|
##!define WITH_RX
|
|
|