Asterisk Debian
How to setup Asterisk on Debian etch
#aptitude install asterisk asterisk-prompt-frAsterisk configuration
Open and edit sip.conf#nano /etc/asterisk/sip.conf
In the general section, change the language :[default]...language = fr...
Users setup
Add the user at the end of the file :[3000]type=friendhost=dynamicusername=phone1dtmfmode=rfc2833[3001]type=friendhost=dynamicusername=phone2dtmfmode=rfc2833[3002]type=friendhost=dynamicusername=phone3dtmfmode=rfc2833Now edit extensions.conf
#nano /etc/asterisk/extensions.confAdd all the needed extensions at the ond of the file
exten => 3000,1,Dial(SIP/3000,,tT)exten => 3001,1,Dial(SIP/3001,,tT)exten => 3002,1,Dial(SIP/3002,,tT) Edit manager.conf
#nano /etc/asterisk/manager.conf
Asterisk manager configuration
Change the bind address to allow all interfacesbindaddr = 0.0.0.0Add an admin user
[admin]secret = admindeny=0.0.0.0/0.0.0.0permit=0.0.0.0/255.255.255.0read = system,call,log,verbose,command,agent,userwrite = system,call,log,verbose,command,agent,userYou can now start Asterisk
#asterisk -vvvc