한국어

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 5018
97 changing SIP drivers to CHAN_PJSIP Please err 에러 admin 2019.06.21 6026
96 /dev/mapper/ubuntu--vg-root filling up admin 2019.04.08 12302
95 VICIdial Scratch Installation CentOS 7 & MariaDB & Asterisk 11 & Latest VICIdial SVN admin 2017.09.02 22437
94 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.09.01 22165
93 List of 5 Open Source Call Center Software Programs admin 2017.08.31 23582
92 Smart Predictive Auto calling Software System: Automatic Phone Calling admin 2017.08.31 21924
91 WombatDialer is highly scalable, multi-server, works with your existing Asterisk PBX. admin 2017.08.31 21578
90 Asterisk based auto dialer test and verified by 300+ concurrent. admin 2017.08.31 20801
89 Automatic Call Distribution (ACD) Asterisk as Call Center admin 2017.08.31 22011
88 Introducing Asterisk Call Distribution ACD asterisk admin 2017.08.31 21951
87 How to build an outbound Call Center with Newfies-Dialer and Asterisk/FreePBX admin 2017.08.31 21492
86 IVR actions asterisk admin 2017.08.31 20873
85 iptables for asterisk simple example configuration admin 2017.08.31 21130
84 초보) Asterisk , AsteriskNow 무엇인가? 무슨차이인가? 시작 배우기 쉽게 이해 공부 사용 admin 2017.08.29 21605
83 Installing FreePBX 14 on Debian 8.8 These instructions work fine admin 2017.08.29 21607
82 FreePBX 12 – Getting Started Guide admin 2017.08.29 20986
81 Playing text to speech inside read function in asterisk admin 2017.08.28 22110
80 Speech Recognition on Asterisk: Getting Started admin 2017.08.28 22954
79 github A2Billing is commercially supported by Star2Billing admin 2017.08.26 21055
78 Insert into dialplan Asterisk admin 2017.08.26 21342
77 Google letter agi admin 2017.08.26 20790
76 Top 10 greater worker admin 2017.08.26 21174
75 Dialplan handler routines allow customization admin 2017.08.26 21974
74 AGI asterisk gateway interface synopsis admin 2017.08.26 21986
73 Make Your Own IVR with Asterisk admin 2017.08.26 34768
72 Asterisk dialolan detail explan good easy clean admin 2017.08.26 20695
71 download Installing+AsteriskNOW admin 2017.08.25 20906
70 TwistedWave Online A browser-based audio editor admin 2017.08.25 21263
69 Asterisk/IVR/PBX/VoIP/Contact center/Voicebroadcast engineer admin 2017.08.25 21011
68 asterisk Chapter 6. Dialplan Basics admin 2017.08.25 21198
67 RPi Text to Speech (Speech Synthesis) admin 2017.08.24 20775
66 asterisk freepbx TTS Engine Custom - Amazon Polly - 24 languages admin 2017.08.24 21005
65 asterisk CRM SUGARCRM SuiteCRM admin 2017.08.24 20999
64 Hosting Cheap VPS Hosting that doesn’t feel cheap admin 2017.08.24 22828
63 HOW TO INSTALL FREEPBX ON CENTOS 7 admin 2017.08.24 21179
62 Setup Asterisk 13 with FreePBX 13 in CentOS 7 admin 2017.08.24 21741
61 asterisk XactView V3-CRM Widget admin 2017.08.24 20928
60 Text to Speech User Guide admin 2017.08.24 21111
59 Text to speech for asterisk using Google Translate admin 2017.08.24 22453
58 User Control Panel (UCP) 14+ admin 2017.08.23 21011
57 라즈베리파이, 아스타리스크(asterisk) PBX(사설교환기) admin 2017.08.23 28473
56 How to Install Asterisk on CentOS 7 easy clean explain 깔금한 쉬운 설명 admin 2017.08.23 27688
55 Fusionpbx v4 Freeswitch v1.6 CentOS v7 Install Guide admin 2017.08.23 26302
54 Asterisk Freepbx Install Guide (CentOS v7, Asterisk v13, Freepbx v13) admin 2017.08.23 21404
53 A2Billing v2.2 Install Guide CentOS v7 Asterisk v11 v13 seems to work FreePBX v13 admin 2017.08.23 24491
52 How to install and setup Asterisk 14 (PBX) on CentOS 7 admin 2017.08.23 21753
» How to Install Asterisk 13 on Ubuntu 16.04 from Source admin 2017.08.23 21462
50 thirdlane PBX price admin 2017.08.23 20863
49 SUGAR CRM admin 2017.08.23 20849
48 NAT 와 VoIP 시그널과 RTP 전송 영향 NAT와 방화벽/STUN/TURN/ICE/SBC admin 2017.08.19 20997
47 음성통화 서버 Asterisk + FreePBX / 통화 시연해보기 admin 2017.08.18 21255
46 우분투 Mumble VoIP 음성채팅서버 구축 admin 2017.08.18 21384
45 User Control Panel (UCP) asterisk freepbx admin 2017.08.17 21551
44 Configuring Your PBX admin 2017.08.17 20740
43 Installing SNG7 Official Distro admin 2017.08.17 21675
42 OPUS and VP9 Bitrates admin 2017.08.17 21348
41 Capturing SIP and RTP traffic using tcpdump admin 2017.08.17 21197
40 Asterisk Answering Machine Detection (AMD) Configuration admin 2017.08.17 21776
39 Price ,,Install Commercial Modules on CentOS and RHEL based admin 2017.08.16 21561
38 asterisk IVR 쉽게 설정하기 admin 2017.08.16 21132
37 Asterisk 가장쉬운 설치 및 설정 사용 방법 이해 할수있게 배우는 순서 안내 설명 admin 2017.08.16 23155
36 /sbin/service httpd start stop web start stop admin 2017.08.16 20863
35 asterisk FreePBX 14, Distro 14 & More! admin 2017.08.16 21357
34 asterisk dialplan 설명 admin 2017.08.16 22124
33 how-to-freepbx-13-firewall-setup admin 2017.08.14 20727
32 AsterSwitchboard CTI Operator Panel for Asterisk admin 2017.08.08 21030
31 Brand New Sealed Sangoma FreePBX 60 - 75 Users or 30 Calls admin 2017.08.05 21443
30 Asterisk 설치 준비 admin 2015.11.15 21483
29 Asterisk 13 Debian 8 admin 2015.11.13 21024
28 FOIP: T.38 Fax Relay vs. G.711 Fax Pass-Through (Fax Over IP) admin 2015.09.24 21177
27 Considerations for Using T.38 versus G.711 for Fax over IP file admin 2015.09.24 21431
26 MP3 to WAV, WMA to WAV, OGG Convert audio to WAV online admin 2015.05.09 22027
25 FAX over IP sofware admin 2015.05.05 21688
24 Fax Configuration FREE PBX and asterisk FAX admin 2015.05.05 21395
23 Asterisk AGI/AMI to ARI Asterisk&FreePbx - IVR setting admin 2015.05.05 30786
22 A simple IVR and Queue example where customer listens to marketing materials .. admin 2015.05.05 21527
21 Asterisk A simple IVR admin 2015.05.05 21608
20 Asterisk tips ivr menu Interactive voice response menus admin 2015.05.05 22513
19 Setup install Asterisk PBX telephony system | VOIP Tutorial admin 2015.05.05 21307
18 Asterisk Downloads AsteriskNOW Software PBX admin 2015.05.05 21294
17 Fax For Asterisk download add on 1 port free IVR prompt G.729 admin 2015.05.05 22014
16 T.38 Fax Gateway Asterisk admin 2015.05.05 21685
15 Setup FAX on Asterisk with DIDForSale SIP DIDs admin 2015.05.05 22052
14 FaxServer using Asterisk admin 2015.05.05 21555
13 fax licenses Asterisk admin 2015.05.05 21446
12 Configuring an Asterisk server admin 2015.05.05 21279
11 FreePBX – Custom FAX to email admin 2015.05.05 21460
10 Incoming Fax Handling admin 2015.05.05 21763
9 Using Asterisk to Detect and Redirect Fax Calls for Communications Server admin 2015.05.05 21912
8 Asterisk fax Asterisk and fax calls Fax over IP admin 2015.05.05 24106
7 Securing Your Asterisk VoIP Server with IPTables admin 2015.05.05 25097
6 A2Billing v2 Install Guide admin 2015.05.05 24887
5 Freepbx on Debian (Debian v7, Asterisk v11, Freepbx v2.11) admin 2015.05.05 23685
4 Asterisk Freepbx Install Guide (CentOS v6, Asterisk v13, Freepbx v12) admin 2015.05.05 25719
3 Asterisk Quick Start Guide admin 2015.05.05 24320
2 Installing AsteriskNOW Official Distro admin 2015.05.05 22924
1 Generic Asterisk SIP Configuration Guide admin 2015.05.05 21614