Contact Us
Members Sign in
Support
Knowledgebase
Forums
My
Home
Support Center
»
Knowledgebase
»
How do I setup my Asterisk PBX to send outgoing calls to the Gizmo5 network?
Search Knowledgebase
How do I setup my Asterisk PBX to send outgoing calls to the Gizmo5 network?
Solution
This is an advanced topic. If you are new to Gizmo5and
VoIP
, then you should probably just ignore this for now.
As you may be aware, one of the ways that Gizmo5
supports Asterisk
, is by allowing you to send calls from your Asterisk
PBX
, to the
Gizmo5 network
.
There are many ways to do this. In this article, we will explain how to send ALL of your outgoing phone calls to the Gizmo5 network, through a single Gizmo5 account. To do this, you will need:
An installed, and running
Asterisk
server. (Basic installation of Asterisk is beyond the scope of this article)
A Gizmo5 account with
Call Out
credit
New
sip.conf
settings:
[general]
srvlookup=yes ;allows DNS lookups of server names
register =>
YourSip
:
YourPass
@proxy01.sipphone.com
[proxy01.sipphone.com]
type=peer
disallow=all
allow=ulaw
allow=ilbc
dtmfmode=rfc2833
host=proxy01.sipphone.com
fromdomain=proxy01.sipphone.com
insecure=very
qualify=yes
fromuser=
YourSip
authuser=
YourSip
username=
YourSip
secret=
YourPass
canreinvite=no
New
extensions.conf
settings:
[outbound]
exten => _X.,1,SetCallerID(
YourName
<
YourSip
>)
exten => _X.,2,Dial(SIP/${EXTEN:1}@proxy01.sipphone.com,20,r)
exten => _X.,3,Hangup
In these settings, you will need to substitute the following values:
YourName
- Put your name. Example: "John Doe"
YourSip
- Put the
SIP Number
associtated with your Gizmo Project account
YourPass
- Put the password associated with your Gizmo5 account. NOTE - this IS case-sensitive. When you log into the Gizmo5 software or webpage, it is NOT case sensitive. Please take the time to actually
recover
your password (so you can see exactly how it is stored in our system).
Back
Article Options
Print Article
PDF Version
Email Article
Add to Favorites
Support Center
»
Knowledgebase
»
How do I setup my Asterisk PBX to send outgoing calls to the Gizmo5 network?