한국어

IPPBX/GW

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

     페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app


https://www.powerpbx.org/content/asterisk-freepbx-install-guide-centos-v7-asterisk-v13-freepbx-v13



This guide covers the installation of Asterisk® from source on CentOS. Changes compared to previous guides include the use of CentOS v7 and Freepbx v13.

Tested on:

CentOS v7 64 bit
Asterisk v13
Freepbx v13

Assumptions:

Console text mode (multi-user.target)
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 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 ilbc-devel bison php php-mysql php-process php-pear php-mbstring php-xml php-gd tftp-server httpd sox tzdata mysql-connector-odbc mariadb mariadb-server fail2ban jwhois xmlstarlet ghostscript libtiff-tools python-devel patch
## Legacy pear requirement
pear install Console_getopt

Disable Selinux

Check status

sestatus

If not disabled, set SELINUX=disabled in /etc/selinux/config.  Requires reboot for changes to take effect.

sed -i 's/\(^SELINUX=\).*/\SELINUX=disabled/' /etc/selinux/config

Timezone

Use tzselect to find the correct timezone.

tzselect
## SET TIMEZONE EXAMPLE
timedatectl set-timezone America/Vancouver
​timedatectl status

Reboot

To ensure the changes/additions are active.

reboot

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 all && make install && make config
systemctl start dahdi

If make all fails try reboot and run yum -y install kernel-devel .

PJSIP

This separate PJSIP install is optional since Asterisk v13.8.  If asterisk is compiled with the --with-pjproject-bundled flag, this separate install will be ignored.
cd /usr/src
wget http://www.pjsip.org/release/2.5.5/pjproject-2.5.5.tar.bz2
tar -xjvf pjproject-2.5*
cd /usr/src/pjproject-2.5*/
make distclean
./configure --prefix=/usr --libdir=/usr/lib64 --enable-shared --disable-sound --disable-resample \
--disable-video --disable-opencore-amr CFLAGS='-O2 -DNDEBUG'
make uninstall && ldconfig && make dep && make && make install && ldconfig
To verify type ldconfig -p | grep pj which should show several linked *.so files in /usr/lib64.

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
./configure --libdir=/usr/lib64 --with-pjproject-bundled

To verify type nano -v config.log.

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

#To select compile options manually from menu 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 -s /sbin/nologin -c "Asterisk User"
make && make install && chown -R asterisk. /var/lib/asterisk

Freepbx

systemctl start mariadb
cd /usr/src
git clone -b release/13.0 https://github.com/FreePBX/framework.git freepbx
cd /usr/src/freepbx
./start_asterisk start
./install -n
# Minimal module install
fwconsole ma upgrade framework core voicemail sipsettings infoservices \
featurecodeadmin logfiles callrecording cdr dashboard music conferences
fwconsole restart
fwconsole reload
fwconsole chown

Post install tasks are mandatory.

Post-install tasks

Lock down the database server.

mysql_secure_installation

Answer Y to everything.

Change apache web server settings.

sed -i 's/\(^upload_max_filesize = \).*/\120M/' /etc/php.ini
sed -i 's/^\(User\|Group\).*/\1 asterisk/' /etc/httpd/conf/httpd.conf
sed -i ':a;N;$!ba;s/AllowOverride None/AllowOverride All/2' /etc/httpd/conf/httpd.conf

Enable access to services and  ports.

firewall-cmd --permanent --zone=public --add-service={http,https}
firewall-cmd --permanent --zone=public --add-port=5060-5061/tcp
firewall-cmd --permanent --zone=public --add-port=5060-5061/udp
firewall-cmd --permanent --zone=public --add-port=10000-20000/udp

Set database and web server to start on boot.

systemctl enable mariadb
systemctl enable httpd

Set Freepbx to start on boot.

nano /etc/systemd/system/freepbx.service
​[Unit]
Description=Freepbx
After=mariadb.service
 
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/sbin/fwconsole start
ExecStop=/usr/sbin/fwconsole stop
 
[Install]
WantedBy=multi-user.target
systemctl enable freepbx

CDR ODBC

If the deprecated cdr_mysql.so module is installed then this is optional, but still recommended. 

nano /etc/odbc.ini
[MySQL-asteriskcdrdb]
Description=MySQL connection to 'asteriskcdrdb' database
driver=MySQL
server=localhost
database=asteriskcdrdb
Port=3306
Socket=/var/run/mysqld/mysqld.sock
option=3

Use username & password in /etc/asterisk/res_odbc_additional.conf to test connectivity to the DB via ODBC.  For this example we are using username asteriskuser and password amp109

isql -v MySQL-asteriskcdrdb asteriskuser amp109

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/*log
/var/log/asterisk/full
/var/log/asterisk/dtmf
/var/log/asterisk/freepbx_dbug
/var/log/asterisk/fail2ban {
        weekly
        missingok
        rotate 4
        #compress
        notifempty
        sharedscripts
        create 0640 asterisk asterisk
        postrotate
        /usr/sbin/asterisk -rx 'logger reload' > /dev/null 2> /dev/null || true
        endscript
        su root root
}

TFTP

If you plan to use hardware SIP phones you will probably want to set up TFTP.

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
systemctl restart xinetd
firewall-cmd --permanent --zone=public --add-port=69/udp
firewall-cmd --reload

MPG123

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

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

cd mpg123*/
./configure --prefix=/usr --libdir=/usr/lib64 && make && make install && ldconfig

