Category Archives: Asterisk

How to setup Asterisk 11.0 beta on CentOS 6.2 | My Technical Notes

How to install Asterisk 11.0 Beta CentOS 6.2 Install CentOS 6.2 and Disable the Firewall now Disable the firewall : nano /etc/selinux/config SELINUX=disabled Update a CentOS [root@Kartook ~]# yum update Loaded plugins: fastestmirror, refresh-packagekit, security Determining fastest mirrors * base: ftp.iitm.ac.in * extras: ftp.iitm.ac.in * updates: ftp.iitm.ac.in Complete! Install Required Packages [root@Kartook ~]# yum -y […]

Install Asterisk 1.8 from source on Ubuntu 12.04

Install Asterisk 1.8 from source on Ubuntu 12.04 New install updating the patches apt-get update apt-get upgrade Verifying kernel headers are installed apt-get install linux-headers-`uname -r` Downloding a packages for building asterisk, dependencies, compilers, etc Compiler apt-get install build-essential sudo apt-get install libssl-dev Required Dev file apt-get install libxml2-dev Termcap dev files apt-get install libncurses5-dev […]

Asterisk 11.0.0-beta1 Now Available

  The Asterisk Development Team is pleased to announce the first beta release of Asterisk 11.0.0 (the first Long Term Support release since 1.8). This release is available for immediate download at http://downloads.asterisk.org/pub/telephony/asterisk/releases All interested users of Asterisk are encouraged to participate in the Asterisk 11 testing process. Please report any issues found to the […]

How-to Enable Video support in Asterisk

How-to Enable Video support in Asterisk Asterisk Supported video codecs H.261 H.263 H.263p (Asterisk 1.4) H.264 (Asterisk 1.4) Note : Still Asterisk 1.4 V has   issue regarding video codec negotiation For old Version : enable video in Asterisk, modify sip.conf to add: [general] videosupport=yes For New Version : Edit the following file /etc/asterisk/sip_general_custom.conf and […]

How To Install Asterisk1.6.2 On CentOS 5

   How To Install Asterisk1.6.2   On CentOS 5 Install dependencies: # yum -y install kernel-devel bison bison-devel ncurses ncurses-devel zlib zlib-devel openssl openssl-devel gnutls-devel gcc gcc-c++ make libxml2-devel Download Asterisk and DAHDI: # wget https://launchpad.net/asterisk/1.6.2/1.6.2.24/+download/asterisk-1.6.2.24.tar.gz && wget http://downloads.asterisk.org/pub/telephony/dahdi-linux-complete/releases/dahdi-linux-complete-2.3.0.1+2.3.0.tar.gz Extract Asterisk and DAHDI: # tar -xvzf asterisk-1.6.2.24.tar.gz && tar -xvzf dahdi-linux-complete-2.3.0.1+2.3.0.tar.gz Build DAHDI: # cd […]

How to install FreePBX on Asterisk

How to install FreePBX   on Asterisk     Go to the t Directory cd /usr/src wget http://mirror.freepbx.org/freepbx-2.9.0.tar.gz tar -zxvf freepbx-2.9.0.tar.gz cd freepbx-2.9.0   Create database and import to SQL directory mysqladmin create asterisk -u root -p mysqladmin create asteriskcdrdb -u root -p mysql -u root -p asterisk < SQL/newinstall.sql mysql -u root -p asteriskcdrdb […]

Ubuntu : How to install asterisk 10 on ubuntu 12.04 LTS

Ubuntu : How to install asterisk 10 on ubuntu 12.04 LTS Step:1 To start off with make sure that Ubuntu is up to date. $sudo aptitude update && aptitude dist-upgrade Step:2 Install deps and build tools so that we can compile Asterisk 10 on Ubuntu $sudo aptitude install -y build-essential linux-headers-`uname -r` libxml2-dev ncurses-dev libsqlite3-dev […]