Frank Church
2010-Jun-30 12:33 UTC
[asterisk-users] Minimum modules required to run VoIP and CDR
What is the minimal module set required to run SIP with database CDR logging. I compiled Asterisk from source and I obviously compiled more stuff than I needed for VoIP and CDR logging to postgres. Sometimes there is a long gap between Asterisk starting and devices being able to register. sip commands do not work, and they appear to be the last items to be loaded. Is there some way of checking the module dependencies and removing those not needed? Can the modules be interrogated to find out their dependencies, probably starting with chan_sip and some cdr and database modules?
Philipp von Klitzing
2010-Jun-30 12:52 UTC
[asterisk-users] Minimum modules required to run VoIP and CDR
Hi!> Sometimes there is a long gap between Asterisk starting and devices > being able to register.First you should check your DNS setup - it has been discussed many a times on this list. Philipp
Frank Church
2010-Jun-30 13:50 UTC
[asterisk-users] Minimum modules required to run VoIP and CDR
The DNS setup itself is fine. The sip module just seems to take too much time to load. My modules.conf uses autoload=yes and it seems that many unwanted modules are loaded before sip itself starts. On 30 June 2010 13:52, Philipp von Klitzing <klitzing at pool.informatik.rwth-aachen.de> wrote:> Hi! > >> Sometimes there is a long gap between Asterisk starting and devices >> being able to register. > > First you should check your DNS setup - it has been discussed many a > times on this list. > > Philipp > > > -- > _____________________________________________________________________ > -- 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 >
Warren Selby
2010-Jun-30 15:20 UTC
[asterisk-users] Minimum modules required to run VoIP and CDR
On Wed, Jun 30, 2010 at 8:50 AM, Frank Church <voipfc at googlemail.com> wrote:> The DNS setup itself is fine. The sip module just seems to take too > much time to load. My modules.conf uses autoload=yes and it seems that > many unwanted modules are loaded before sip itself starts. >You can stop asterisk and then start it again with "asterisk -cvvvvvv" to see a list of everything that starts up. Take that list, tweak it, then reconfigure your modules.conf to only load the ones you want. Then start it again using the same procedure, making note of any errors that pop up, and resolve them. It will take a little trial and error, but you should be able to get it done. -- Thanks, --Warren Selby http://www.selbytech.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100630/8dc6f17d/attachment.htm
Leif Madsen
2010-Jun-30 18:36 UTC
[asterisk-users] Minimum modules required to run VoIP and CDR
Warren Selby wrote:> On Wed, Jun 30, 2010 at 8:50 AM, Frank Church <voipfc at googlemail.com > <mailto:voipfc at googlemail.com>> wrote: > > The DNS setup itself is fine. The sip module just seems to take too > much time to load. My modules.conf uses autoload=yes and it seems that > many unwanted modules are loaded before sip itself starts. > > > You can stop asterisk and then start it again with "asterisk -cvvvvvv" > to see a list of everything that starts up. Take that list, tweak it, > then reconfigure your modules.conf to only load the ones you want. Then > start it again using the same procedure, making note of any errors that > pop up, and resolve them. It will take a little trial and error, but > you should be able to get it done.Alternatively, unselect all the modules in menuselect, then just enable the modules as you need them. Leif.