//Installing and Configuing Asterisk-Gui on Slast // //droops ------ gmail.com // //03/27/2008 Asterisk Version 1.4 First you need to retrieve Asterisk Gui $ cd /usr/src $ svn checkout http://svn.digium.com/svn/asterisk-gui/trunk asterisk-gui $ cd asterisk-gui You should then backup your Asterisk configuration files $ cp -r /etc/asterisk /etc/asterisk.backup Then compile Asterisk Gui $ ./configure $ make $ make install $ install samples Then edit manager.conf $ vi /etc/asterisk/manager.conf Change these 2 lines to: enabled = yes webenabled = yes Add in a user at the bottom of the file [admin] secret = password read = system,call,log,verbose,command,agent,user,config write = system,call,log,verbose,command,agent,user,config Then edit httpd.conf $ vi /etc/asterisk/httpd.conf Change these 3 lines to: enabled=yes enablestatic=yes bindaddr=0.0.0.0 Almost done, run this command in the Asterisk Gui directory, to test your config $ make checkconfig Finally Reload Asterisk $ asterisk -rx "reload" To access the Asterisk Gui $ firefox http://localhost:8088/asterisk/static/config/cfgbasic.html