한국어

IPPBX/GW

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

     페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app


Setup Asterisk 13 with FreePBX 13 in CentOS 7

2017.08.24 11:55

admin 조회 수:21770

http://ijasnahamed.blogspot.kr/2017/04/setup-asterisk-13-with-freepbx-13-in.html




Launch CentOS 7 AWS Ec2 Instance

  1. Log in to your aws console
  2. Go to ec2 management page and click Launch Instance on Instance page
  3. In Choose AMI step, go to AWS MarketPlace tab and search CentOS 7 on search field. List of centos 7 ami's will be available.
  4. Select CentOS 7 (x86_64) ami which is free tier eligible.
  5. Select your instance type and click configure instance. Keep default values from Configure Instance to Add Tags steps
  6. In configure security group, create a security group which allow minimum ports open
    1. SSH : port 22
    2. HTTP : port 80
    3. Custom UDP Rule : 10000-20000 (if you are giving RTP ports 10000-20000)
    4. Custom UDP Rule : 5060 (ChanSIP port)
    5. Custom TCP Rule : 5060 (ChanSIP Port)
  7. Click Launch Instance. Select your key file and accept terms to launch instance.

Setup CentOS Server

  1. SSH into newly created CentOS server with username centos and your key file.
  2. Update all existing packages
    1. sudo yum update -y
  3. Now start http service(you can access your server via browser by going to your server ip address)
    1. sudo systemctl enable httpd.service
    2. sudo systemctl start httpd.service
  4. If you are using nano editor, please install it because its not inbuilt installed. If you use vi, skip this step
    1. yum install nano

Install Asterisk

