123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <!-- http://wiki.freeswitch.org/wiki/Sofia_Configuration_Files -->
- <profile name="external">
- <!-- This profile is only for outbound registrations to providers -->
- <gateways>
- <X-PRE-PROCESS cmd="include" data="external/*.xml"/>
- </gateways>
- <aliases>
- <alias name="outbound"/>
- <alias name="nat"/> <!-- for backwards compatibility -->
- </aliases>
- <domains>
- <domain name="all" alias="false" parse="true"/>
- </domains>
- <settings>
- <param name="debug" value="0"/>
- <param name="sip-trace" value="no"/>
- <param name="rfc2833-pt" value="101"/>
- <param name="sip-port" value="$${external_sip_port}"/>
- <param name="dialplan" value="XML"/>
- <param name="context" value="public"/>
- <param name="dtmf-duration" value="100"/>
- <param name="codec-prefs" value="$${outbound_codec_prefs}"/>
- <param name="hold-music" value="$${hold_music}"/>
- <param name="use-rtp-timer" value="true"/>
- <param name="rtp-timer-name" value="soft"/>
- <!--<param name="enable-100rel" value="true"/>-->
- <!-- This could be set to "passive" -->
- <param name="manage-presence" value="false"/>
- <!-- used to share presence info across sofia profiles
- manage-presence needs to be set to passive on this profile
- if you want it to behave as if it were the internal profile
- for presence.
- -->
- <!-- Name of the db to use for this profile -->
- <!--<param name="dbname" value="share_presence"/>-->
- <!--<param name="presence-hosts" value="$${domain}"/>-->
- <!--<param name="force-register-domain" value="$${domain}"/>-->
- <!--all inbound reg will stored in the db using this domain -->
- <!--<param name="force-register-db-domain" value="$${domain}"/>-->
- <!-- ************************************************* -->
- <!--<param name="aggressive-nat-detection" value="true"/>-->
- <param name="inbound-codec-negotiation" value="generous"/>
- <param name="nonce-ttl" value="60"/>
- <param name="auth-calls" value="false"/>
- <param name="rtp-timeout-sec" value="1800"/>
- <param name="inbound-late-negotiation" value="true"/>
- <!--
- DO NOT USE HOSTNAMES, ONLY IP ADDRESSES IN THESE SETTINGS!
- -->
- <param name="rtp-ip" value="$${local_ip_v4}"/>
- <param name="sip-ip" value="$${local_ip_v4}"/>
- <param name="ext-rtp-ip" value="$${external_rtp_ip}"/>
- <param name="ext-sip-ip" value="$${external_sip_ip}"/>
- <param name="rtp-timeout-sec" value="300"/>
- <param name="rtp-hold-timeout-sec" value="1800"/>
- <!--<param name="enable-3pcc" value="true"/>-->
- <!-- TLS: disabled by default, set to "true" to enable -->
- <param name="tls" value="$${external_ssl_enable}"/>
- <!-- additional bind parameters for TLS -->
- <param name="tls-bind-params" value="transport=tls"/>
- <!-- Port to listen on for TLS requests. (5081 will be used if unspecified) -->
- <param name="tls-sip-port" value="$${external_tls_port}"/>
- <!-- Location of the agent.pem and cafile.pem ssl certificates (needed for TLS server) -->
- <param name="tls-cert-dir" value="$${external_ssl_dir}"/>
- <!-- TLS version ("sslv23" (default), "tlsv1"). NOTE: Phones may not work with TLSv1 -->
- <param name="tls-version" value="$${sip_tls_version}"/>
- </settings>
- </profile>
|