한국어

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 5203
97 changing SIP drivers to CHAN_PJSIP Please err 에러 admin 2019.06.21 6200
96 /dev/mapper/ubuntu--vg-root filling up admin 2019.04.08 12484
95 Asterisk dialolan detail explan good easy clean admin 2017.08.26 20867
94 how-to-freepbx-13-firewall-setup admin 2017.08.14 20912
93 Configuring Your PBX admin 2017.08.17 20928
92 RPi Text to Speech (Speech Synthesis) admin 2017.08.24 20954
91 Google letter agi admin 2017.08.26 20964
90 Asterisk based auto dialer test and verified by 300+ concurrent. admin 2017.08.31 20976
89 /sbin/service httpd start stop web start stop admin 2017.08.16 21041
88 thirdlane PBX price admin 2017.08.23 21042
87 SUGAR CRM admin 2017.08.23 21044
86 IVR actions asterisk admin 2017.08.31 21050
85 download Installing+AsteriskNOW admin 2017.08.25 21089
84 asterisk XactView V3-CRM Widget admin 2017.08.24 21107
83 FreePBX 12 – Getting Started Guide admin 2017.08.29 21156
82 NAT 와 VoIP 시그널과 RTP 전송 영향 NAT와 방화벽/STUN/TURN/ICE/SBC admin 2017.08.19 21166
81 asterisk CRM SUGARCRM SuiteCRM admin 2017.08.24 21170
80 User Control Panel (UCP) 14+ admin 2017.08.23 21180
79 asterisk freepbx TTS Engine Custom - Amazon Polly - 24 languages admin 2017.08.24 21184
78 Asterisk/IVR/PBX/VoIP/Contact center/Voicebroadcast engineer admin 2017.08.25 21189
77 Asterisk 13 Debian 8 admin 2015.11.13 21215
76 AsterSwitchboard CTI Operator Panel for Asterisk admin 2017.08.08 21215
75 github A2Billing is commercially supported by Star2Billing admin 2017.08.26 21245
74 Text to Speech User Guide admin 2017.08.24 21278
73 iptables for asterisk simple example configuration admin 2017.08.31 21318
72 asterisk IVR 쉽게 설정하기 admin 2017.08.16 21321
71 HOW TO INSTALL FREEPBX ON CENTOS 7 admin 2017.08.24 21356
70 Top 10 greater worker admin 2017.08.26 21361
69 FOIP: T.38 Fax Relay vs. G.711 Fax Pass-Through (Fax Over IP) admin 2015.09.24 21378
68 asterisk Chapter 6. Dialplan Basics admin 2017.08.25 21384
67 Capturing SIP and RTP traffic using tcpdump admin 2017.08.17 21388
66 음성통화 서버 Asterisk + FreePBX / 통화 시연해보기 admin 2017.08.18 21441
65 TwistedWave Online A browser-based audio editor admin 2017.08.25 21451
64 Configuring an Asterisk server admin 2015.05.05 21468
63 Asterisk Downloads AsteriskNOW Software PBX admin 2015.05.05 21475
62 Setup install Asterisk PBX telephony system | VOIP Tutorial admin 2015.05.05 21490
61 OPUS and VP9 Bitrates admin 2017.08.17 21520
60 Insert into dialplan Asterisk admin 2017.08.26 21521
59 asterisk FreePBX 14, Distro 14 & More! admin 2017.08.16 21537
58 Fax Configuration FREE PBX and asterisk FAX admin 2015.05.05 21565
57 우분투 Mumble VoIP 음성채팅서버 구축 admin 2017.08.18 21575
56 Asterisk Freepbx Install Guide (CentOS v7, Asterisk v13, Freepbx v13) admin 2017.08.23 21584
55 Considerations for Using T.38 versus G.711 for Fax over IP file admin 2015.09.24 21615
54 Brand New Sealed Sangoma FreePBX 60 - 75 Users or 30 Calls admin 2017.08.05 21622
53 fax licenses Asterisk admin 2015.05.05 21631
» How to Install Asterisk 13 on Ubuntu 16.04 from Source admin 2017.08.23 21644
51 FreePBX – Custom FAX to email admin 2015.05.05 21646
50 Asterisk 설치 준비 admin 2015.11.15 21661
49 How to build an outbound Call Center with Newfies-Dialer and Asterisk/FreePBX admin 2017.08.31 21680
48 A simple IVR and Queue example where customer listens to marketing materials .. admin 2015.05.05 21705
47 User Control Panel (UCP) asterisk freepbx admin 2017.08.17 21734
46 FaxServer using Asterisk admin 2015.05.05 21737
45 Price ,,Install Commercial Modules on CentOS and RHEL based admin 2017.08.16 21751
44 WombatDialer is highly scalable, multi-server, works with your existing Asterisk PBX. admin 2017.08.31 21758
43 Asterisk A simple IVR admin 2015.05.05 21775
42 초보) Asterisk , AsteriskNow 무엇인가? 무슨차이인가? 시작 배우기 쉽게 이해 공부 사용 admin 2017.08.29 21780
41 Installing FreePBX 14 on Debian 8.8 These instructions work fine admin 2017.08.29 21785
40 Generic Asterisk SIP Configuration Guide admin 2015.05.05 21790
39 FAX over IP sofware admin 2015.05.05 21862
38 T.38 Fax Gateway Asterisk admin 2015.05.05 21862
37 Installing SNG7 Official Distro admin 2017.08.17 21871
36 Setup Asterisk 13 with FreePBX 13 in CentOS 7 admin 2017.08.24 21910
35 Incoming Fax Handling admin 2015.05.05 21939
34 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.08.17 21948
33 How to install and setup Asterisk 14 (PBX) on CentOS 7 admin 2017.08.23 21949
32 Using Asterisk to Detect and Redirect Fax Calls for Communications Server admin 2015.05.05 22088
31 Smart Predictive Auto calling Software System: Automatic Phone Calling admin 2017.08.31 22100
30 Introducing Asterisk Call Distribution ACD asterisk admin 2017.08.31 22138
29 Dialplan handler routines allow customization admin 2017.08.26 22151
28 AGI asterisk gateway interface synopsis admin 2017.08.26 22160
27 Fax For Asterisk download add on 1 port free IVR prompt G.729 admin 2015.05.05 22185
26 Automatic Call Distribution (ACD) Asterisk as Call Center admin 2017.08.31 22192
25 MP3 to WAV, WMA to WAV, OGG Convert audio to WAV online admin 2015.05.09 22209
24 Setup FAX on Asterisk with DIDForSale SIP DIDs admin 2015.05.05 22230
23 Playing text to speech inside read function in asterisk admin 2017.08.28 22300
22 asterisk dialplan 설명 admin 2017.08.16 22325
21 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.09.01 22335
20 VICIdial Scratch Installation CentOS 7 & MariaDB & Asterisk 11 & Latest VICIdial SVN admin 2017.09.02 22611
19 Text to speech for asterisk using Google Translate admin 2017.08.24 22624
18 Asterisk tips ivr menu Interactive voice response menus admin 2015.05.05 22700
17 Hosting Cheap VPS Hosting that doesn’t feel cheap admin 2017.08.24 23013
16 Installing AsteriskNOW Official Distro admin 2015.05.05 23096
15 Speech Recognition on Asterisk: Getting Started admin 2017.08.28 23168
14 Asterisk 가장쉬운 설치 및 설정 사용 방법 이해 할수있게 배우는 순서 안내 설명 admin 2017.08.16 23375
13 List of 5 Open Source Call Center Software Programs admin 2017.08.31 23765
12 Freepbx on Debian (Debian v7, Asterisk v11, Freepbx v2.11) admin 2015.05.05 23868
11 Asterisk fax Asterisk and fax calls Fax over IP admin 2015.05.05 24281
10 Asterisk Quick Start Guide admin 2015.05.05 24499
9 A2Billing v2.2 Install Guide CentOS v7 Asterisk v11 v13 seems to work FreePBX v13 admin 2017.08.23 24770
8 A2Billing v2 Install Guide admin 2015.05.05 25063
7 Securing Your Asterisk VoIP Server with IPTables admin 2015.05.05 25266
6 Asterisk Freepbx Install Guide (CentOS v6, Asterisk v13, Freepbx v12) admin 2015.05.05 25911
5 Fusionpbx v4 Freeswitch v1.6 CentOS v7 Install Guide admin 2017.08.23 26524
4 How to Install Asterisk on CentOS 7 easy clean explain 깔금한 쉬운 설명 admin 2017.08.23 27869
3 라즈베리파이, 아스타리스크(asterisk) PBX(사설교환기) admin 2017.08.23 28683
2 Asterisk AGI/AMI to ARI Asterisk&FreePbx - IVR setting admin 2015.05.05 31000
1 Make Your Own IVR with Asterisk admin 2017.08.26 34939