Re: [Asterisk-Users] bare-bone config

2003-10-14 Thread Conrad Braun
Thanks for all the help!
I have to postpone my asterisk ambitions as a more pressing task has 
just shown up, but I'll be back in a month or two ;)
cheers!

--
Mit freundlichen Gren
Conrad Braun
Pentaprise GmbH
Im Pinderpark 5
D-90513 Zirndorf
http://www.pentaprise.de
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] bare-bone config

2003-10-13 Thread Conrad Braun
Hi,
could somebody name the minimum configuration files asterisk needs to 
run with a SIP phone?
what do i need apart from asterisk.conf and extensions.conf?
tia
--
Mit freundlichen Gren
Conrad Braun
Pentaprise GmbH
Im Pinderpark 5
D-90513 Zirndorf
http://www.pentaprise.de

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] bare-bone config

2003-10-13 Thread WipeOut
Conrad Braun wrote:

Hi,
could somebody name the minimum configuration files asterisk needs to 
run with a SIP phone?
what do i need apart from asterisk.conf and extensions.conf?
tia
Probably sip.conf.. :)

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] bare-bone config

2003-10-13 Thread Conrad Braun
WipeOut wrote:
Conrad Braun wrote:

Hi,
could somebody name the minimum configuration files asterisk needs to 
run with a SIP phone?
what do i need apart from asterisk.conf and extensions.conf?
tia


Probably sip.conf.. :)

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users



--
Mit freundlichen Grüßen
Conrad Braun
Pentaprise GmbH
Im Pinderpark 5
D-90513 Zirndorf
http://www.pentaprise.de
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] bare-bone config

2003-10-13 Thread WipeOut
Conrad Braun wrote:

ok, that's obvious. simply forgot to mention it ;)
but do I need any of the other files at all?
ps. sorry for posting an empty reply just seconds earlier...

Why do you want to remove some of the conf files?
Just leave them all there.. its not like they use up a lot of space or 
anything.. :)

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] bare-bone config

2003-10-13 Thread Conrad Braun
I am just starting to use asterisk as well as VoIP in general, and it's 
a bit confusing finding out what goes where... in my eyes it seems to be 
a lot easier to start with a bare minimum, thereby eliminating as many 
causes for error as possible. when I feel comfortable, I can always 
expand on top of it.
Also, I haven't found any documentation on which files are read and in 
what order - are the names hardcoded? why isn't there a h323.conf? so 
it's also a matter of curiosity I guess ;)

WipeOut wrote:
Why do you want to remove some of the conf files?
Just leave them all there.. its not like they use up a lot of space or 
anything.. :)

--
Mit freundlichen Grüßen
Conrad Braun
Pentaprise GmbH
Im Pinderpark 5
D-90513 Zirndorf
http://www.pentaprise.de
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] bare-bone config

2003-10-13 Thread Alastair Maw
On 13/10/03 14:05, Conrad Braun wrote:

Why do you want to remove some of the conf files? Just leave them
all there.. its not like they use up a lot of space or anything..
:)

I am just starting to use asterisk as well as VoIP in general, and
it's a bit confusing finding out what goes where... in my eyes it
seems to be a lot easier to start with a bare minimum, thereby
eliminating as many causes for error as possible. when I feel
comfortable, I can always expand on top of it.
If you just bit the bullet and removed them all, you'll discover all 
sorts of interesting dependencies on musiconhold, etc. On my production 
boxes I have autoload=no in modules.conf and then load everything in 
manually, as reducing the number of modules that are loaded that you 
don't actually use is obviously a good idea for memory footprint, 
stability, etc.

--
Alastair Maw
___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] bare-bone config

2003-10-13 Thread James Sizemore
You will need :
extensions.conf
indications.conf
logger.conf
manager.conf
rtp.conf
sip.conf
modules.conf   ; with a crap load of stuff turned off:
noload = chan_modem.so
noload = chan_modem_aopen.so
noload = chan_modem_bestdata.so
noload = chan_modem_i4l.so
noload = chan_phone.so
noload = chan_mgcp.so
noload = chan_iax2.so
noload = chan_oss.so
noload = chan_iax.so
noload = chan_alsa.so
noload = chan_oss.so
.etc.
You may want:
voicemail.conf  ; Do you want voicemail ?
parking.conf ; Do you want to park ?
meetme.conf ; Do you want a conf ?
queues.conf ; Do you want queues?
Conrad Braun wrote:

