View previous topic :: View next topic |
Author |
Message |
sylvain.gotri at soner... Guest
|
Posted: Tue Feb 04, 2014 3:28 am Post subject: [asterisk-users] Best approach in asterisk configuration |
|
|
Hi ,
I have asterisk 1.8.5 installed on Centos 6. Now I want to configure my
PBX to work in my network. I see that I can do this with asterisk files
or use database like mysql to do it (realtime)
I want to know what is the best way and what can be consequence when I
choose other way ?
Thanks.
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
nyamul at gmail.com Guest
|
Posted: Tue Feb 04, 2014 3:30 am Post subject: [asterisk-users] Best approach in asterisk configuration |
|
|
You could go with a GUI type interface... like FreePBX or Elastix.
Regards
HASSAN
On Tue, Feb 4, 2014 at 2:29 PM, sylvain Gotri <sylvain.gotri@sonerep.com (sylvain.gotri@sonerep.com)> wrote:
Quote: | Hi ,
I have asterisk 1.8.5 installed on Centos 6. Now I want to configure my PBX to work in my network. I see that I can do this with asterisk files or use database like mysql to do it (realtime)
I want to know what is the best way and what can be consequence when I choose other way ?
Thanks.
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
http://www.asterisk.org/hello
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
|
|
|
Back to top |
|
|
michel at verbraak.org Guest
|
Posted: Tue Feb 04, 2014 10:54 am Post subject: [asterisk-users] Best approach in asterisk configuration |
|
|
op 04-02-14 09:29, sylvain Gotri schreef:
Quote: | Hi ,
I have asterisk 1.8.5 installed on Centos 6. Now I want to configure my PBX to work in my network. I see that I can do this with asterisk files or use database like mysql to do it (realtime)
I want to know what is the best way and what can be consequence when I choose other way ?
Thanks.
| Silvain,
My experience is that Realtime in mysql works good for sip users and queues. To put your dialplan into the database depends on how big it will be and how many calls it will handle.
As the Asterisk documentation says when your dialplan grows the load on your database will grow exponentialy. This is because for each incoming call it will go through all the records in the dialplan. When your dialplan is in a text file this will only be loaded once on startup or when you do a manual reload.
In my environment I have a static dialplan in the extensions.conf file and a dynamic part which i query through an AGI and php scripts. These scripts are optimized for querying the database. The dynamic dialplan in the database is managed by a custom made webservice (apache/php/mysql)
Regards,
Michel. |
|
Back to top |
|
|
|