2008-09-28 16:49:05 -04:00
|
|
|
<profile name="internal">
|
2009-05-05 11:51:30 -04:00
|
|
|
<!--
|
|
|
|
This is a sofia sip profile/user agent. This will service exactly one ip and port.
|
|
|
|
In FreeSWITCH you can run multiple sip user agents on their own ip and port.
|
|
|
|
|
|
|
|
When you hear someone say "sofia profile" this is what they are talking about.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!-- http://wiki.freeswitch.org/wiki/Sofia_Configuration_Files -->
|
2007-11-09 13:03:53 -05:00
|
|
|
<!--aliases are other names that will work as a valid profile name for this profile-->
|
2007-12-01 22:36:12 -05:00
|
|
|
<aliases>
|
2008-05-08 10:45:34 -04:00
|
|
|
<alias name="default"/>
|
2007-12-01 22:36:12 -05:00
|
|
|
</aliases>
|
2007-11-09 13:03:53 -05:00
|
|
|
<!-- Outbound Registrations -->
|
|
|
|
<gateways>
|
2008-05-08 17:32:19 -04:00
|
|
|
<X-PRE-PROCESS cmd="include" data="internal/*.xml"/>
|
2007-11-09 13:03:53 -05:00
|
|
|
</gateways>
|
|
|
|
|
|
|
|
<domains>
|
|
|
|
<!-- indicator to parse the directory for domains with parse="true" to get gateways-->
|
|
|
|
<!--<domain name="$${domain}" parse="true"/>-->
|
2008-04-09 01:04:26 -04:00
|
|
|
<!-- indicator to parse the directory for domains with parse="true" to get gateways and alias every domain to this profile -->
|
|
|
|
<!--<domain name="all" alias="true" parse="true"/>-->
|
2008-09-28 20:31:35 -04:00
|
|
|
<domain name="all" alias="true" parse="false"/>
|
2007-11-09 13:03:53 -05:00
|
|
|
</domains>
|
|
|
|
|
|
|
|
<settings>
|
2008-09-29 01:30:19 -04:00
|
|
|
<!--
|
|
|
|
When calls are in no media this will bring them back to media
|
|
|
|
when you press the hold button.
|
2008-09-19 22:34:57 -04:00
|
|
|
-->
|
|
|
|
<!--<param name="media-option" value="resume-media-on-hold"/> -->
|
2008-09-29 01:30:19 -04:00
|
|
|
<!--
|
|
|
|
This will allow a call after an attended transfer go back to
|
2008-09-19 22:34:57 -04:00
|
|
|
bypass media after an attended transfer.
|
|
|
|
-->
|
|
|
|
<!--<param name="media-option" value="bypass-media-after-att-xfer"/>-->
|
2007-12-15 13:44:41 -05:00
|
|
|
<!-- <param name="user-agent-string" value="FreeSWITCH Rocks!"/> -->
|
2007-12-11 15:58:39 -05:00
|
|
|
<param name="debug" value="0"/>
|
2007-12-12 23:37:25 -05:00
|
|
|
<param name="sip-trace" value="no"/>
|
2007-12-08 14:03:12 -05:00
|
|
|
<param name="context" value="public"/>
|
2007-11-09 13:03:53 -05:00
|
|
|
<param name="rfc2833-pt" value="101"/>
|
2008-03-28 17:22:48 -04:00
|
|
|
<!-- port to bind to for sip traffic -->
|
2008-10-09 12:19:37 -04:00
|
|
|
<param name="sip-port" value="$${internal_sip_port}"/>
|
2007-12-08 14:43:42 -05:00
|
|
|
<param name="dialplan" value="XML"/>
|
2007-11-09 13:03:53 -05:00
|
|
|
<param name="dtmf-duration" value="100"/>
|
|
|
|
<param name="codec-prefs" value="$${global_codec_prefs}"/>
|
|
|
|
<param name="rtp-timer-name" value="soft"/>
|
2008-10-03 14:30:04 -04:00
|
|
|
<!-- ip address to use for rtp, DO NOT USE HOSTNAMES ONLY IP ADDRESSES -->
|
2007-11-09 13:03:53 -05:00
|
|
|
<param name="rtp-ip" value="$${local_ip_v4}"/>
|
2008-10-03 14:30:04 -04:00
|
|
|
<!-- ip address to bind to, DO NOT USE HOSTNAMES ONLY IP ADDRESSES -->
|
2007-11-09 13:03:53 -05:00
|
|
|
<param name="sip-ip" value="$${local_ip_v4}"/>
|
2008-04-22 10:19:47 -04:00
|
|
|
<param name="hold-music" value="$${hold_music}"/>
|
2009-01-15 18:29:18 -05:00
|
|
|
<param name="apply-nat-acl" value="rfc1918"/>
|
2008-08-28 10:15:05 -04:00
|
|
|
<!--<param name="aggressive-nat-detection" value="true"/>-->
|
2008-11-12 08:03:08 -05:00
|
|
|
<!--<param name="enable-100rel" value="true"/>-->
|
2008-09-26 14:26:00 -04:00
|
|
|
<!--<param name="minimum-session-expires" value="120"/>-->
|
2008-07-16 13:47:57 -04:00
|
|
|
<param name="apply-inbound-acl" value="domains"/>
|
2008-07-17 00:17:13 -04:00
|
|
|
<!--<param name="apply-register-acl" value="domains"/>-->
|
2007-12-22 13:59:36 -05:00
|
|
|
<!--<param name="dtmf-type" value="info"/>-->
|
2008-09-28 20:34:02 -04:00
|
|
|
<param name="record-template" value="$${base_dir}/recordings/${caller_id_number}.${target_domain}.${strftime(%Y-%m-%d-%H-%M-%S)}.wav"/>
|
2008-11-11 12:49:08 -05:00
|
|
|
<!--enable to use presence -->
|
2008-01-04 20:03:57 -05:00
|
|
|
<param name="manage-presence" value="true"/>
|
2009-01-30 11:46:37 -05:00
|
|
|
<!--<param name="manage-shared-appearance" value="true"/>-->
|
2008-09-17 20:11:01 -04:00
|
|
|
<!-- used to share presence info across sofia profiles -->
|
|
|
|
<!-- Name of the db to use for this profile -->
|
|
|
|
<!--<param name="dbname" value="share_presence"/>-->
|
|
|
|
<!--<param name="presence-hosts" value="$${domain}"/>-->
|
|
|
|
<!-- ************************************************* -->
|
|
|
|
|
2007-12-15 16:38:11 -05:00
|
|
|
<!-- This setting is for AAL2 bitpacking on G726 -->
|
|
|
|
<!-- <param name="bitpacking" value="aal2"/> -->
|
2007-11-09 13:03:53 -05:00
|
|
|
<!--max number of open dialogs in proceeding -->
|
|
|
|
<!--<param name="max-proceeding" value="1000"/>-->
|
|
|
|
<!--session timers for all call to expire after the specified seconds -->
|
|
|
|
<!--<param name="session-timeout" value="120"/>-->
|
2008-11-05 19:44:30 -05:00
|
|
|
<!-- Can be 'true' or 'contact' -->
|
|
|
|
<!--<param name="multiple-registrations" value="contact"/>-->
|
2007-11-09 13:03:53 -05:00
|
|
|
<!--set to 'greedy' if you want your codec list to take precedence -->
|
|
|
|
<param name="inbound-codec-negotiation" value="generous"/>
|
|
|
|
<!-- if you want to send any special bind params of your own -->
|
|
|
|
<!--<param name="bind-params" value="transport=udp"/>-->
|
2008-04-15 23:05:15 -04:00
|
|
|
<!--<param name="unregister-on-options-fail" value="true"/>-->
|
2007-12-18 14:12:45 -05:00
|
|
|
|
|
|
|
<!-- TLS: disabled by default, set to "true" to enable -->
|
2008-10-08 21:13:40 -04:00
|
|
|
<param name="tls" value="$${internal_ssl_enable}"/>
|
2007-12-18 14:12:45 -05:00
|
|
|
<!-- additional bind parameters for TLS -->
|
2007-12-22 13:59:36 -05:00
|
|
|
<param name="tls-bind-params" value="transport=tls"/>
|
2007-12-18 14:12:45 -05:00
|
|
|
<!-- Port to listen on for TLS requests. (5061 will be used if unspecified) -->
|
2008-10-09 12:19:37 -04:00
|
|
|
<param name="tls-sip-port" value="$${internal_tls_port}"/>
|
2007-12-18 14:12:45 -05:00
|
|
|
<!-- Location of the agent.pem and cafile.pem ssl certificates (needed for TLS server) -->
|
2008-10-08 21:13:40 -04:00
|
|
|
<param name="tls-cert-dir" value="$${internal_ssl_dir}"/>
|
2007-12-22 18:50:15 -05:00
|
|
|
<!-- TLS version ("sslv23" (default), "tlsv1"). NOTE: Phones may not work with TLSv1 -->
|
2008-10-08 21:13:40 -04:00
|
|
|
<param name="tls-version" value="$${sip_tls_version}"/>
|
2009-05-07 11:07:04 -04:00
|
|
|
|
|
|
|
<!-- turn on auto-flush during bridge (skip timer sleep when the socket already has data)
|
2009-05-19 13:49:21 -04:00
|
|
|
(reduces delay on latent connections default true, must be disabled explicitly)-->
|
|
|
|
<!--<param name="rtp-autoflush-during-bridge" value="false"/>-->
|
2007-11-09 13:03:53 -05:00
|
|
|
|
2008-10-28 05:53:46 -04:00
|
|
|
<!--If you don't want to pass through timestamps from 1 RTP call to another (on a per call basis with rtp_rewrite_timestamps chanvar)-->
|
2007-12-03 11:14:27 -05:00
|
|
|
<!--<param name="rtp-rewrite-timestamps" value="true"/>-->
|
2007-12-28 12:37:36 -05:00
|
|
|
<!--<param name="pass-rfc2833" value="true"/>-->
|
2007-11-09 13:03:53 -05:00
|
|
|
<!--If you have ODBC support and a working dsn you can use it instead of SQLite-->
|
|
|
|
<!--<param name="odbc-dsn" value="dsn:user:pass"/>-->
|
|
|
|
|
|
|
|
<!--Uncomment to set all inbound calls to no media mode-->
|
2008-07-08 13:32:59 -04:00
|
|
|
<!--<param name="inbound-bypass-media" value="true"/>-->
|
|
|
|
|
|
|
|
<!--Uncomment to set all inbound calls to proxy media mode-->
|
|
|
|
<!--<param name="inbound-proxy-media" value="true"/>-->
|
2007-11-09 13:03:53 -05:00
|
|
|
|
|
|
|
<!--Uncomment to let calls hit the dialplan *before* you decide if the codec is ok-->
|
|
|
|
<!--<param name="inbound-late-negotiation" value="true"/>-->
|
|
|
|
|
|
|
|
<!-- this lets anything register -->
|
|
|
|
<!-- comment the next line and uncomment one or both of the other 2 lines for call authentication -->
|
|
|
|
<!-- <param name="accept-blind-reg" value="true"/> -->
|
2008-03-03 20:23:55 -05:00
|
|
|
|
|
|
|
<!-- accept any authentication without actually checking (not a good feature for most people) -->
|
|
|
|
<!-- <param name="accept-blind-auth" value="true"/> -->
|
2007-11-09 13:03:53 -05:00
|
|
|
|
2008-08-28 12:32:06 -04:00
|
|
|
<!-- suppress CNG on this profile or per call with the 'suppress_cng' variable -->
|
|
|
|
<!-- <param name="suppress-cng" value="true"/> -->
|
2008-03-05 10:24:41 -05:00
|
|
|
|
2007-11-09 13:03:53 -05:00
|
|
|
<!--TTL for nonce in sip auth-->
|
|
|
|
<param name="nonce-ttl" value="60"/>
|
|
|
|
<!--Uncomment if you want to force the outbound leg of a bridge to only offer the codec
|
|
|
|
that the originator is using-->
|
|
|
|
<!--<param name="disable-transcoding" value="true"/>-->
|
2009-03-18 15:17:31 -04:00
|
|
|
<!-- Disable Refer -->
|
|
|
|
<!--<param name="disable-transfer" value="true"/> -->
|
|
|
|
<!-- Disable Register -->
|
|
|
|
<!--<param name="disable-register" value="true"/> -->
|
2007-12-20 22:40:42 -05:00
|
|
|
<!-- Used for when phones respond to a challenged ACK with method INVITE in the hash -->
|
2007-12-22 13:59:36 -05:00
|
|
|
<!--<param name="NDLB-broken-auth-hash" value="true"/>-->
|
2008-05-22 13:30:11 -04:00
|
|
|
<!-- add a ;received="<ip>:<port>" to the contact when replying to register for nat handling -->
|
|
|
|
<!--<param name="NDLB-received-in-nat-reg-contact" value="true"/>-->
|
2008-10-09 12:19:37 -04:00
|
|
|
<param name="auth-calls" value="$${internal_auth_calls}"/>
|
2008-10-10 17:38:07 -04:00
|
|
|
<!-- Force the user and auth-user to match. -->
|
|
|
|
<param name="inbound-reg-force-matching-username" value="true"/>
|
2007-11-09 13:03:53 -05:00
|
|
|
<!-- on authed calls, authenticate *all* the packets not just invite -->
|
2007-12-21 11:31:43 -05:00
|
|
|
<param name="auth-all-packets" value="false"/>
|
2007-11-09 13:03:53 -05:00
|
|
|
<!-- <param name="ext-rtp-ip" value="$${external_rtp_ip}"/> -->
|
|
|
|
<!-- <param name="ext-sip-ip" value="$${external_sip_ip}"/> -->
|
|
|
|
<!-- rtp inactivity timeout -->
|
2008-02-02 16:43:23 -05:00
|
|
|
<param name="rtp-timeout-sec" value="300"/>
|
|
|
|
<param name="rtp-hold-timeout-sec" value="1800"/>
|
2007-11-09 13:03:53 -05:00
|
|
|
<!-- VAD choose one (out is a good choice); -->
|
|
|
|
<!-- <param name="vad" value="in"/> -->
|
|
|
|
<!-- <param name="vad" value="out"/> -->
|
|
|
|
<!-- <param name="vad" value="both"/> -->
|
|
|
|
<!--<param name="alias" value="sip:10.0.1.251:5555"/>-->
|
2009-01-15 18:29:18 -05:00
|
|
|
<!--
|
|
|
|
These are enabled to make the default config work better out of the box.
|
|
|
|
If you need more than ONE domain you'll need to not use these options.
|
|
|
|
|
|
|
|
-->
|
2007-11-09 13:03:53 -05:00
|
|
|
<!--all inbound reg will look in this domain for the users -->
|
2009-01-15 18:29:18 -05:00
|
|
|
<param name="force-register-domain" value="$${domain}"/>
|
2008-12-01 14:52:22 -05:00
|
|
|
<!--all inbound reg will stored in the db using this domain -->
|
2009-01-15 18:29:18 -05:00
|
|
|
<param name="force-register-db-domain" value="$${domain}"/>
|
2008-12-15 11:21:15 -05:00
|
|
|
<!--force suscription expires to a lower value than requested-->
|
|
|
|
<!--<param name="force-subscription-expires" value="60"/>-->
|
2008-03-07 09:36:08 -05:00
|
|
|
<!-- disable register and transfer which may be undesirable in a public switch -->
|
|
|
|
<!--<param name="disable-transfer" value="true"/>-->
|
|
|
|
<!--<param name="disable-register" value="true"/>-->
|
2008-10-10 12:15:45 -04:00
|
|
|
|
2009-01-20 10:17:53 -05:00
|
|
|
<!--
|
|
|
|
enable-3pcc can be set to either 'true' or 'proxy', true accepts the call
|
|
|
|
right away, proxy waits until the call has been answered then sends accepts
|
|
|
|
-->
|
2008-05-29 16:02:06 -04:00
|
|
|
<!--<param name="enable-3pcc" value="true"/>-->
|
2008-10-10 12:15:45 -04:00
|
|
|
|
2008-09-30 17:26:09 -04:00
|
|
|
<!-- use at your own risk or if you know what this does.-->
|
|
|
|
<!--<param name="NDLB-force-rport" value="true"/>-->
|
2008-09-28 21:12:58 -04:00
|
|
|
<!--
|
|
|
|
Choose the realm challenge key. Default is auto_to if not set.
|
|
|
|
|
2008-09-28 21:48:06 -04:00
|
|
|
auto_from - uses the from field as the value for the sip realm.
|
|
|
|
auto_to - uses the to field as the value for the sip realm.
|
|
|
|
<anyvalue> - you can input any value to use for the sip realm.
|
|
|
|
|
2008-09-28 21:12:58 -04:00
|
|
|
If you want URL dialing to work you'll want to set this to auto_from.
|
|
|
|
|
2008-09-28 21:48:06 -04:00
|
|
|
If you use any other value besides auto_to or auto_from you'll loose
|
|
|
|
the ability to do multiple domains.
|
|
|
|
|
2008-09-28 21:12:58 -04:00
|
|
|
Note: comment out to restore the behavior before 2008-09-29
|
|
|
|
|
|
|
|
-->
|
|
|
|
<param name="challenge-realm" value="auto_from"/>
|
2008-09-27 12:20:52 -04:00
|
|
|
<!--<param name="disable-rtp-auto-adjust" value="true"/>-->
|
2008-11-15 12:44:27 -05:00
|
|
|
<!-- on inbound calls make the uuid of the session equal to the sip call id of that call -->
|
|
|
|
<!--<param name="inbound-use-callid-as-uuid" value="true"/>-->
|
|
|
|
<!-- on outbound calls set the callid to match the uuid of the session -->
|
|
|
|
<!--<param name="outbound-use-uuid-as-callid" value="true"/>-->
|
2009-04-03 11:09:30 -04:00
|
|
|
<!-- set to false disable this feature -->
|
|
|
|
<!--<param name="rtp-autofix-timing" value="false"/>-->
|
2009-01-12 14:38:41 -05:00
|
|
|
|
|
|
|
<!-- clear clears them all or supply the name to add or the name prefixed with ~ to remove
|
|
|
|
valid values:
|
|
|
|
|
|
|
|
clear
|
|
|
|
CISCO_SKIP_MARK_BIT_2833
|
|
|
|
SONUS_SEND_INVALID_TIMESTAMP_2833
|
|
|
|
|
|
|
|
-->
|
|
|
|
<!--<param name="auto-rtp-bugs" data="clear"/>-->
|
2009-02-09 13:48:26 -05:00
|
|
|
|
|
|
|
<!-- the following can be used as workaround with bogus SRV/NAPTR records -->
|
|
|
|
<!--<param name="disable-srv" value="false" />-->
|
|
|
|
<!--<param name="disable-naptr" value="false" />-->
|
|
|
|
|
2009-05-06 14:12:44 -04:00
|
|
|
<!-- The following can be used to fine-tune timers within sofia's transport layer
|
|
|
|
Those settings are for advanced users and can safely be left as-is -->
|
|
|
|
|
|
|
|
<!-- Initial retransmission interval (in milliseconds).
|
|
|
|
Set the T1 retransmission interval used by the SIP transaction engine.
|
|
|
|
The T1 is the initial duration used by request retransmission timers A and E (UDP) as well as response retransmission timer G. -->
|
|
|
|
<!-- <param name="timer-T1" value="500" /> -->
|
|
|
|
|
|
|
|
<!-- Transaction timeout (defaults to T1 * 64).
|
|
|
|
Set the T1x64 timeout value used by the SIP transaction engine.
|
|
|
|
The T1x64 is duration used for timers B, F, H, and J (UDP) by the SIP transaction engine.
|
|
|
|
The timeout value T1x64 can be adjusted separately from the initial retransmission interval T1. -->
|
|
|
|
<!-- <param name="timer-T1X64" value="32000" /> -->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Maximum retransmission interval (in milliseconds).
|
|
|
|
Set the maximum retransmission interval used by the SIP transaction engine.
|
|
|
|
The T2 is the maximum duration used for the timers E (UDP) and G by the SIP transaction engine.
|
|
|
|
Note that the timer A is not capped by T2. Retransmission interval of INVITE requests grows exponentially
|
|
|
|
until the timer B fires. -->
|
|
|
|
<!-- <param name="timer-T2" value="4000" /> -->
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Transaction lifetime (in milliseconds).
|
|
|
|
Set the lifetime for completed transactions used by the SIP transaction engine.
|
|
|
|
A completed transaction is kept around for the duration of T4 in order to catch late responses.
|
|
|
|
The T4 is the maximum duration for the messages to stay in the network and the duration of SIP timer K. -->
|
|
|
|
<!-- <param name="timer-T4" value="4000" /> -->
|
2009-01-12 14:38:41 -05:00
|
|
|
|
2007-11-09 13:03:53 -05:00
|
|
|
</settings>
|
|
|
|
</profile>
|
|
|
|
|