I am just starting to use asterisk as well as VoIP in general, and 
it's a bit confusing finding out what goes where... in my eyes it 
seems to be a lot easier to start with a bare minimum, thereby 
eliminating as many causes for error as possible. when I feel 
comfortable, I can always expand on top of it.
Also, I haven't found any documentation on which files are read and in 
what order - are the names hardcoded? why isn't there a h323.conf? so 
it's also a matter of curiosity I guess ;)

WipeOut wrote:

Why do you want to remove some of the conf files?
Just leave them all there.. its not like they use up a lot of space 
or anything.. :)

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] bare-bone config

2003-10-13 Thread WipeOut
Conrad Braun wrote:

I am just starting to use asterisk as well as VoIP in general, and 
it's a bit confusing finding out what goes where... in my eyes it 
seems to be a lot easier to start with a bare minimum, thereby 
eliminating as many causes for error as possible. when I feel 
comfortable, I can always expand on top of it.
Also, I haven't found any documentation on which files are read and in 
what order - are the names hardcoded? why isn't there a h323.conf? so 
it's also a matter of curiosity I guess ;)

WipeOut wrote:

Why do you want to remove some of the conf files?
Just leave them all there.. its not like they use up a lot of space 
or anything.. :)

I would say that to start you should take a read through the old and new 
handbooks, and then keep them handy for reference when you start playing..

The names of the .conf files are hard coded but I am sure if you were 
desperate enough you could edit the source code and change them..

I would suggest that you install Asterisk and start it in the default 
config.. then play with the .conf files that are provided to get your 
head around it.. take it a step at a time.. if you try to understand it 
all at once you are in for a hard time.. I have been using it for about 
6 months now and I am still learning better or more efficient ways to do 
things..

The reason there is no h323.conf is becasue H.323 support is not 
compiled by default during installation.. you have to add it manually 
afterwards(and after you have met the additional pre-req's)..

Good luck with your playing.. :)

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] bare-bone config

2003-10-13 Thread Olle E. Johansson
Alastair Maw wrote:

On 13/10/03 14:05, Conrad Braun wrote:

Why do you want to remove some of the conf files? Just leave them
all there.. its not like they use up a lot of space or anything..
:)


I am just starting to use asterisk as well as VoIP in general, and
it's a bit confusing finding out what goes where... in my eyes it
seems to be a lot easier to start with a bare minimum, thereby
eliminating as many causes for error as possible. when I feel
comfortable, I can always expand on top of it.


If you just bit the bullet and removed them all, you'll discover all 
sorts of interesting dependencies on musiconhold, etc. On my production 
boxes I have autoload=no in modules.conf and then load everything in 
manually, as reducing the number of modules that are loaded that you 
don't actually use is obviously a good idea for memory footprint, 
stability, etc.

Here's a list of config files
http://www.voip-info.org/wiki-Asterisk+config+files
I haven't seen a barebone config, it all depends on what a barebone
config is... :-) For me, it's without MGCP and for other people,
how strange as it may sound, it's without SIP...
/O

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] bare-bone config

2003-10-13 Thread Eric Wieling
Try http://www.fnords.org/~eric/asterisk/  It contains simplified config
files as well as other information.

On Mon, 2003-10-13 at 06:34, Conrad Braun wrote:
 Hi,
 could somebody name the minimum configuration files asterisk needs to 
 run with a SIP phone?
 what do i need apart from asterisk.conf and extensions.conf?
 tia
 -- 
 Mit freundlichen Gren
 Conrad Braun
 Pentaprise GmbH
 Im Pinderpark 5
 D-90513 Zirndorf
 http://www.pentaprise.de
 
 ___
 Asterisk-Users mailing list
 [EMAIL PROTECTED]
 http://lists.digium.com/mailman/listinfo/asterisk-users
-- 
Sample configs and more: http://www.fnords.org/~eric/asterisk/

BTEL Consulting
+1-850-484-4535 x2111 (Pensacola)
+1-504-595-3916 x2111 (New Orleans)
+1-877-677-9643 x2111 (Toll Free)

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users