Please execute below as root user.
  1. Please disable selinux to avoid strange behavior during installation
    1. Run ‘sestatus’ to check selinux state
      1. if enabled, please run below commands
        1. sed -i 's/\(^SELINUX=\).*/\SELINUX=disabled/' /etc/sysconfig/selinux
        2. sed -i 's/\(^SELINUX=\).*/\SELINUX=disabled/' /etc/selinux/config
        3. Reboot
      2. If disabled, run step 2
  2. Run below commands
    1. yum -y update
    2. yum -y groupinstall core base "Development Tools"
  3. Now install prerequisite packages
    1. yum -y install lynx mariadb-server mariadb php php-mysql php-mbstring tftp-server
    2. yum -y install httpd ncurses-devel sendmail sendmail-cf sox newt-devel libxml2-devel libtiff-devel
    3. yum -y install audiofile-devel gtk2-devel subversion kernel-devel git php-process crontabs cronie
    4. yum -y install cronie-anacron wget vim php-xml uuid-devel sqlite-devel net-tools gnutls-devel php-pear unixODBC mysql-connector-odbc
    5. yum -y install gcc gcc-c++ make openssl-devel libtermcap-devel perl curl curl-devel
    6. yum -y install libtool-ltdl libtool-ltdl-devel unixODBC-devel
    7. yum -y install bison doxygen mlocate tar nmap bzip2 mod_ssl php-mcrypt flex screen libxml2 libtiff gmime gmime-devel net-snmp-utils net-snmp-devel neon openssl gnutls-utils
    8. pear install Console_Getopt
  4. Check if firewall is running or not by executing systemctl status firewalld
    1. If you see this error ‘if it shows Unit Firewalld.service could not be found.’, install firewall by below commands
      1. yum install firewalld
      2. systemctl start firewalld (start firewall service)
    2. Open firewall port 80 and reload it
      1. firewall-cmd --zone=public --add-port=80/tcp --permanent
      2. firewall-cmd --reload
  5. Enable mariadb (freepbx use mariadb to log cdr reports)
    1. systemctl enable mariadb.service
    2. systemctl start mariadb
  6. Secure mysql installation by running mysql_secure_installation
    1. By default there won't be any password
    2. Don't set root password because freepbx will secure automatically
    3. Choose yes to remaining options. This will remove sample users and database, disable remote root logins and reload new rules so that mysql will take our changes immediately
  7. Reboot the server
  8. After rebooting, create a new user named asterisk
    1. adduser asterisk -M -c "Asterisk User"
  9. Execute below commands to install jansson
    1. cd /usr/src/
    2. git clone https://github.com/akheron/jansson.git
    3. cd /usr/src/jansson
    4. autoreconf -i
    5. ./configure
    6. make
    7. make install
  10. Now install pjproject by running below commands
    1. cd /usr/src
    2. wget http://www.pjsip.org/release/2.4/pjproject-2.4.tar.bz2
    3. tar -xjvf pjproject-2.4.tar.bz2
    4. rm -f pjproject-2.4.tar.bz2
    5. cd pjproject-2.4
    6. CFLAGS='-DPJ_HAS_IPV6=1' ./configure --prefix=/usr --enable-shared --disable-sound --disable-resample --disable-video --disable-opencore-amr --libdir=/usr/lib64
    7. make dep
    8. make
    9. make install
  11. Now install asterisk
    1. cd /usr/src
    2. wget http://downloads.asterisk.org/pub/telephony/asterisk/asterisk-13-current.tar.gz
    3. tar xvfz asterisk-13-current.tar.gz
    4. cd asterisk-13.*
    5. cd ./contrib/scripts
    6. ./install_prereq install
    7. ./install_prereq install-unpackaged
    8. cd /usr/src/asterisk-13.*
    9. ./configure --libdir=/usr/lib64
    10. ./configure --with-pjproject --with-ssl --with-srtp
    11. contrib/scripts/get_mp3_source.sh
    12. make menuselect
      1. Now a screen will appear to select packages to install. Along with selected packages, please select below packages
        1. format_mp3(from add-ons tab)
        2. res_config_mysql, app_mysql, cdr_mysql (from Add-ons tab)
        3. res_odbc, func_odbc
        4. chan_pjsip (from Channel Driver tab)
      2. Press F12 to save this menu
    13. make
    14. make install
    15. make config
    16. ldconfig
    17. Start asterisk by systemctl start asterisk
      1. To know asterisk status, run systemctl status asterisk
    18. chkconfig asterisk off
  12. Now change asterisk directories to asterisk user
    1. chown asterisk. /var/run/asterisk
    2. chown -R asterisk. /etc/asterisk
    3. chown -R asterisk. /var/{lib,log,spool}/asterisk
    4. chown -R asterisk. /usr/lib/asterisk OR chown -R asterisk. /usr/lib64/asterisk
    5. chown -R asterisk. /var/www/
  13. To install freepbx, need to change some values to php and httpd
    1. sed -i 's/\(^upload_max_filesize = \).*/\120M/' /etc/php.ini
    2. sed -i 's/^\(User\|Group\).*/\1 asterisk/' /etc/httpd/conf/httpd.conf
    3. sed -i 's/AllowOverride None/AllowOverride All/' /etc/httpd/conf/httpd.conf
  14. Now restart apache
    1. systemctl restart httpd.service
  15. Make asterisk database(if required)
    1. ASTERISK_DB_PW='pa2sw0rd'
    2. mysqladmin -u root create asterisk
    3. mysqladmin -u root create asteriskcdrdb
    4. mysql -u root -e "GRANT ALL PRIVILEGES ON asterisk.* TO asteriskuser@localhost IDENTIFIED BY '${ASTERISK_DB_PW}';"
    5. mysql -u root -e "GRANT ALL PRIVILEGES ON asteriskcdrdb.* TO asteriskuser@localhost IDENTIFIED BY '${ASTERISK_DB_PW}';"
    6. mysql -u root -e "flush privileges;"
  16. Install freepbx
    1. cd /usr/src
    2. wget http://mirror.freepbx.org/modules/packages/freepbx/freepbx-13.0-latest.tgz
    3. tar xfz freepbx-13.0-latest.tgz
    4. rm -f freepbx-13.0-latest.tgz
    5. cd /usr/src/freepbx
    6. ./start_asterisk start
    7. ./install -n
      1. If this fails, reboot server and re-execute step 16.5 to 16.7
  17. Now install freepbx necessary packages
    1. fwconsole chown
    2. fwconsole ma installall
    3. fwconsole ma upgradeall
    4. fwconsole ma refreshsignatures
    5. fwconsole reload
    6. fwconsole restart
  18. Update firewall rules
    1. firewall-cmd --zone=public --add-port=5060/tcp --permanent
    2. firewall-cmd --zone=public --add-port=5060/udp --permanent
    3. firewall-cmd --reload
  19. Make freepbx to run on server startup
    1. Create  a file freepbx.service in /etc/systemd/system and add below code to it and save
    2. [Unit]
      Description=FreePBX VoIP Server
      After=mariadb.service
      [Service]
      Type=oneshot
      RemainAfterExit=yes
      ExecStart=/usr/sbin/fwconsole start
      ExecStop=/usr/sbin/fwconsole stop
      [Install]
      WantedBy=multi-user.target
    3. systemctl enable freepbx.service
    4. systemctl status freepbx

Configuring FreePBX

  1. If your server external ip is 1.2.3.4, then go to http://1.2.3.4 in your browser. This will be your freepbx web panel
  2. On first time, you will be asked to set administrator username and password.
  3. On setting admin credentials, login to admin panel with your admin credentials



