Freeswitch-sofia.conf.xml: Difference between revisions
Jump to navigation
Jump to search
m (Pchero moved page Freeswitch-sofia.xml to Freeswitch-sofia.conf.xml) |
No edit summary |
||
Line 1: | Line 1: | ||
== Overview == | == Overview == | ||
Freeswitch SIP module 설정파일 sofia.conf.xml 내용 정리 | Freeswitch SIP module 설정파일 sofia.conf.xml 내용 정리 | ||
== Structure == | |||
sofia.conf.xml 파일은 다음과 같은 구조로 되어있다. | |||
<source lang=xml> | |||
<configuration name="sofia.conf" description="sofia endpoint"> | |||
<global_settings> | |||
... | |||
</global_settings> | |||
<profiles> | |||
... | |||
</profiles> | |||
</configuration> | |||
</source> | |||
== global_settings == | |||
전역 설정을 하는 부분이다. | |||
<source lang=xml> | |||
<global_settings> | |||
<param name="log-level" value="0"/> | |||
<param name="auto-restart" value="false"/> | |||
<param name="debug-presence" value="0"/> | |||
<!-- <param name="capture-server" value="udp:homer.example.com:5060"/> --> | |||
</global_settings> | |||
</source> | |||
== profiles == | |||
sofia 모듈에서 사용하는 각각의 프로필을 설정한다. | |||
<source lang=xml> | |||
<profiles> | |||
<!-- | |||
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. | |||
--> | |||
<profile name="example"> | |||
... | |||
</profile> | |||
</profiles> | |||
</source> | |||
=== profile === | |||
==== gateways ===== | |||
==== settings ===== | |||
====== basic settings ===== | |||
== See also == | |||
* http://wiki.freeswitch.org/wiki/Sofia_Configuration_Files - sofia.conf.xml | |||
== References == | == References == |
Revision as of 11:44, 1 April 2016
Overview
Freeswitch SIP module 설정파일 sofia.conf.xml 내용 정리
Structure
sofia.conf.xml 파일은 다음과 같은 구조로 되어있다. <source lang=xml> <configuration name="sofia.conf" description="sofia endpoint">
<global_settings> ... </global_settings>
<profiles> ... </profiles>
</configuration> </source>
global_settings
전역 설정을 하는 부분이다. <source lang=xml>
<global_settings> <param name="log-level" value="0"/> <param name="auto-restart" value="false"/> <param name="debug-presence" value="0"/> </global_settings>
</source>
profiles
sofia 모듈에서 사용하는 각각의 프로필을 설정한다.
<source lang=xml>
<profiles> <profile name="example"> ... </profile> </profiles>
</source>
profile
gateways =
settings =
= basic settings
See also
- http://wiki.freeswitch.org/wiki/Sofia_Configuration_Files - sofia.conf.xml
References
<references />