<div>Hi Code,</div><div><br></div>I have working example doing exactly what you&#39;ve described.<div>One signalling FS bridges incoming call to a set of media servers (depending on ip, but you can implement any routing logic including round robin) and then transfers media stream after bridging to that media server.<div>
<br></div><div>You can achieve this on signalling FS by creating a Lua script that contains the following lines:</div><div><br></div><div>media_server=&quot;<a href="http://my_media_X.mydomain.com">my_media_X.mydomain.com</a>&quot;; --to be determined by routing logic</div>
<div>forwarding_session = &quot;sofia/external/&quot;..called_number..&quot;@&quot;..media_server;</div><div>session:setVariable(&quot;bypass_media_after_bridge&quot;, &quot;true&quot;);</div><div>session:setVariable(&quot;hangup_after_bridge&quot;, &quot;true&quot;);</div>
<div>session:execute(&quot;bridge&quot;,forwarding_session);</div><div><br></div><div>The call will arrive to the selected media server successfully and media stream will start bypassing signalling FS after bridge.</div><div>
<br></div><div>You can read the following thread, it describes how you can setup such configuration.</div><div><a href="http://lists.freeswitch.org/pipermail/freeswitch-users/2010-March/055231.html">http://lists.freeswitch.org/pipermail/freeswitch-users/2010-March/055231.html</a></div>
<div><br></div><div>I think it will fit your needs.</div><div><br></div><div>Regards,</div><div>Vitalie</div><div><br><div><br><div class="gmail_quote">2010/5/27 Code Ghar <span dir="ltr">&lt;<a href="mailto:codeghar@gmail.com">codeghar@gmail.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Is it possible -- and are there any case studies, practical experience, etc -- on deploying FreeSWITCH (FS) in this architecture: one server (FSSIP) handles SIP signaling only, and multiple servers (FSRTP1, FSRTP2, ..., FSRTPn) handle all media responsibilities? So when a call comes in, the SDP contains IP of, say FSRTP1, as media handler. For this to work, FSSIP would request FSRTPx for media resources for each new call and add its IP and port in SDP. The media servers/gateways would play IVR, etc.; collect DTMF and forward as appropriate to FSSIP; perform transcoding; etc.; all while FSSIP only deals with signaling. This way multiple servers could be deployed to handle media responsibilities and only a handful would be required for signaling. In future if there&#39;s a greater need for transcoding, etc. all you need to do is deploy a media server and not have to add servers for signaling.<br>

<br>This idea came to me because I have come across two proprietary applications that do it this way. They have a SIP component and a media component. You can run both on the same physical machine or you can separate them out into multiple machines.<br>

<br>Another way for this could be to integrate FS as a media component to another application&#39;s SIP component. A mix-and-match, so to speak.<br><br>On the flip side, deploy FS as a SIP server and use media capabilities of some other hardware or software application. For example, FS handles signaling and use dedicated hardware for media. A good example of this is illustrated (somewhat) by an image on Sangoma&#39;s website: <a href="http://www.sangoma.com/assets/images/content/transcoding_diagram.jpg" target="_blank">http://www.sangoma.com/assets/images/content/transcoding_diagram.jpg</a>. Look at the &quot;pooled transcoding&quot;.<br>

<br>Is FS even designed to be this modular? If so, how can the aforementioned scenario(s) be achieved?<br>
<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></blockquote></div><br></div></div></div>