mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-03 17:30:37 +00:00
more info
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9723 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
e0ff5aa738
commit
65d8dd2fc6
@ -1,3 +1,22 @@
|
|||||||
|
<!--
|
||||||
|
NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE
|
||||||
|
|
||||||
|
FreeSWITCH works off the concept of users and domains just like email.
|
||||||
|
You have users that are in domains for example 1000@domain.com.
|
||||||
|
|
||||||
|
When freeswitch gets a register packet it looks for the user in the directory
|
||||||
|
based on the from or to domain in the packet depending on how your sofia profile
|
||||||
|
is configured. Out of the box the default domain will be the IP address of the
|
||||||
|
machine running FreeSWITCH. This IP can be found by typing "sofia status" at the
|
||||||
|
CLI. You will register your phones to the IP and not the hostname by default.
|
||||||
|
If you wish to register using the domain please open vars.xml in the root conf
|
||||||
|
directory and set the default domain to the hostname you desire. Then you would
|
||||||
|
use the domain name in the client instead of the IP address to register
|
||||||
|
with FreeSWITCH.
|
||||||
|
|
||||||
|
NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE
|
||||||
|
-->
|
||||||
|
|
||||||
<include>
|
<include>
|
||||||
<!--the domain or ip (the right hand side of the @ in the addr-->
|
<!--the domain or ip (the right hand side of the @ in the addr-->
|
||||||
<domain name="$${domain}">
|
<domain name="$${domain}">
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
|
<!--
|
||||||
|
NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE
|
||||||
|
|
||||||
|
This is the FreeSWITCH default config. Everything you see before you now traverses
|
||||||
|
down into all the directories including files which include more files. The default
|
||||||
|
config comes out of the box already working in most situations as a PBX. This will
|
||||||
|
allow you to get started testing and playing with various things in FreeSWITCH.
|
||||||
|
|
||||||
|
Before you start to modify this default please visit this wiki page:
|
||||||
|
|
||||||
|
http://wiki.freeswitch.org/wiki/Getting_Started_Guide#Some_stuff_to_try_out.21
|
||||||
|
|
||||||
|
If all else fails you can read our FAQ located at:
|
||||||
|
|
||||||
|
http://wiki.freeswitch.org/wiki/FreeSwitch_FAQ
|
||||||
|
|
||||||
|
NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE
|
||||||
|
-->
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<document type="freeswitch/xml">
|
<document type="freeswitch/xml">
|
||||||
<!--#comment
|
<!--#comment
|
||||||
|
@ -2,6 +2,13 @@
|
|||||||
These are introduced when configuration strings must be consistent across modules.
|
These are introduced when configuration strings must be consistent across modules.
|
||||||
-->
|
-->
|
||||||
<X-PRE-PROCESS cmd="set" data="sound_prefix=$${base_dir}/sounds/en/us/callie"/>
|
<X-PRE-PROCESS cmd="set" data="sound_prefix=$${base_dir}/sounds/en/us/callie"/>
|
||||||
|
<!--
|
||||||
|
This setting is what sets the default domain FreeSWITCH will use if all else fails.
|
||||||
|
|
||||||
|
FreeSWICH will default to $${local_ip_v4} unless changed. Changing this setting does
|
||||||
|
affect the sip authentication. Please review conf/directory/default.xml for more
|
||||||
|
information on this topic.
|
||||||
|
-->
|
||||||
<X-PRE-PROCESS cmd="set" data="domain=$${local_ip_v4}"/>
|
<X-PRE-PROCESS cmd="set" data="domain=$${local_ip_v4}"/>
|
||||||
<X-PRE-PROCESS cmd="set" data="hold_music=local_stream://moh"/>
|
<X-PRE-PROCESS cmd="set" data="hold_music=local_stream://moh"/>
|
||||||
<!-- xmpp_client_profile and xmpp_server_profile
|
<!-- xmpp_client_profile and xmpp_server_profile
|
||||||
|
Loading…
x
Reference in New Issue
Block a user