msc at freeswitch.org Guest
|
Posted: Mon Aug 31, 2009 11:20 am Post subject: [Freeswitch-users] external Gateways |
|
|
On Mon, Aug 31, 2009 at 6:11 AM, NOx-WHV <enno.egbert@googlemail.com (enno.egbert@googlemail.com)> wrote:
Quote: |
Hello,
i use a sip gateway witch is only be able to allocate one sip channel. How
can I bridge a call to a second gateway if the first gateway is in use.
Now the dialplan look like this:
<condition field="${toll_allow}" expression="domestic"/>
<condition field="destination_number" expression="^04(\d+)$">
<action application="set" data="effective_caller_id_number=300"/>
<action application="set" data="sip_secure_media=false"/>
<action application="bridge"
data="sofia/gateway/mygateway/04$1@XXX.XXX.XXX.XXX"/>
</condition>
Thanks for help
|
Try pipe-delimited list of dialstrings in your bridge:
<action application="bridge" data="sofia/gateway/mygateway/04$1@XXX.XXX.XXX.XXX|sofia/gateway/mygw2/foo@bar|sofia/gateway/mygw3/foo@bar"/>
-MC
|
|