<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">&lt;<a href="mailto:ssinyagin@gmail.com" target="_blank">ssinyagin@gmail.com</a>&gt;</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 &lt;<a href="mailto:varghesepaul87@gmail.com">varghesepaul87@gmail.com</a>&gt; wrote:<br>
&gt; Hi Luiz,<br>
&gt;<br>
&gt; Thanks for your answer. But my use case is different. I don&#39;t want to bridge<br>
&gt; calls b/w two freeswitch boxes. I wanted to shift/replace the call in<br>
&gt; Freeswitch A to Freeswitch B.<br>
&gt;<br>
&gt; As I stated in my previous mail I wanted to achieve this use case for<br>
&gt; maintaining the Freeswitch servers in production. I am running freeswitch as<br>
&gt; a conference server and I wanted to transfer this conference into other<br>
&gt; conference server for restart/reboot the serivces in the machine.<br>
&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt;CONFERENCE_A ----&gt; Freeswitch A Box ---&gt;&gt; Transfer this<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; call/conference to other Freeswitch Box B ---&gt; Do the maintance in<br>
&gt;&gt;&gt;&gt;&gt;&gt;&gt; Freeswitch Box A<br>
&gt;<br>
&gt; I am not sure whether I can achieve this in Freeswitch.<br>
&gt;<br>
&gt; Regards<br>
&gt;<br>
&gt; Varghese Paul<br>
&gt;<br>
&gt; On Wed, Apr 1, 2015 at 2:17 PM, Luiz Fernando Softov<br>
&gt; &lt;<a href="mailto:fernando@softov.com.br">fernando@softov.com.br</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; You can use gateway...<br>
&gt;&gt;<br>
&gt;&gt; Lets Say you have two Freeswitchs A 192.168.1.10 and B 192.168.2.10<br>
&gt;&gt;<br>
&gt;&gt; In FS A you have a extension 1001, and in FS B extension 2001<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; In FS A, you need a gateway in external profile, to connect with FS B, its<br>
&gt;&gt; like:<br>
&gt;&gt;<br>
&gt;&gt;  &lt;include&gt;<br>
&gt;&gt;     &lt;gateway name=&quot;gateway-fs-b&quot;&gt;<br>
&gt;&gt;       &lt;param name=&quot;proxy&quot; value=&quot;192.168.2.10&quot;/&gt;<br>
&gt;&gt;       &lt;param name=&quot;register&quot; value=&quot;true&quot;/&gt;<br>
&gt;&gt;       &lt;param name=&quot;username&quot; value=&quot;2000&quot;/&gt;<br>
&gt;&gt;       &lt;param name=&quot;password&quot; value=&quot;1234&quot;/&gt;<br>
&gt;&gt;     &lt;/gateway&gt;<br>
&gt;&gt;  &lt;/include&gt;<br>
&gt;&gt;<br>
&gt;&gt; You can read more in<br>
&gt;&gt;<br>
&gt;&gt; <a href="https://wiki.freeswitch.org/wiki/Clarification:gateways" target="_blank">https://wiki.freeswitch.org/wiki/Clarification:gateways</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; <a href="https://freeswitch.org/confluence/display/FREESWITCH/Gateways+Configuration" target="_blank">https://freeswitch.org/confluence/display/FREESWITCH/Gateways+Configuration</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Then when you make a call in FS A, in your dialplan, you need to make a<br>
&gt;&gt; bridge using gateway<br>
&gt;&gt;<br>
&gt;&gt; &lt;include&gt;<br>
&gt;&gt; &lt;extension name=&quot;To FS B&quot;&gt;<br>
&gt;&gt; &lt;condition field=&quot;destination_number&quot; expression=&quot;(2...)&quot;&gt;<br>
&gt;&gt; &lt;action application=&quot;bridge&quot;<br>
&gt;&gt; data=&quot;sofia/gateway/gateway-fs-b/${destination_number}&quot;/&gt;<br>
&gt;&gt; &lt;/condition&gt;<br>
&gt;&gt; &lt;/extension&gt;<br>
&gt;&gt; &lt;/include&gt;<br>
&gt;&gt;<br>
&gt;&gt; Now when you make a Call, to 2XXX, you shoud receive a call in FS-B<br>
&gt;&gt;<br>
&gt;&gt; In FS B, you need to have extension 2000, used by gateway to register and<br>
&gt;&gt; to make calls<br>
&gt;&gt; And of course, extension 2001.<br>
&gt;&gt;<br>
&gt;&gt; If you want to receive Caller ID 1001 of FS A<br>
&gt;&gt;<br>
&gt;&gt; dont use variables in extension 2000.xml<br>
&gt;&gt;<br>
&gt;&gt; &lt;variable name=&quot;effective_caller_id_name&quot; value=&quot;Extension 2000&quot;/&gt;<br>
&gt;&gt; &lt;variable name=&quot;effective_caller_id_number&quot; value=&quot;2000&quot;/&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; It&#39;s a way to do this.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; Luiz Fernando Softov<br>
&gt;&gt; <a href="http://www.softov.com.br" target="_blank">http://www.softov.com.br</a><br>
&gt;&gt; <a href="mailto:fernando@softov.com.br">fernando@softov.com.br</a><br>
&gt;&gt;<br>
&gt;&gt; _________________________________________________________________________<br>
&gt;&gt; Professional FreeSWITCH Consulting Services:<br>
&gt;&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
&gt;&gt; <a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;&gt;<br>
&gt;&gt; Official FreeSWITCH Sites<br>
&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;&gt; <a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a><br>
&gt;&gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
&gt;&gt;<br>
&gt;&gt; FreeSWITCH-users mailing list<br>
&gt;&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; _________________________________________________________________________<br>
&gt; Professional FreeSWITCH Consulting Services:<br>
&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
&gt; <a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;<br>
&gt; Official FreeSWITCH Sites<br>
&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt; <a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a><br>
&gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
&gt;<br>
&gt; FreeSWITCH-users mailing list<br>
&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; <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>