VoIP Mailing List Archives
Mailing list archives for the VoIP community |
|
View previous topic :: View next topic |
Author |
Message |
Mike at Trest.COM Guest
|
Posted: Fri Apr 25, 2008 6:50 am Post subject: [asterisk-users] Asterisk for larg |
|
|
Hmmm,
IMHO this is a fundamental SIP architecture issue.
To meet my understanding of distribution, this would required a proxy
function before the call "answer()" on the Asterisk. If , in an
ideal world, this proxy function were to be in the path before
answer(), the proxy would need added intelligence to examine the
INVITE and deduce from it's content the need for IVR or VoiceMail.
This is an Active Call Director functionality. IMHO, this well
within the capabilities of several SIP proxy packages available today.
Once answered, the Asterisk will remain in the call path. If that
is ok in your need for distribution, you can push the call onward via
any Asterisk dialplan extension to be serviced by a whole farm of
other Asterisks for specific chores.
..mike..
At 07:03 AM 4/25/2008, you wrote:
Quote: | Does anybody know how to off-load an Asterisk Box so that to
distribute its functions like IVR and VoiceMail or its PTSN gateway
function into different servers? in this case , will the
installation of Asterisk on each server differe and how these
different servers will interact as a single logical -vs physical-
server? thx alot
_______________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
| -------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20080425/b0e39150/attachment.htm |
|
Back to top |
|
|
stotaro at totarotechn... Guest
|
Posted: Fri Apr 25, 2008 6:52 am Post subject: [asterisk-users] Asterisk for larg |
|
|
On Fri, Apr 25, 2008 at 7:03 AM, gmail <gres.rasmy at gmail.com> wrote:
Quote: |
Does anybody know how to off-load an Asterisk Box so that to distribute its
functions like IVR and VoiceMail or its PTSN gateway function into different
servers? in this case , will the installation of Asterisk on each server
differe and how these different servers will interact as a single logical
-vs physical- server? thx alot
_______________________________________________
| This is how I design any large system. I try to break up
functionality as much as possible on separate boxes. Basically, you
just want to load just the modules and applications you need on that
particular box in modules.conf.
Thanks,
Steve Totaro |
|
Back to top |
|
|
breeveslist at eusnetw... Guest
|
Posted: Wed Apr 30, 2008 6:23 am Post subject: [asterisk-users] Asterisk for larg |
|
|
You have the basic idea right, the dial plans are limited down to
specific functions to be provided and then told how to connect to
other features. For example you might have a box that only provide
PSTN connectivity so all calls come in and the dial plan routes the
calls to another box or boxes. I prefer to use Dundi in larger setups
to avoid multiple IAX trunks having to be configured.
On Mon, Apr 28, 2008 at 7:19 PM, gmail <gres.rasmy at gmail.com> wrote:
Quote: |
Does anyone know how to off-load an Asterisk Box so that to distribute its
functions like IVR and VoiceMail or its PTSN gateway function into different
servers? in this case , will the installation of Asterisk on each server
differe and how these different servers will interact as a single logical
-vs physical- server? thx alot
_______________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
|
--
*****************************
Bruce Reeves, dCAp
EUS Networks
Office: 212-624-5943
Web: www.euscorp.com
**************************** |
|
Back to top |
|
|
stotaro at totarotechn... Guest
|
Posted: Wed Apr 30, 2008 7:02 am Post subject: [asterisk-users] Asterisk for larg |
|
|
I would avoid IAX and use SIP if at all possible.
Thanks,
Steve Totaro
On Wed, Apr 30, 2008 at 7:23 AM, Bruce Reeves
<breeveslist at eusnetworks.com> wrote:
Quote: | You have the basic idea right, the dial plans are limited down to
specific functions to be provided and then told how to connect to
other features. For example you might have a box that only provide
PSTN connectivity so all calls come in and the dial plan routes the
calls to another box or boxes. I prefer to use Dundi in larger setups
to avoid multiple IAX trunks having to be configured.
On Mon, Apr 28, 2008 at 7:19 PM, gmail <gres.rasmy at gmail.com> wrote:
Quote: |
Does anyone know how to off-load an Asterisk Box so that to distribute its
functions like IVR and VoiceMail or its PTSN gateway function into different
servers? in this case , will the installation of Asterisk on each server
differe and how these different servers will interact as a single logical
-vs physical- server? thx alot
_______________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
|
--
*****************************
Bruce Reeves, dCAp
EUS Networks
Office: 212-624-5943
Web: www.euscorp.com
****************************
_______________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
|
|
|
Back to top |
|
|
tobias.wolf at evision.de Guest
|
Posted: Sun May 04, 2008 3:17 am Post subject: [asterisk-users] Asterisk for larg |
|
|
Hi,
Steve Totaro schrieb:
Quote: | I would avoid IAX and use SIP if at all possible.
Thanks,
Steve Totaro
| Can you some reasons for this? Would interest me a lot why SIP is better
in a large Enviroment. than IAX.
Kind regards,
Tobias |
|
Back to top |
|
|
greymanvoip at gmail.com Guest
|
Posted: Sun May 04, 2008 3:39 am Post subject: [asterisk-users] Asterisk for larg |
|
|
Quote: | Can you some reasons for this? Would interest me a lot why SIP is better
in a large Enviroment. than IAX.
|
Because with IAX you cannot separate the signalling and media
resulting in a complex scalability problem.
With SIP you can deploy a SIP Proxy and level load calls across as
many Asterisk servers as you like. For fault tolerance you can add
another SIP Proxy or an IP load balancer in front of your SIP Proxy.
With IAX you can't do any either of those (at least not easily, there
is no equivalnet of a stateless SIP Proxy with IAX) since every call's
signalling and media path is tied to each IAX server it passes
through. The only way to scale IAX is to get a bigger server.
Regards,
Greyman. |
|
Back to top |
|
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|