Digum addons

To register digium® licenses. 

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 access

A simple way to block scanners looking for exploits on apache web servers

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 valid-user

Alternatively, the above .htaccess config can be added to /etc/httpd/conf/httpd.conf or as a separate file in /etc/httpd/conf.d/  as follows.

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

Whitelist protect http access

If http access is only required from certain IP addresses.

nano /etc/httpd/conf.d/whitelist.conf
<Location />
  <RequireAny>
  ## Uncomment the following line to disable the whitelist
  #Require all granted

  Require ip x.x.x.x
  Require ip x.x.x.x x.x.x.x x.x.x.x
  Require ip x.x
  Require ip x.x.x.0/255.255.255.0
  Require host somedomain.com
  #
  ## See http://httpd.apache.org/docs/2.4/mod/mod_authz_host.html for more examples
  #
  </RequireAny>
</Location>

A friendly request

These install instructions show up in many different places.  Acknowledgements of our efforts would be appreciated. 

번호 제목 글쓴이 날짜 조회 수
98 php memory and filesize increase upload wav admin 2019.06.25 10201
97 changing SIP drivers to CHAN_PJSIP Please err 에러 admin 2019.06.21 11366
96 /dev/mapper/ubuntu--vg-root filling up admin 2019.04.08 17384
95 VICIdial Scratch Installation CentOS 7 & MariaDB & Asterisk 11 & Latest VICIdial SVN admin 2017.09.02 28894
94 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.09.01 27305
93 List of 5 Open Source Call Center Software Programs admin 2017.08.31 30171
92 Smart Predictive Auto calling Software System: Automatic Phone Calling admin 2017.08.31 27033
91 WombatDialer is highly scalable, multi-server, works with your existing Asterisk PBX. admin 2017.08.31 26528
90 Asterisk based auto dialer test and verified by 300+ concurrent. admin 2017.08.31 26524
89 Automatic Call Distribution (ACD) Asterisk as Call Center admin 2017.08.31 27166
88 Introducing Asterisk Call Distribution ACD asterisk admin 2017.08.31 27332
87 How to build an outbound Call Center with Newfies-Dialer and Asterisk/FreePBX admin 2017.08.31 27431
86 IVR actions asterisk admin 2017.08.31 26099
85 iptables for asterisk simple example configuration admin 2017.08.31 26759
84 초보) Asterisk , AsteriskNow 무엇인가? 무슨차이인가? 시작 배우기 쉽게 이해 공부 사용 admin 2017.08.29 26734
83 Installing FreePBX 14 on Debian 8.8 These instructions work fine admin 2017.08.29 26840
82 FreePBX 12 – Getting Started Guide admin 2017.08.29 26156
81 Playing text to speech inside read function in asterisk admin 2017.08.28 27338
80 Speech Recognition on Asterisk: Getting Started admin 2017.08.28 28279
79 github A2Billing is commercially supported by Star2Billing admin 2017.08.26 26095
78 Insert into dialplan Asterisk admin 2017.08.26 26180
77 Google letter agi admin 2017.08.26 26192
76 Top 10 greater worker admin 2017.08.26 26480
75 Dialplan handler routines allow customization admin 2017.08.26 27243
74 AGI asterisk gateway interface synopsis admin 2017.08.26 27717
73 Make Your Own IVR with Asterisk admin 2017.08.26 40427
72 Asterisk dialolan detail explan good easy clean admin 2017.08.26 25936
71 download Installing+AsteriskNOW admin 2017.08.25 26277
70 TwistedWave Online A browser-based audio editor admin 2017.08.25 26530
69 Asterisk/IVR/PBX/VoIP/Contact center/Voicebroadcast engineer admin 2017.08.25 26023
68 asterisk Chapter 6. Dialplan Basics admin 2017.08.25 26339
67 RPi Text to Speech (Speech Synthesis) admin 2017.08.24 25901
66 asterisk freepbx TTS Engine Custom - Amazon Polly - 24 languages admin 2017.08.24 26526
65 asterisk CRM SUGARCRM SuiteCRM admin 2017.08.24 27493
64 Hosting Cheap VPS Hosting that doesn’t feel cheap admin 2017.08.24 28403
63 HOW TO INSTALL FREEPBX ON CENTOS 7 admin 2017.08.24 26717
62 Setup Asterisk 13 with FreePBX 13 in CentOS 7 admin 2017.08.24 26809
61 asterisk XactView V3-CRM Widget admin 2017.08.24 26248
60 Text to Speech User Guide admin 2017.08.24 26243
59 Text to speech for asterisk using Google Translate admin 2017.08.24 27932
58 User Control Panel (UCP) 14+ admin 2017.08.23 26284
57 라즈베리파이, 아스타리스크(asterisk) PBX(사설교환기) admin 2017.08.23 34198
56 How to Install Asterisk on CentOS 7 easy clean explain 깔금한 쉬운 설명 admin 2017.08.23 32720
55 Fusionpbx v4 Freeswitch v1.6 CentOS v7 Install Guide admin 2017.08.23 31576
» Asterisk Freepbx Install Guide (CentOS v7, Asterisk v13, Freepbx v13) admin 2017.08.23 26647
53 A2Billing v2.2 Install Guide CentOS v7 Asterisk v11 v13 seems to work FreePBX v13 admin 2017.08.23 29518
52 How to install and setup Asterisk 14 (PBX) on CentOS 7 admin 2017.08.23 26764
51 How to Install Asterisk 13 on Ubuntu 16.04 from Source admin 2017.08.23 26835
50 thirdlane PBX price admin 2017.08.23 26757
49 SUGAR CRM admin 2017.08.23 26685
48 NAT 와 VoIP 시그널과 RTP 전송 영향 NAT와 방화벽/STUN/TURN/ICE/SBC admin 2017.08.19 26212
47 음성통화 서버 Asterisk + FreePBX / 통화 시연해보기 admin 2017.08.18 27185
46 우분투 Mumble VoIP 음성채팅서버 구축 admin 2017.08.18 27147
45 User Control Panel (UCP) asterisk freepbx admin 2017.08.17 27849
44 Configuring Your PBX admin 2017.08.17 25703
43 Installing SNG7 Official Distro admin 2017.08.17 27028
42 OPUS and VP9 Bitrates admin 2017.08.17 26350
41 Capturing SIP and RTP traffic using tcpdump admin 2017.08.17 26401
40 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.08.17 26986
39 Price ,,Install Commercial Modules on CentOS and RHEL based admin 2017.08.16 26846
38 asterisk IVR 쉽게 설정하기 admin 2017.08.16 26536
37 Asterisk 가장쉬운 설치 및 설정 사용 방법 이해 할수있게 배우는 순서 안내 설명 admin 2017.08.16 29021
36 /sbin/service httpd start stop web start stop admin 2017.08.16 26801
35 asterisk FreePBX 14, Distro 14 & More! admin 2017.08.16 26412
34 asterisk dialplan 설명 admin 2017.08.16 27614
33 how-to-freepbx-13-firewall-setup admin 2017.08.14 25991
32 AsterSwitchboard CTI Operator Panel for Asterisk admin 2017.08.08 26804
31 Brand New Sealed Sangoma FreePBX 60 - 75 Users or 30 Calls admin 2017.08.05 26511
30 Asterisk 설치 준비 admin 2015.11.15 26654
29 Asterisk 13 Debian 8 admin 2015.11.13 26195
28 FOIP: T.38 Fax Relay vs. G.711 Fax Pass-Through (Fax Over IP) admin 2015.09.24 26657
27 Considerations for Using T.38 versus G.711 for Fax over IP file admin 2015.09.24 26503
26 MP3 to WAV, WMA to WAV, OGG Convert audio to WAV online admin 2015.05.09 26825
25 FAX over IP sofware admin 2015.05.05 26864
24 Fax Configuration FREE PBX and asterisk FAX admin 2015.05.05 26574
23 Asterisk AGI/AMI to ARI Asterisk&FreePbx - IVR setting admin 2015.05.05 36225
22 A simple IVR and Queue example where customer listens to marketing materials .. admin 2015.05.05 26769
21 Asterisk A simple IVR admin 2015.05.05 26390
20 Asterisk tips ivr menu Interactive voice response menus admin 2015.05.05 27665
19 Setup install Asterisk PBX telephony system | VOIP Tutorial admin 2015.05.05 27499
18 Asterisk Downloads AsteriskNOW Software PBX admin 2015.05.05 26413
17 Fax For Asterisk download add on 1 port free IVR prompt G.729 admin 2015.05.05 26955
16 T.38 Fax Gateway Asterisk admin 2015.05.05 27083
15 Setup FAX on Asterisk with DIDForSale SIP DIDs admin 2015.05.05 27429
14 FaxServer using Asterisk admin 2015.05.05 26692
13 fax licenses Asterisk admin 2015.05.05 26825
12 Configuring an Asterisk server admin 2015.05.05 26152
11 FreePBX – Custom FAX to email admin 2015.05.05 26695
10 Incoming Fax Handling admin 2015.05.05 26766
9 Using Asterisk to Detect and Redirect Fax Calls for Communications Server admin 2015.05.05 27334
8 Asterisk fax Asterisk and fax calls Fax over IP admin 2015.05.05 29159
7 Securing Your Asterisk VoIP Server with IPTables admin 2015.05.05 32822
6 A2Billing v2 Install Guide admin 2015.05.05 30526
5 Freepbx on Debian (Debian v7, Asterisk v11, Freepbx v2.11) admin 2015.05.05 28714
4 Asterisk Freepbx Install Guide (CentOS v6, Asterisk v13, Freepbx v12) admin 2015.05.05 31174
3 Asterisk Quick Start Guide admin 2015.05.05 29206
2 Installing AsteriskNOW Official Distro admin 2015.05.05 28344
1 Generic Asterisk SIP Configuration Guide admin 2015.05.05 26674