번호 제목 글쓴이 날짜 조회 수
98 Make Your Own IVR with Asterisk admin 2017.08.26 34793
97 Asterisk AGI/AMI to ARI Asterisk&FreePbx - IVR setting admin 2015.05.05 30814
96 라즈베리파이, 아스타리스크(asterisk) PBX(사설교환기) admin 2017.08.23 28500
95 How to Install Asterisk on CentOS 7 easy clean explain 깔금한 쉬운 설명 admin 2017.08.23 27717
94 Fusionpbx v4 Freeswitch v1.6 CentOS v7 Install Guide admin 2017.08.23 26336
93 Asterisk Freepbx Install Guide (CentOS v6, Asterisk v13, Freepbx v12) admin 2015.05.05 25746
92 Securing Your Asterisk VoIP Server with IPTables admin 2015.05.05 25123
91 A2Billing v2 Install Guide admin 2015.05.05 24918
90 A2Billing v2.2 Install Guide CentOS v7 Asterisk v11 v13 seems to work FreePBX v13 admin 2017.08.23 24517
89 Asterisk Quick Start Guide admin 2015.05.05 24343
88 Asterisk fax Asterisk and fax calls Fax over IP admin 2015.05.05 24127
87 Freepbx on Debian (Debian v7, Asterisk v11, Freepbx v2.11) admin 2015.05.05 23711
86 List of 5 Open Source Call Center Software Programs admin 2017.08.31 23607
85 Asterisk 가장쉬운 설치 및 설정 사용 방법 이해 할수있게 배우는 순서 안내 설명 admin 2017.08.16 23190
84 Speech Recognition on Asterisk: Getting Started admin 2017.08.28 22978
83 Installing AsteriskNOW Official Distro admin 2015.05.05 22953
82 Hosting Cheap VPS Hosting that doesn’t feel cheap admin 2017.08.24 22858
81 Asterisk tips ivr menu Interactive voice response menus admin 2015.05.05 22541
80 Text to speech for asterisk using Google Translate admin 2017.08.24 22481
79 VICIdial Scratch Installation CentOS 7 & MariaDB & Asterisk 11 & Latest VICIdial SVN admin 2017.09.02 22468
78 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.09.01 22191
77 asterisk dialplan 설명 admin 2017.08.16 22157
76 Playing text to speech inside read function in asterisk admin 2017.08.28 22141
75 Setup FAX on Asterisk with DIDForSale SIP DIDs admin 2015.05.05 22077
74 MP3 to WAV, WMA to WAV, OGG Convert audio to WAV online admin 2015.05.09 22055
73 Fax For Asterisk download add on 1 port free IVR prompt G.729 admin 2015.05.05 22037
72 Automatic Call Distribution (ACD) Asterisk as Call Center admin 2017.08.31 22030
71 Dialplan handler routines allow customization admin 2017.08.26 22006
70 AGI asterisk gateway interface synopsis admin 2017.08.26 22005
69 Introducing Asterisk Call Distribution ACD asterisk admin 2017.08.31 21972
68 Smart Predictive Auto calling Software System: Automatic Phone Calling admin 2017.08.31 21948
67 Using Asterisk to Detect and Redirect Fax Calls for Communications Server admin 2015.05.05 21939
66 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.08.17 21801
65 How to install and setup Asterisk 14 (PBX) on CentOS 7 admin 2017.08.23 21793
64 Incoming Fax Handling admin 2015.05.05 21786
» Setup Asterisk 13 with FreePBX 13 in CentOS 7 admin 2017.08.24 21770
62 FAX over IP sofware admin 2015.05.05 21715
61 T.38 Fax Gateway Asterisk admin 2015.05.05 21714
60 Installing SNG7 Official Distro admin 2017.08.17 21704
59 Generic Asterisk SIP Configuration Guide admin 2015.05.05 21640
58 Asterisk A simple IVR admin 2015.05.05 21633
57 Installing FreePBX 14 on Debian 8.8 These instructions work fine admin 2017.08.29 21632
56 초보) Asterisk , AsteriskNow 무엇인가? 무슨차이인가? 시작 배우기 쉽게 이해 공부 사용 admin 2017.08.29 21628
55 WombatDialer is highly scalable, multi-server, works with your existing Asterisk PBX. admin 2017.08.31 21604
54 Price ,,Install Commercial Modules on CentOS and RHEL based admin 2017.08.16 21586
53 FaxServer using Asterisk admin 2015.05.05 21582
52 User Control Panel (UCP) asterisk freepbx admin 2017.08.17 21577
51 A simple IVR and Queue example where customer listens to marketing materials .. admin 2015.05.05 21552
50 How to build an outbound Call Center with Newfies-Dialer and Asterisk/FreePBX admin 2017.08.31 21518
49 Asterisk 설치 준비 admin 2015.11.15 21508
48 FreePBX – Custom FAX to email admin 2015.05.05 21488
47 How to Install Asterisk 13 on Ubuntu 16.04 from Source admin 2017.08.23 21485
46 fax licenses Asterisk admin 2015.05.05 21476
45 Brand New Sealed Sangoma FreePBX 60 - 75 Users or 30 Calls admin 2017.08.05 21468
44 Considerations for Using T.38 versus G.711 for Fax over IP file admin 2015.09.24 21458
43 Asterisk Freepbx Install Guide (CentOS v7, Asterisk v13, Freepbx v13) admin 2017.08.23 21431
42 Fax Configuration FREE PBX and asterisk FAX admin 2015.05.05 21420
41 우분투 Mumble VoIP 음성채팅서버 구축 admin 2017.08.18 21411
40 asterisk FreePBX 14, Distro 14 & More! admin 2017.08.16 21383
39 Insert into dialplan Asterisk admin 2017.08.26 21379
38 OPUS and VP9 Bitrates admin 2017.08.17 21376
37 Setup install Asterisk PBX telephony system | VOIP Tutorial admin 2015.05.05 21335
36 Asterisk Downloads AsteriskNOW Software PBX admin 2015.05.05 21320
35 Configuring an Asterisk server admin 2015.05.05 21311
34 TwistedWave Online A browser-based audio editor admin 2017.08.25 21289
33 음성통화 서버 Asterisk + FreePBX / 통화 시연해보기 admin 2017.08.18 21282
32 Capturing SIP and RTP traffic using tcpdump admin 2017.08.17 21226
31 asterisk Chapter 6. Dialplan Basics admin 2017.08.25 21226
30 Top 10 greater worker admin 2017.08.26 21207
29 FOIP: T.38 Fax Relay vs. G.711 Fax Pass-Through (Fax Over IP) admin 2015.09.24 21206
28 HOW TO INSTALL FREEPBX ON CENTOS 7 admin 2017.08.24 21199
27 asterisk IVR 쉽게 설정하기 admin 2017.08.16 21163
26 iptables for asterisk simple example configuration admin 2017.08.31 21161
25 Text to Speech User Guide admin 2017.08.24 21137
24 github A2Billing is commercially supported by Star2Billing admin 2017.08.26 21083
23 AsterSwitchboard CTI Operator Panel for Asterisk admin 2017.08.08 21060
22 Asterisk 13 Debian 8 admin 2015.11.13 21052
21 Asterisk/IVR/PBX/VoIP/Contact center/Voicebroadcast engineer admin 2017.08.25 21038
20 User Control Panel (UCP) 14+ admin 2017.08.23 21037
19 asterisk freepbx TTS Engine Custom - Amazon Polly - 24 languages admin 2017.08.24 21028
18 asterisk CRM SUGARCRM SuiteCRM admin 2017.08.24 21022
17 NAT 와 VoIP 시그널과 RTP 전송 영향 NAT와 방화벽/STUN/TURN/ICE/SBC admin 2017.08.19 21022
16 FreePBX 12 – Getting Started Guide admin 2017.08.29 21010
15 asterisk XactView V3-CRM Widget admin 2017.08.24 20953
14 download Installing+AsteriskNOW admin 2017.08.25 20934
13 IVR actions asterisk admin 2017.08.31 20904
12 thirdlane PBX price admin 2017.08.23 20893
11 SUGAR CRM admin 2017.08.23 20884
10 /sbin/service httpd start stop web start stop admin 2017.08.16 20883
9 Asterisk based auto dialer test and verified by 300+ concurrent. admin 2017.08.31 20823
8 Google letter agi admin 2017.08.26 20813
7 RPi Text to Speech (Speech Synthesis) admin 2017.08.24 20799
6 Configuring Your PBX admin 2017.08.17 20771
5 how-to-freepbx-13-firewall-setup admin 2017.08.14 20756
4 Asterisk dialolan detail explan good easy clean admin 2017.08.26 20722
3 /dev/mapper/ubuntu--vg-root filling up admin 2019.04.08 12325
2 changing SIP drivers to CHAN_PJSIP Please err 에러 admin 2019.06.21 6054
1 php memory and filesize increase upload wav admin 2019.06.25 5045