한국어

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 Make Your Own IVR with Asterisk admin 2017.08.26 34870
97 Asterisk AGI/AMI to ARI Asterisk&FreePbx - IVR setting admin 2015.05.05 30926
96 라즈베리파이, 아스타리스크(asterisk) PBX(사설교환기) admin 2017.08.23 28609
95 How to Install Asterisk on CentOS 7 easy clean explain 깔금한 쉬운 설명 admin 2017.08.23 27801
94 Fusionpbx v4 Freeswitch v1.6 CentOS v7 Install Guide admin 2017.08.23 26451
93 Asterisk Freepbx Install Guide (CentOS v6, Asterisk v13, Freepbx v12) admin 2015.05.05 25831
92 Securing Your Asterisk VoIP Server with IPTables admin 2015.05.05 25209
91 A2Billing v2 Install Guide admin 2015.05.05 24994
90 A2Billing v2.2 Install Guide CentOS v7 Asterisk v11 v13 seems to work FreePBX v13 admin 2017.08.23 24697
89 Asterisk Quick Start Guide admin 2015.05.05 24422
88 Asterisk fax Asterisk and fax calls Fax over IP admin 2015.05.05 24210
87 Freepbx on Debian (Debian v7, Asterisk v11, Freepbx v2.11) admin 2015.05.05 23793
86 List of 5 Open Source Call Center Software Programs admin 2017.08.31 23690
85 Asterisk 가장쉬운 설치 및 설정 사용 방법 이해 할수있게 배우는 순서 안내 설명 admin 2017.08.16 23291
84 Speech Recognition on Asterisk: Getting Started admin 2017.08.28 23060
83 Installing AsteriskNOW Official Distro admin 2015.05.05 23025
82 Hosting Cheap VPS Hosting that doesn’t feel cheap admin 2017.08.24 22940
81 Asterisk tips ivr menu Interactive voice response menus admin 2015.05.05 22624
80 Text to speech for asterisk using Google Translate admin 2017.08.24 22552
79 VICIdial Scratch Installation CentOS 7 & MariaDB & Asterisk 11 & Latest VICIdial SVN admin 2017.09.02 22544
78 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.09.01 22268
77 asterisk dialplan 설명 admin 2017.08.16 22248
76 Playing text to speech inside read function in asterisk admin 2017.08.28 22219
75 Setup FAX on Asterisk with DIDForSale SIP DIDs admin 2015.05.05 22155
74 MP3 to WAV, WMA to WAV, OGG Convert audio to WAV online admin 2015.05.09 22137
73 Fax For Asterisk download add on 1 port free IVR prompt G.729 admin 2015.05.05 22120
72 Automatic Call Distribution (ACD) Asterisk as Call Center admin 2017.08.31 22109
71 AGI asterisk gateway interface synopsis admin 2017.08.26 22090
70 Dialplan handler routines allow customization admin 2017.08.26 22078
69 Introducing Asterisk Call Distribution ACD asterisk admin 2017.08.31 22059
68 Smart Predictive Auto calling Software System: Automatic Phone Calling admin 2017.08.31 22031
67 Using Asterisk to Detect and Redirect Fax Calls for Communications Server admin 2015.05.05 22025
66 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.08.17 21880
65 How to install and setup Asterisk 14 (PBX) on CentOS 7 admin 2017.08.23 21873
64 Incoming Fax Handling admin 2015.05.05 21871
63 Setup Asterisk 13 with FreePBX 13 in CentOS 7 admin 2017.08.24 21846
62 FAX over IP sofware admin 2015.05.05 21794
61 T.38 Fax Gateway Asterisk admin 2015.05.05 21793
60 Installing SNG7 Official Distro admin 2017.08.17 21784
59 Generic Asterisk SIP Configuration Guide admin 2015.05.05 21720
58 Installing FreePBX 14 on Debian 8.8 These instructions work fine admin 2017.08.29 21711
57 Asterisk A simple IVR admin 2015.05.05 21711
56 초보) Asterisk , AsteriskNow 무엇인가? 무슨차이인가? 시작 배우기 쉽게 이해 공부 사용 admin 2017.08.29 21705
55 WombatDialer is highly scalable, multi-server, works with your existing Asterisk PBX. admin 2017.08.31 21685
54 Price ,,Install Commercial Modules on CentOS and RHEL based admin 2017.08.16 21664
53 FaxServer using Asterisk admin 2015.05.05 21663
52 User Control Panel (UCP) asterisk freepbx admin 2017.08.17 21660
51 A simple IVR and Queue example where customer listens to marketing materials .. admin 2015.05.05 21639
50 How to build an outbound Call Center with Newfies-Dialer and Asterisk/FreePBX admin 2017.08.31 21604
49 Asterisk 설치 준비 admin 2015.11.15 21590
48 FreePBX – Custom FAX to email admin 2015.05.05 21573
» How to Install Asterisk 13 on Ubuntu 16.04 from Source admin 2017.08.23 21570
46 fax licenses Asterisk admin 2015.05.05 21558
45 Brand New Sealed Sangoma FreePBX 60 - 75 Users or 30 Calls admin 2017.08.05 21547
44 Considerations for Using T.38 versus G.711 for Fax over IP file admin 2015.09.24 21543
43 Asterisk Freepbx Install Guide (CentOS v7, Asterisk v13, Freepbx v13) admin 2017.08.23 21507
42 우분투 Mumble VoIP 음성채팅서버 구축 admin 2017.08.18 21499
41 Fax Configuration FREE PBX and asterisk FAX admin 2015.05.05 21497
40 asterisk FreePBX 14, Distro 14 & More! admin 2017.08.16 21461
39 OPUS and VP9 Bitrates admin 2017.08.17 21455
38 Insert into dialplan Asterisk admin 2017.08.26 21453
37 Setup install Asterisk PBX telephony system | VOIP Tutorial admin 2015.05.05 21417
36 Asterisk Downloads AsteriskNOW Software PBX admin 2015.05.05 21407
35 Configuring an Asterisk server admin 2015.05.05 21383
34 TwistedWave Online A browser-based audio editor admin 2017.08.25 21372
33 음성통화 서버 Asterisk + FreePBX / 통화 시연해보기 admin 2017.08.18 21370
32 Capturing SIP and RTP traffic using tcpdump admin 2017.08.17 21314
31 asterisk Chapter 6. Dialplan Basics admin 2017.08.25 21310
30 FOIP: T.38 Fax Relay vs. G.711 Fax Pass-Through (Fax Over IP) admin 2015.09.24 21301
29 Top 10 greater worker admin 2017.08.26 21282
28 HOW TO INSTALL FREEPBX ON CENTOS 7 admin 2017.08.24 21280
27 asterisk IVR 쉽게 설정하기 admin 2017.08.16 21244
26 iptables for asterisk simple example configuration admin 2017.08.31 21239
25 Text to Speech User Guide admin 2017.08.24 21214
24 github A2Billing is commercially supported by Star2Billing admin 2017.08.26 21165
23 AsterSwitchboard CTI Operator Panel for Asterisk admin 2017.08.08 21139
22 Asterisk 13 Debian 8 admin 2015.11.13 21135
21 Asterisk/IVR/PBX/VoIP/Contact center/Voicebroadcast engineer admin 2017.08.25 21119
20 User Control Panel (UCP) 14+ admin 2017.08.23 21115
19 asterisk freepbx TTS Engine Custom - Amazon Polly - 24 languages admin 2017.08.24 21108
18 NAT 와 VoIP 시그널과 RTP 전송 영향 NAT와 방화벽/STUN/TURN/ICE/SBC admin 2017.08.19 21097
17 asterisk CRM SUGARCRM SuiteCRM admin 2017.08.24 21095
16 FreePBX 12 – Getting Started Guide admin 2017.08.29 21088
15 asterisk XactView V3-CRM Widget admin 2017.08.24 21039
14 download Installing+AsteriskNOW admin 2017.08.25 21018
13 IVR actions asterisk admin 2017.08.31 20981
12 thirdlane PBX price admin 2017.08.23 20972
11 /sbin/service httpd start stop web start stop admin 2017.08.16 20971
10 SUGAR CRM admin 2017.08.23 20968
9 Asterisk based auto dialer test and verified by 300+ concurrent. admin 2017.08.31 20904
8 Google letter agi admin 2017.08.26 20893
7 RPi Text to Speech (Speech Synthesis) admin 2017.08.24 20879
6 Configuring Your PBX admin 2017.08.17 20851
5 how-to-freepbx-13-firewall-setup admin 2017.08.14 20837
4 Asterisk dialolan detail explan good easy clean admin 2017.08.26 20795
3 /dev/mapper/ubuntu--vg-root filling up admin 2019.04.08 12400
2 changing SIP drivers to CHAN_PJSIP Please err 에러 admin 2019.06.21 6122
1 php memory and filesize increase upload wav admin 2019.06.25 5119