<div dir="ltr">Hi Stanish,<div><br></div><div>That is exactly we are doing right now. But since it is conference server we should wait more time for channels to hangup. </div><div><br></div><div>So thinking to shift those calls to other server for a faster maintain process (less than a day atleast) . If freeswitch can transfer the call like (BLIND/ATTENDED transfer) to other server ( we should send REINVITE to all the parties for RTP modification) then we can achieve this. I am checking is there any option in freeswitch or we should develop something on top of freeswitch to transfer the call to other freeswitch box</div><div><br></div><div>Regards</div><div><br></div><div>Varghese Paul </div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Apr 1, 2015 at 4:12 PM, Stanislav Sinyagin <span dir="ltr"><<a href="mailto:ssinyagin@gmail.com" target="_blank">ssinyagin@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">even with point-to-point calls, this looks quite difficult, but for a<br>
running conference -- rather unfeasible.<br>
<br>
You can stop sending new calls to the server 1 hour before<br>
maintenance, and just drop the remaining calls. This would be cheap<br>
and quite acceptable for most use cases.<br>
<div class="HOEnZb"><div class="h5"><br>
<br>
<br>
<br>
On Wed, Apr 1, 2015 at 11:30 PM, Varghese Paul <<a href="mailto:varghesepaul87@gmail.com">varghesepaul87@gmail.com</a>> wrote:<br>
> Hi Luiz,<br>
><br>
> Thanks for your answer. But my use case is different. I don't want to bridge<br>
> calls b/w two freeswitch boxes. I wanted to shift/replace the call in<br>
> Freeswitch A to Freeswitch B.<br>
><br>
> As I stated in my previous mail I wanted to achieve this use case for<br>
> maintaining the Freeswitch servers in production. I am running freeswitch as<br>
> a conference server and I wanted to transfer this conference into other<br>
> conference server for restart/reboot the serivces in the machine.<br>
><br>
>>>>>>>CONFERENCE_A ----> Freeswitch A Box --->> Transfer this<br>
>>>>>>> call/conference to other Freeswitch Box B ---> Do the maintance in<br>
>>>>>>> Freeswitch Box A<br>
><br>
> I am not sure whether I can achieve this in Freeswitch.<br>
><br>
> Regards<br>
><br>
> Varghese Paul<br>
><br>
> On Wed, Apr 1, 2015 at 2:17 PM, Luiz Fernando Softov<br>
> <<a href="mailto:fernando@softov.com.br">fernando@softov.com.br</a>> wrote:<br>
>><br>
>> You can use gateway...<br>
>><br>
>> Lets Say you have two Freeswitchs A 192.168.1.10 and B 192.168.2.10<br>
>><br>
>> In FS A you have a extension 1001, and in FS B extension 2001<br>
>><br>
>><br>
>> In FS A, you need a gateway in external profile, to connect with FS B, its<br>
>> like:<br>
>><br>
>> <include><br>
>> <gateway name="gateway-fs-b"><br>
>> <param name="proxy" value="192.168.2.10"/><br>
>> <param name="register" value="true"/><br>
>> <param name="username" value="2000"/><br>
>> <param name="password" value="1234"/><br>
>> </gateway><br>
>> </include><br>
>><br>
>> You can read more in<br>
>><br>
>> <a href="https://wiki.freeswitch.org/wiki/Clarification:gateways" target="_blank">https://wiki.freeswitch.org/wiki/Clarification:gateways</a><br>
>><br>
>><br>
>> <a href="https://freeswitch.org/confluence/display/FREESWITCH/Gateways+Configuration" target="_blank">https://freeswitch.org/confluence/display/FREESWITCH/Gateways+Configuration</a><br>
>><br>
>><br>
>> Then when you make a call in FS A, in your dialplan, you need to make a<br>
>> bridge using gateway<br>
>><br>
>> <include><br>
>> <extension name="To FS B"><br>
>> <condition field="destination_number" expression="(2...)"><br>
>> <action application="bridge"<br>
>> data="sofia/gateway/gateway-fs-b/${destination_number}"/><br>
>> </condition><br>
>> </extension><br>
>> </include><br>
>><br>
>> Now when you make a Call, to 2XXX, you shoud receive a call in FS-B<br>
>><br>
>> In FS B, you need to have extension 2000, used by gateway to register and<br>
>> to make calls<br>
>> And of course, extension 2001.<br>
>><br>
>> If you want to receive Caller ID 1001 of FS A<br>
>><br>
>> dont use variables in extension 2000.xml<br>
>><br>
>> <variable name="effective_caller_id_name" value="Extension 2000"/><br>
>> <variable name="effective_caller_id_number" value="2000"/><br>
>><br>
>><br>
>> It's a way to do this.<br>
>><br>
>><br>
>> --<br>
>> Luiz Fernando Softov<br>
>> <a href="http://www.softov.com.br" target="_blank">http://www.softov.com.br</a><br>
>> <a href="mailto:fernando@softov.com.br">fernando@softov.com.br</a><br>
>><br>
>> _________________________________________________________________________<br>
>> Professional FreeSWITCH Consulting Services:<br>
>> <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
>> <a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
>><br>
>> Official FreeSWITCH Sites<br>
>> <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
>> <a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a><br>
>> <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
>><br>
>> FreeSWITCH-users mailing list<br>
>> <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
>> <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
>> UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
>> <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
><br>
><br>
><br>
> _________________________________________________________________________<br>
> Professional FreeSWITCH Consulting Services:<br>
> <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
> <a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
><br>
> Official FreeSWITCH Sites<br>
> <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
> <a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a><br>
> <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
><br>
> FreeSWITCH-users mailing list<br>
> <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
> <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
> UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
> <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br>
_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
<a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
<a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
Official FreeSWITCH Sites<br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a><br>
<a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
</div></div></blockquote></div><br></div>