한국어

IPPBX/GW

온누리070 플레이스토어 다운로드
    acrobits softphone
     온누리 070 카카오 프러스 친구추가온누리 070 카카오 프러스 친구추가친추
     카카오톡 채팅 상담 카카오톡 채팅 상담카톡
    
     라인상담
     라인으로 공유

     페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app


http://www.powerpbx.org/


http://www.powerpbx.org/content/asterisk-freepbx-install-guide-centos-v6-asterisk-v13-freepbx-v12



This guide covers the installation of Asterisk® from source on CentOS. Changes in this guide compared to previous guides include the use of Asterisk v12 & v13, Freepbx v12, and the addition of the pjsip library.

Tested on:

CentOS v6 32 bit & 64 bit
Asterisk v12 & v13
Freepbx v12

Assumptions:

Console text mode (init 3)
Installation done as root user (#)

Install Prerequisites

Ensure all required packages are installed. 

yum -y update && yum -y groupinstall core && yum -y groupinstall base && yum -y install epel-release
yum -y install automake gcc gcc-c++ ncurses-devel openssl-devel libxml2-devel unixODBC-devel libcurl-devel libogg-devel libvorbis-devel speex-devel spandsp-devel freetds-devel net-snmp-devel iksemel-devel corosynclib-devel newt-devel popt-devel libtool-ltdl-devel lua-devel sqlite-devel radiusclient-ng-devel portaudio-devel libresample-devel neon-devel libical-devel openldap-devel gmime-devel mysql-devel bluez-libs-devel jack-audio-connection-kit-devel gsm-devel libedit-devel libuuid-devel jansson-devel libsrtp-devel git subversion libxslt-devel kernel-devel audiofile-devel gtk2-devel libtiff-devel libtermcap-devel bison php php-mysql php-process php-pear php-mbstring php-xml php-gd tftp-server httpd sox tzdata mysql-connector-odbc mysql-server fail2ban

Disable firewall

The following commands save any running firewall rules,  flush the rules from running memory, and prevent rules from loading on boot.

service iptables save
service iptables stop
chkconfig iptables off

After completing the entire procedure we can load the firewall rules again by running service iptables startand have them load on boot by running chkconfig iptables on .

Disable Selinux

Check status

sestatus

If not disabled edit /etc/selinux/config and reboot

SELINUX=disabled

Reboot

To ensure any changes/additions up until now such as updated kernel, selinux disable, email etc. are active.

reboot

Set Timezone

Enable ntpd to syncronize time with public time servers so that it is always exactly correct.

chkconfig ntpd on
​service ntpd start

Copy timezone from this link or use tzselect.

tzselect

Create a symbolic link to the appropriate timezone from/etc/localtime. Example:

ln -sf /usr/share/zoneinfo/America/Vancouver /etc/localtime

Download and install source files

DAHDI

Only required if using a physical server and installing telecom hardware.

cd /usr/src
wget http://downloads.asterisk.org/pub/telephony/dahdi-linux-complete/dahdi-linux-complete-current.tar.gz
tar zxvf dahdi-linux-complete*
cd /usr/src/dahdi-linux-complete*/
make && make install && make config
service dahdi start

PJSIP

cd /usr/src
wget http://www.pjsip.org/release/2.3/pjproject-2.3.tar.bz2
tar -xjvf pjproject*
cd /usr/src/pjproject*/

#If this is a new source install the following command won't do anything
make distclean
# libdir will be automatically selected
# /usr/lib for 32bit OS 
# /usr/lib64 for 64bit OS

ARCH=$(getconf LONG_BIT | grep "64")
./configure --prefix=/usr --libdir=/usr/lib${ARCH} --enable-shared --disable-sound --disable-resample \
--disable-video --disable-opencore-amr CFLAGS='-O2 -DNDEBUG'
make uninstall && make dep && make && make install && ldconfig
To verify type ldconfig -p | grep pj which should show several linked *.so files in /usr/lib or /usr/lib64 depending on OS architecture.

Asterisk

cd /usr/src
wget http://downloads.asterisk.org/pub/telephony/asterisk/asterisk-13-current.tar.gz
tar zxvf asterisk-13-current.tar.gz
cd /usr/src/asterisk-13*/
make distclean
ARCH=$(getconf LONG_BIT | grep "64")
./configure --libdir=/usr/lib${ARCH}

To verify type nano -v config.log.

cd /usr/src/asterisk-13*/
make menuselect.makeopts

#To select compile options manually run make menuselect instead of the following command
#To list command line options run menuselect/menuselect --list-options
#If Asterisk fails to run on a virtual machine try add "--disable BUILD_NATIVE"
#To add asterisk realtime for applications such as A2billing add "--enable res_config_mysql"

menuselect/menuselect --enable cdr_mysql --enable EXTRA-SOUNDS-EN-GSM menuselect.makeopts

Create Asterisk user, compile, install, and set ownership.

adduser asterisk -M -d /var/lib/asterisk -s /sbin/nologin -c "Asterisk User"
make && make install && chown -R asterisk. /var/lib/asterisk

Freepbx GUI

pear install db-1.7.14
VERSION=12.0
USERNAME=asteriskuser
PASSWORD=amp109

service mysqld start
mysqladmin create asterisk
mysqladmin create asteriskcdrdb
mysql -e "GRANT ALL PRIVILEGES ON asterisk.* TO $USERNAME@localhost IDENTIFIED BY '$PASSWORD';"
mysql -e "GRANT ALL PRIVILEGES ON asteriskcdrdb.* TO $USERNAME@localhost IDENTIFIED BY '$PASSWORD';"
mysql -e "flush privileges;"

cd /usr/src
git clone -b release/$VERSION https://github.com/FreePBX/framework.git freepbx

cd /usr/src/freepbx
./start_asterisk start
mv /var/www/html /var/www/html_orig
./install_amp --installdb --skip-module-install --username $USERNAME --password $PASSWORD
​# Press ENTER for all the questions including the incorrect IP address.

Do not be concerned by the warning messages.

# Minimal module install
amportal a ma upgrade framework
amportal a ma upgrade core
amportal a ma upgrade voicemail
amportal a ma upgrade sipsettings
amportal a ma upgrade infoservices
amportal a ma upgrade featurecodeadmin
amportal a ma upgrade logfiles
amportal a ma upgrade callrecording
amportal a ma upgrade cdr
amportal a ma upgrade dashboard

# Optionally install all standard modules
amportal a ma upgrade manager
amportal a ma installall
amportal restart
amportal a reload
amportal chown

If the GUI complains about problems with the framework module or a missing /usr/sbin/amportal file tryamportal a ma delete framework followed by amportal a ma upgrade framework.

Post install tasks are mandatory.

Post-install tasks

Setting a mysql root password is recommended.  

MYSQL_ROOT_PW=abcdef
mysqladmin -u root password "$MYSQL_ROOT_PW"

You will need to provide this password for any further mysql configuration.   So instead of usingmysql and mysqladmin use  mysql -p and mysqladmin -p.

Change webserver default user and group from apache to asterisk.

sed -i 's/User apache/User asterisk/' /etc/httpd/conf/httpd.conf
sed -i 's/Group apache/Group asterisk/' /etc/httpd/conf/httpd.conf

Enable .htaccess files to protect sensitive webserver directories.

sed -i ':a;N;$!ba;s/AllowOverride None/AllowOverride All/2' /etc/httpd/conf/httpd.conf

Prevent external MySQL access.

sed -i '2i bind-address=127.0.0.1' /etc/my.cnf

Set mysql and http servers to start on boot.

chkconfig mysqld on
chkconfig httpd on

Change default “upload_max_filesize” to 20M to allow larger music on hold files.

sed -i 's/upload_max_filesize = .*/upload_max_filesize = 20M/' /etc/php.ini

Set Freepbx to start on boot.

echo '/usr/local/sbin/amportal start' >> /etc/rc.local

Finally reboot for all changes to take effect.

reboot

 

Optional

Log File Rotation

If this is not done the log files will keep growing indefinitely.

nano /etc/logrotate.d/asterisk
/var/spool/mail/asterisk
/var/log/asterisk/* {
        daily
        missingok
        rotate 7
        #compress
        notifempty
        sharedscripts
        create 0640 asterisk asterisk
        postrotate
        /usr/sbin/asterisk -rx 'logger reload' > /dev/null 2> /dev/null || true
        endscript
}

TFTP

If you plan to use hardware SIP phones you will probably want to set up the tftpboot directory and enable the tftp server.

yum -y install tftp-server
nano /etc/xinetd.d/tftp

change server_args = -s /var/lib/tftpboot
to server_args = -s /tftpboot

change disable=yes
to disable=no

mkdir /tftpboot
chmod 777 /tftpboot
service xinetd restart

MPG123

This is used in combination with sox to convert uploaded mp3 music on hold files to Asterisk compatible wav files.

cd /usr/src
wget http://ufpr.dl.sourceforge.net/project/mpg123/mpg123/1.21.0/mpg123-1.21.0.tar.bz2
tar -xjvf mpg123*

cd mpg123*/
ARCH=$(getconf LONG_BIT | grep "64")
./configure --prefix=/usr --libdir=/usr/lib${ARCH} && make && make install && ldconfig

Digum addons

To register digium® licenses.  Although there is a freepbx module for this it did not appear to be working properly at the time this procedure was written.

cd /usr/src
wget http://downloads.digium.com/pub/register/linux/register
chmod +x register
./register

To install the individual addons refer to the README files and ignore the register instructions.

http://downloads.digium.com/pub/telephony/codec_g729/README
http://downloads.digium.com/pub/telephony/res_digium_phone/README
http://downloads.digium.com/pub/telephony/fax/README
http://downloads.digium.com/pub/telephony/hpec/README

Password protect http folder

A simple way to block scanners looking for exploits on apache web servers.  This assumes the GUI does not need anonymous access.  Also prevents any added load on the server as a result of scanning.

mkdir -p /usr/local/apache/passwd
htpasswd -c /usr/local/apache/passwd/wwwpasswd someusername
htpasswd -c /usr/local/apache/passwd/wwwpasswd someotherusername
nano /var/www/html/.htaccess
# .htaccess files require AllowOverride On in /etc/httpd/conf/httpd.conf
AuthType Basic
AuthName "Restricted Access"
AuthUserFile /usr/local/apache/passwd/wwwpasswd
Require user someusername someotherusername

Alternatively, the above can be added in /etc/httpd/conf/httpd.conf as follows.

<Directory /var/www/html>
AuthType Basic
AuthName "Restricted Area"
AuthUserFile /usr/local/apache/passwd/wwwpasswd
Require user someusername
</Directory>

Whitelist protect http access

If http access is only required from certain IP addresses.

nano /etc/http/conf.d/whitelist.conf
<Location />
Order Deny,Allow
Deny from all
#
Allow from x.x.x.x
Allow from x.x.x.x x.x.x.x x.x.x.x
Allow from somedomain.com
Allow from x.x
Allow from x.x.x.0/255.255.255.0
#
#See http://httpd.apache.org/docs/2.2/mod/mod_authz_host.html for more examples
#
</Location>

A friendly request

These install instructions show up in many different places around the internet and also inside some install scripts.  Link backs and/or acknowledgements of our efforts in other ways would be appreciated.  

번호 제목 글쓴이 날짜 조회 수
98 php memory and filesize increase upload wav admin 2019.06.25 5150
97 changing SIP drivers to CHAN_PJSIP Please err 에러 admin 2019.06.21 6157
96 /dev/mapper/ubuntu--vg-root filling up admin 2019.04.08 12424
95 Asterisk dialolan detail explan good easy clean admin 2017.08.26 20815
94 how-to-freepbx-13-firewall-setup admin 2017.08.14 20859
93 Configuring Your PBX admin 2017.08.17 20872
92 RPi Text to Speech (Speech Synthesis) admin 2017.08.24 20900
91 Google letter agi admin 2017.08.26 20911
90 Asterisk based auto dialer test and verified by 300+ concurrent. admin 2017.08.31 20930
89 SUGAR CRM admin 2017.08.23 20988
88 /sbin/service httpd start stop web start stop admin 2017.08.16 20990
87 thirdlane PBX price admin 2017.08.23 20996
86 IVR actions asterisk admin 2017.08.31 20998
85 download Installing+AsteriskNOW admin 2017.08.25 21040
84 asterisk XactView V3-CRM Widget admin 2017.08.24 21057
83 FreePBX 12 – Getting Started Guide admin 2017.08.29 21110
82 NAT 와 VoIP 시그널과 RTP 전송 영향 NAT와 방화벽/STUN/TURN/ICE/SBC admin 2017.08.19 21124
81 asterisk CRM SUGARCRM SuiteCRM admin 2017.08.24 21124
80 asterisk freepbx TTS Engine Custom - Amazon Polly - 24 languages admin 2017.08.24 21127
79 User Control Panel (UCP) 14+ admin 2017.08.23 21138
78 Asterisk/IVR/PBX/VoIP/Contact center/Voicebroadcast engineer admin 2017.08.25 21142
77 AsterSwitchboard CTI Operator Panel for Asterisk admin 2017.08.08 21161
76 Asterisk 13 Debian 8 admin 2015.11.13 21166
75 github A2Billing is commercially supported by Star2Billing admin 2017.08.26 21192
74 Text to Speech User Guide admin 2017.08.24 21228
73 iptables for asterisk simple example configuration admin 2017.08.31 21260
72 asterisk IVR 쉽게 설정하기 admin 2017.08.16 21266
71 HOW TO INSTALL FREEPBX ON CENTOS 7 admin 2017.08.24 21302
70 Top 10 greater worker admin 2017.08.26 21307
69 FOIP: T.38 Fax Relay vs. G.711 Fax Pass-Through (Fax Over IP) admin 2015.09.24 21323
68 asterisk Chapter 6. Dialplan Basics admin 2017.08.25 21339
67 Capturing SIP and RTP traffic using tcpdump admin 2017.08.17 21340
66 음성통화 서버 Asterisk + FreePBX / 통화 시연해보기 admin 2017.08.18 21386
65 TwistedWave Online A browser-based audio editor admin 2017.08.25 21398
64 Configuring an Asterisk server admin 2015.05.05 21416
63 Asterisk Downloads AsteriskNOW Software PBX admin 2015.05.05 21423
62 Setup install Asterisk PBX telephony system | VOIP Tutorial admin 2015.05.05 21435
61 OPUS and VP9 Bitrates admin 2017.08.17 21474
60 Insert into dialplan Asterisk admin 2017.08.26 21478
59 asterisk FreePBX 14, Distro 14 & More! admin 2017.08.16 21484
58 우분투 Mumble VoIP 음성채팅서버 구축 admin 2017.08.18 21520
57 Fax Configuration FREE PBX and asterisk FAX admin 2015.05.05 21522
56 Asterisk Freepbx Install Guide (CentOS v7, Asterisk v13, Freepbx v13) admin 2017.08.23 21529
55 Considerations for Using T.38 versus G.711 for Fax over IP file admin 2015.09.24 21562
54 Brand New Sealed Sangoma FreePBX 60 - 75 Users or 30 Calls admin 2017.08.05 21564
53 fax licenses Asterisk admin 2015.05.05 21571
52 FreePBX – Custom FAX to email admin 2015.05.05 21593
51 How to Install Asterisk 13 on Ubuntu 16.04 from Source admin 2017.08.23 21595
50 Asterisk 설치 준비 admin 2015.11.15 21610
49 How to build an outbound Call Center with Newfies-Dialer and Asterisk/FreePBX admin 2017.08.31 21622
48 A simple IVR and Queue example where customer listens to marketing materials .. admin 2015.05.05 21658
47 FaxServer using Asterisk admin 2015.05.05 21683
46 User Control Panel (UCP) asterisk freepbx admin 2017.08.17 21683
45 Price ,,Install Commercial Modules on CentOS and RHEL based admin 2017.08.16 21691
44 WombatDialer is highly scalable, multi-server, works with your existing Asterisk PBX. admin 2017.08.31 21703
43 Asterisk A simple IVR admin 2015.05.05 21727
42 초보) Asterisk , AsteriskNow 무엇인가? 무슨차이인가? 시작 배우기 쉽게 이해 공부 사용 admin 2017.08.29 21731
41 Installing FreePBX 14 on Debian 8.8 These instructions work fine admin 2017.08.29 21736
40 Generic Asterisk SIP Configuration Guide admin 2015.05.05 21741
39 Installing SNG7 Official Distro admin 2017.08.17 21809
38 FAX over IP sofware admin 2015.05.05 21816
37 T.38 Fax Gateway Asterisk admin 2015.05.05 21821
36 Setup Asterisk 13 with FreePBX 13 in CentOS 7 admin 2017.08.24 21863
35 Incoming Fax Handling admin 2015.05.05 21891
34 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.08.17 21899
33 How to install and setup Asterisk 14 (PBX) on CentOS 7 admin 2017.08.23 21901
32 Using Asterisk to Detect and Redirect Fax Calls for Communications Server admin 2015.05.05 22041
31 Smart Predictive Auto calling Software System: Automatic Phone Calling admin 2017.08.31 22051
30 Introducing Asterisk Call Distribution ACD asterisk admin 2017.08.31 22078
29 Dialplan handler routines allow customization admin 2017.08.26 22100
28 AGI asterisk gateway interface synopsis admin 2017.08.26 22111
27 Fax For Asterisk download add on 1 port free IVR prompt G.729 admin 2015.05.05 22138
26 Automatic Call Distribution (ACD) Asterisk as Call Center admin 2017.08.31 22143
25 MP3 to WAV, WMA to WAV, OGG Convert audio to WAV online admin 2015.05.09 22161
24 Setup FAX on Asterisk with DIDForSale SIP DIDs admin 2015.05.05 22179
23 Playing text to speech inside read function in asterisk admin 2017.08.28 22245
22 asterisk dialplan 설명 admin 2017.08.16 22271
21 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.09.01 22290
20 VICIdial Scratch Installation CentOS 7 & MariaDB & Asterisk 11 & Latest VICIdial SVN admin 2017.09.02 22566
19 Text to speech for asterisk using Google Translate admin 2017.08.24 22574
18 Asterisk tips ivr menu Interactive voice response menus admin 2015.05.05 22645
17 Hosting Cheap VPS Hosting that doesn’t feel cheap admin 2017.08.24 22962
16 Installing AsteriskNOW Official Distro admin 2015.05.05 23045
15 Speech Recognition on Asterisk: Getting Started admin 2017.08.28 23079
14 Asterisk 가장쉬운 설치 및 설정 사용 방법 이해 할수있게 배우는 순서 안내 설명 admin 2017.08.16 23319
13 List of 5 Open Source Call Center Software Programs admin 2017.08.31 23712
12 Freepbx on Debian (Debian v7, Asterisk v11, Freepbx v2.11) admin 2015.05.05 23810
11 Asterisk fax Asterisk and fax calls Fax over IP admin 2015.05.05 24231
10 Asterisk Quick Start Guide admin 2015.05.05 24442
9 A2Billing v2.2 Install Guide CentOS v7 Asterisk v11 v13 seems to work FreePBX v13 admin 2017.08.23 24720
8 A2Billing v2 Install Guide admin 2015.05.05 25013
7 Securing Your Asterisk VoIP Server with IPTables admin 2015.05.05 25220
» Asterisk Freepbx Install Guide (CentOS v6, Asterisk v13, Freepbx v12) admin 2015.05.05 25853
5 Fusionpbx v4 Freeswitch v1.6 CentOS v7 Install Guide admin 2017.08.23 26475
4 How to Install Asterisk on CentOS 7 easy clean explain 깔금한 쉬운 설명 admin 2017.08.23 27820
3 라즈베리파이, 아스타리스크(asterisk) PBX(사설교환기) admin 2017.08.23 28634
2 Asterisk AGI/AMI to ARI Asterisk&FreePbx - IVR setting admin 2015.05.05 30943
1 Make Your Own IVR with Asterisk admin 2017.08.26 34889