add ideasip working config example template

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6603 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2007-12-10 19:06:42 +00:00
parent 2009101bad
commit 9f5241ee00
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,7 @@
<include>
<extension name="ideasip.com">
<condition field="destination_number" expression="^1101(.*)$">
<action application="bridge" data="sofia/gateway/proxy.ideasip.com/$1"/>
</condition>
</extension>
</include>

View File

@ -0,0 +1,21 @@
<!-- Working ideaSIP.com dialup in and outbound -->
<include>
<user id="%ISUSERNAME%">
<gateways>
<gateway name="proxy.ideasip.com">
<param name="username" value="%ISUSERNAME%"/>
<param name="password" value="%ISPASSWORD%"/>
<param name="expire-seconds" value="600"/>
<param name="register" value="true"/>
<param name="retry_seconds" value="30"/>
<param name="extension" value="%ISEXTENSION%"/>
<param name="context" value="public"/>
</gateway>
</gateways>
<params>
<param name="password" value="%ISPASSWORD%"/>
</params>
</user>
</include>