한국어

IPPBX/GW

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

     페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app


https://linoxide.com/ubuntu-how-to/install-asterisk-13-ubuntu-16-04-source/



Asterisk is the VoIP server with SIP and PJSIP support for Linux based operating systems and it makes great tool for learning SIP and venturing into the world of VoIP. For that purpose, we are going perform installation of Asterisk 13 on Ubuntu 16.04 Server. It will run as asterisk user and we are doing compiling from source to get latest version. During install and first run, for avoidance of problems it is best to run Asterisk as root. Later we will switch it to asterisk user for better security. Ubuntu by default has no usable root account, so lets start by making one.

Install Asterisk from Source

After logging in to your Ubuntu Server as an user, issue following command to switch to root

sudo su

Now you are root, but you need to set password with command

passwd

Note that you still wont be able to ssh into your server as root, you would still need to ssh as user and then type su.

Next step would be to install initial dependencies for asterisk

apt-get install build-essential wget libssl-dev libncurses5-dev libnewt-dev libxml2-dev linux-headers-$(uname -r) libsqlite3-dev uuid-dev git subversion

Now when we are root and dependencies are satisfied, we can move to /usr/src/ dir and download asterisk there

cd /usr/src
wget downloads.asterisk.org/pub/telephony/asterisk/asterisk-13-current.tar.gz

Next we unpack it.

tar zxvf asterisk-13-current.tar.gz

Now we need to cd into the newly unpacked directory, but we don't really know what the directory is called. It starts with asterisk-13 and then there is minor version which is at the time of writing this article is 13.10.0 but might change down the road because wget command we have further up, always downloads latest version of Asterisk 13 from here. So we use * (yes, asterisk) to make this guide future proof:

cd asterisk-13*

Before we actually compile the asterisk code, we need pjproject as asterisk 13 introduces the support for pjsip. So we will compile it first:

git clone git://github.com/asterisk/pjproject pjproject
cd pjproject

./configure --prefix=/usr --enable-shared --disable-sound --disable-resample --disable-video --disable-opencore-amr CFLAGS='-O2 -DNDEBUG'

make dep
make && make install
ldconfig
ldconfig -p |grep pj

And now we commence to configuring and compiling the Asterisk code

cd ..
contrib/scripts/get_mp3_source.sh
contrib/scripts/install_prereq install

This will install mp3 tones and satisfy additional dependencies which might take some time and ask you for your country code. Following command will compile and install asterisk

./configure && make menuselect && make && make install

When that is finished, to avoid making hundred of config files yourself, after install you normally want to run this command, which will make initial config for you:

make samples

And for having the start up script installed and enabled to start asterisk on every boot, we run make config, followed by ldconfig:

make config
ldconfig

Now we can start asterisk for the first time and see if it actually works.

/etc/init.d/asterisk start

and then we can enter asterisk console with command

asterisk -rvvv

If all went well, you should to the console running asterisk as root user. That is not what we want.

So we need to do additional steps to make it run as asterisk user. First we need to stop asterisk. We can now use systemd command systemctl for starting and stopping

systemctl stop asterisk

Then we need to add group and user named asterisk.

groupadd asterisk
useradd -d /var/lib/asterisk -g asterisk asterisk

Asterisk needs to be configured to start as the user we just created, we can edit /etc/default/asterisk by hand but it is more efficient to use following two sed commands

sed -i 's/#AST_USER="asterisk"/AST_USER="asterisk"/g' /etc/default/asterisk
sed -i 's/#AST_GROUP="asterisk"/AST_GROUP="asterisk"/g' /etc/default/asterisk

To run properly, asterisk user needs to be assigned ownership to all essential asterisk directories

chown -R asterisk:asterisk /var/spool/asterisk /var/run/asterisk /etc/asterisk /var/{lib,log,spool}/asterisk /usr/lib/asterisk

The asterisk.conf also needs to be edited to uncoment lines for runuser and rungroup:

sed -i 's/;runuser = asterisk/runuser = asterisk/g' /etc/asterisk/asterisk.conf
sed -i 's/;rungroup = asterisk/rungroup = asterisk/g' /etc/asterisk/asterisk.conf

when this is done, reboot the server so Asterisk brings up automatically by systemd, and then type asterisk -rvvv to enter the asterisk console

asterisk -rvvv
Asterisk 13.10.0, Copyright (C) 1999 - 2014, Digium, Inc. and others.
Created by Mark Spencer <markster@digium.com>
Asterisk comes with ABSOLUTELY NO WARRANTY; type 'core show warranty' for details.
This is free software, with components licensed under the GNU General Public
License version 2 and other licenses; you are welcome to redistribute it under
certain conditions. Type 'core show license' for details.
=========================================================================
Running as user 'asterisk'
Running under group 'asterisk'
Connected to Asterisk 13.10.0 currently running on ubuntu (pid = 2812)
ubuntu*CLI>

If you get similar output, mainly that it is running as user asterisk and group asterisk, it means all went well. Basic setup of Asterisk 13 is done and you need to add your dial-plans and extensions to start calling from your softphones.

We have also recorded a video on how to install asterisk.

Conclusion

Possibilities are huge and asterisk is considerably more beginner friendly than other servers like Kamailio for example, so you wont have too much problem finding suitable configuration for your use case on the internet. You can start by reading asterisk official manuals and easy hello world example from there. Just note that they recommend Zoiper as softphone which is proprietary software and in free version doesn't support the playback and voicemail. I personally use Linphonewhich supports those features and it is fully open source and cross platform, with Linux, Windows, Mac, Android and Windows Phone versions available. You can also investigate Jitsi and Ring (former SFLphone) and see which is most comfortable for you to use. If you are connecting to your server from a Mac, you might consider Telephone, a free app from app store. With that we conclude this tutorial. If you spot an error, feel free to comment on it.

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