Mediatrix 3000 with Asterisk June 22, 2011

Size: px
Start display at page:

Download "Mediatrix 3000 with Asterisk June 22, 2011"

Transcription

1 Mediatrix 3000 with Asterisk June 22, 2011 Proprietary 2011 Media5 Corporation

2 Table of Contents Introduction... 3 Network Topology... 3 Equipment Detail... 3 Configuration of the Fax Extension... 4 Configuration of the PBX Trunk... 7 Configuration of the PSTN Lines General Configuration of the Mediatrix 3732 with Asterisk Page 2 of 16

3 Introduction This document outlines the configuration steps required to connect a Mediatrix 3000 series gateway with a 6FXO/2FXS card to an Asterisk open-source telephone system. It assumes that you have an Asterisk server properly installed. If you need technical assistance to configure your Asterisk server, the Media5 technical team can provide appropriate support to help you realizing your VoIP projects. Network Topology In the scenario used throughout this document, the Mediatrix 3732 (1 PRI, 6 FXO/2FXS) is used to: interface a PBX with an IP-PBX; provide PSTN access via analog lines; provide IP connectivity to analog phones and fax machines. E1/T1 PSTN Analog lines PBX Ext. : 2XX IP-PBX (Asterisk) IP Mediatrix 3732 (1 PRI, 6 FXO/2FXS) Ext. : 103 IP Phone Ext. : 101 Mediatrix 4102S Ext. : 102 Analog Phone The Asterisk IP-PBX provides: Call routing, Dial Plan o Including routes to local PSTN gateways Telephony services (voic , call forwarding, etc,) to IP users SIP Endpoints management Auto-Attendant Equipment Detail The configuration presented in this document applies to all FXO and/or PRI products running the DGW v2.0 firmware. Since we will concentrate on the configuration of the Mediatrix 3732, it is assumed that the Mediatrix 4102S and the IP phone are correctly configured with the IP-PBX and are able to make calls. Different Mediatrix products can be used depending on the needs. This configuration note was written and validated using the following platform and versions: Mediatrix 3732 DGW v Asterisk version Page 3 of 16

4 Configuration of the Fax Extension Configuration of Asterisk We will begin by configuring an extension for the fax plugged in the FXS port number 1 of the Mediatrix In the sip.conf configuration file, create a new extension by adding the following: [103] ; This is the extension number (username) type=friend ; This is part of the method used by the Asterisk server to match ; incoming INVITES to this user. host=dynamic ; This means the extension will register to the Asterisk server nat=no ; The Mediatrix unit is not behind a NAT qualify=no ; No keep alive is used canreinvite=no ; No Re-Invite is sent to this extension dtmfmode=info ; The DTMF is sent/received in SIP INFO messages context=internalextensions ; The context where the call from this extension is sent ; It is the same context for the IP phone and the Mediatrix 4102S secret=num103 ; The SIP authentication password t38pt_udptl=yes ; This allows T.38 fax to be sent to this extension. ; This setting is set to no for the IP phone and Mediatrix 4102S 2. In the extensions.conf make sure the context exists: [InternalExtensions] exten => _1XX,1,Dial(SIP/${EXTEN},40,) ; This context currently allows the extensions to call each other. 3. Reload the Asterisk settings by connecting to the Asterisk CLI (asterisk r) and typing the reload command. If you want to use the T.38 protocol to transfer faxes, you can follow the procedure of the Configuration Notes 0259 Mediatrix 41xx With Asterisk web. If you use clear channel, skip this configuration. Configuration of the Mediatrix Log in the Mediatrix 3732 configuration web page. The default username is public with no password. 2. In the Network -> Interfaces section, set the required IP information. In our example scenario, we will use the static IP address Page 4 of 16

5 3. In the SIP -> Servers section, set the IP address of your registrar and proxy. They are often the same as in our example scenario: If your setup requires an outbound proxy or uses different port, you will also need to configure these in this web page. If your SIP server uses the default port (5060), we recommend putting :0 after the IP address to indicate to use the default port. 4. After clicking Submit, you will be presented with a message requesting to restart a service. We can go ahead and restart it now. We can go ahead and restart it now. Follow the link, or go to the System -> Services section and click the Restart Required Services button. Page 5 of 16

6 5. In the SIP -> Registrations section, configure the User Name, Friendly Name and Gateway for the FXS port used by the fax and click the Submit & Refresh Registration button. Here is what the configuration would look like in our scenario : 6. In the SIP -> Authentication section, configure the authentication for the User Name configured for the FXS port by clicking on the Edit button on an empty authentication line. In our example, we will configure an authentication for the endpoint (FXS/1) to make sure this user name and password combination does not conflict with other user names we will configure. We will also disable the realm validation. We could also enter the realm asterisk, but since we will only use one realm in our scenario, it is simpler to disable the validation. When the configuration is done, click the Submit & Refresh Registration button. 7. In the SIP -> Registrations section, the registration status should now be Registered. 8. After the registration is successful, the IP phone and Mediatrix 4102 should be able to call the fax extension. Page 6 of 16

7 Configuration of the PBX Trunk Configuration of Asterisk We will configure a user for the SIP authentication of the calls coming from the PBX (E1/T1 port of the Mediatrix 3732). 1. In the sip.conf configuration file, create a new extension by adding the following: [PBXTrunk] type= peer host= port=5061 nat=no qualify=no canreinvite=no dtmfmode=info context= FromPBX secret= TrunkPassword t38pt_udptl=yes 2. In the extensions.conf, add a context for calls coming from the PBX: [FromPBX] exten => _1XX,1,Dial(SIP/${EXTEN},40,) ; The SIP username used for calls coming from the PBX ; This is part of the method used by the Asterisk server to match ; incoming INVITES to this user ; This means the extension will not register to the Asterisk server. This ; is the IP address of the Mediatrix 3732 ; Port used for requests to and from the Mediatrix unit. ; The Mediatrix unit is not behind a NAT ; No keep alive is used ; No Re-Invite is sent to this extension ; The DTMF is sent/received in SIP INFO messages ; This is the context where the call from this extension is sent ; It is the same context for the IP phone and the Mediatrix 4102S ; The SIP authentication password ; This allows T.38 fax to be sent by this trunk ; This setting is set to no for the IP phone and Mediatrix 4102S ; This allows the PBX users to reach extensions 100 to 199. The ; Asterisk server will make the extension ring for 40 seconds. 3. Still in extensions.conf, modify the context of the extensions to allow them to send calls to the PBX: [InternalExtensions] exten => _1XX,1,Dial(SIP/${EXTEN},40,) exten => _2XX,1,Dial(SIP/${EXTEN}@PBXTrunk,40,) ; This allows the IP phone and Mediatrix 4102S to ; reach the PBX extensions 200 to Reload the Asterisk settings by connecting to the Asterisk CLI (asterisk r) and typing the reload command. If you want to use the T.38 protocol to transfer faxes, you can follow the procedure of the Configuration Notes 0259 Mediatrix 41xx With Asterisk web. If you use clear channel, simply skip this configuration. Page 7 of 16

8 Configuration of the Mediatrix The ISDN configuration of the Mediatrix 3732 is outside the scope of this document. Make sure your PRI interface has both Physical and Signalling up before continuing. For more information on the ISDN configuration, refer to the documentation available for your Mediatrix product. 2. Create a new SIP gateway in the Mediatrix This gateway will be used to differentiate the calls coming from the PBX and the calls from the PSTN (analog lines). The tactic is to use different SIP ports so that Asterisk sees the PBX calls and the PSTN calls coming from two separate users (sip.conf) and can separate those users into different contexts (extensions.conf). This way, we can control the dial plan (context) of each type of calls. In the SIP -> Gateways section, type a new gateway name and click on the + sign to add a new gateway. Page 8 of 16

9 3. Enter the port number configured in the Asterisk user for the new gateway and click Submit. 4. Restart the required services 5. In the SIP -> Authentication section, configure the Authentication for the User Name of the user created in the Asterisk configuration file by clicking on the Edit button on an empty authentication line. In our example, we will configure an authentication for the Gateway to make sure this user name and password combination is only used for calls coming and going to the new Gateway we have configured. 6. When the configuration is done, click the Submit button. 7. Go to the Call Router -> Status section. You will see that the Mediatrix unit has already created some routes for the FXS port we configured earlier. 8. We will now create routing rules for the E1T1 port connected to the PBX. Go to the Call Router -> Route Config section. 9. Add a new Route by clicking the + sign in the Route section. Page 9 of 16

10 10. In the new window, open the suggestion box next to the Sources and select the E1T1 port. Here is what it should look like : 11. Open the suggestion box next to the Destination and select the gateway we have created earlier : 12. Click the Submit button to add the route. This route will send calls that come from the PBX to the Asterisk server. We now need a route to send the calls from the Asterisk to the PBX. 13. Add a new Route by clicking on the + sign in the Route section. 14. In the new window, open the suggestion box next to the Sources and select the PBX gateway. Page 10 of 16

11 15. Open the suggestion box next to the Destination and select the E1T1 port. 16. Click the Apply button at the bottom of the page to activate the new routes. The yellow Config modified indicator should return to normal. After the routes are applied, the IP phone, Mediatrix 4102 and fax extension should be able to dial the 2xx extensions available on the PBX and vice-versa. Configuration of the PSTN Lines Configuration of Asterisk We will configure a user for the SIP authentication of the calls coming from the PSTN (FXO ports of the Mediatrix 3732). 1. In the sip.conf configuration file, create a new extension by adding the following: [PSTNTrunk] ; SIP username used for calls coming from the PSTN type= peer host= port=5062 nat=no qualify=no canreinvite=no dtmfmode=info context= FromPSTN secret= TrunkPassword t38pt_udptl=yes 2. In the extensions.conf, add a context for calls coming from the PSTN: [FromPSTN] exten => 900,1,Answer() exten => 900,2,Background(Company-Prompt) exten => 900,3,Hangup() exten => _1XX,1,Dial(SIP/${EXTEN},40,) exten => _2XX,1,Dial(SIP/${EXTEN}@PBXTrunk,40,) ; This is part of the method used by the Asterisk server to match ; incoming INVITES to this user. ; This means the extension will not register to the Asterisk server. This ; is the IP address of the Mediatrix 3732 ; Port used for requests to and from the Mediatrix unit. ; The Mediatrix unit is not behind a NAT ; No keep alive is used ; No Re-Invite is sent to this extension ; The DTMF is sent/receive in SIP INFO messages ; Context where the call from this extension is sent ; It is the same context for the IP phone and the Mediatrix 4102S ; SIP authentication password ; This allows T.38 fax to be sent by this trunk. ; This setting is set to no for the IP phone and Mediatrix 4102S ;This plays a prompt (IVR) to the calling party and ; allows it to dial extensions ; This allows the IP phone and Mediatrix 4102S to ; reach the PBX extensions 200 to In the extensions.conf, modify the context of the PBX to allow the PBX users to send calls to the PSTN: [FromPBX] exten => _1XX,1,Dial(SIP/${EXTEN},40,) exten => _9X.,1,Dial(SIP/${EXTEN:1}@PSTNTrunk,40,) ; This allows the PBX users to dial on the PSTN Page 11 of 16

12 ; and removes the 9 before dialling the number. 4. In the extensions.conf, modify the context of the extensions to allow them to send calls to the PBX: [InternalExtensions] exten => _1XX,1,Dial(SIP/${EXTEN},40,) exten => _2XX,1,Dial(SIP/${EXTEN}@PBXTrunk,40,) exten => _9X.,1,Dial(SIP/${EXTEN:1}@PSTNTrunk,40,) ; This allows the IP phone and Mediatrix 4102S to ; dial on the PSTN. 5. You can reload the Asterisk settings by connecting to the Asterisk CLI (asterisk r) and typing the reload command. Configuration of the Mediatrix In the SIP -> Gateways section, type a new gateway name and click the + sign to add a new gateway named PSTN-Gateway. 2. Enter the port number configured in the Asterisk user for the new gateway and click Submit. 3. Restart the required services. 4. In the SIP -> Authentication section, configure the Authentication for the User Name of the user we created in the Asterisk configuration file by clicking on the Edit button on an empty authentication line. In our example, we will configure an authentication for the Gateway to make sure this user name and password combination is only used for calls coming from and going to the new Gateway we have configured. 5. When the configuration is done, click the Submit button. 6. Go to the Call Router -> Config section. We will now create routing rules for the FXO ports. 7. Add a new Route by clicking the + sign in the Route section. Page 12 of 16

13 8. In the new window, open the suggestion box next to the Sources and select the FXO ports one after the other until all the ports appear in the Value field. If only some ports are used, add only the ports that have a line connected to them. Here is what it should look like: 9. Open the suggestion box next to the Destination and select the gateway we have created earlier: 10. Click the Submit button to add the route. This route will send calls that come from the PSTN to the Asterisk PBX. 11. To add a new route that will send calls from Asterisk to the PSTN, you must begin by adding a new Hunt. Click the + sign in the Hunt section. 12. Give a Name to the Hunt group. We will use PSTN in our example. Page 13 of 16

14 13. Open the suggestion box next to the Destinations and select the FXO ports one after the other until all the ports appear in the Value field. Here is what it should look like : 14. Click the Submit button when done. This hunt allows us to take the first free line plugged in the Mediatrix unit when a call comes from the Asterisk server to the PSTN. 15. Add a new Route by clicking the + sign in the Route section. 16. In the new window, open the suggestion box next to the Sources and select the PSTN gateway. 17. Open the suggestion box next to the Destination and select the new hunt we created. 18. Click the Submit button. 19. Click the Apply button at the bottom of the page to activate the new routes. The yellow Config modified indicator should return to normal. Page 14 of 16

15 20. If you have followed all the steps, the Call Router configuration should look as follows: 21. After the routes are applied, the PBX users and the IP users should now be able to send calls to the PSTN. 22. By default, the Mediatrix FXO ports answer any incoming call and play a dial tone enabling the remote calling party to dial an extension. To have the Mediatrix automatically call an IVR on the Asterisk server instead, we must configure the Automatic Call feature on the FXO ports. 23. In the Telephony -> Services section, select the first FXO endpoint (Slot3/FXO1). 24. In the Automatic Call section, set the Endpoint Specific to Yes. 25. Enable the Automatic Call Activation. Page 15 of 16

16 26. Set the Automatic Call Target to the number of the IVR configured in the Asterisk Server (900). Configuration Notes Repeat the three last steps for each endpoint you need configured. General Configuration of the Mediatrix 3732 with Asterisk Configuration of the DTMF transport In the Telephony -> CODECS section, set the Transport Method in the DTMF Transport section to the value that corresponds to the value of the dtmfmode variable configured in the user (sip.conf) of the in Asterisk server. 1. Here is what the value of the Transport Method should be for each corresponding value of the dtmfmode variable: rfc2833 = Out-of-Band using RTP info = Out-of-Band using Signalling Protocol o When setting the DTMF Transport to Out-of-Band using Signalling Protocol, the interopdtmftransportmethod variable has to be modified to the infodtmfrelay value. See your product documentation for more details on how to set this variable. inband = In-band Configuration of the Voice Activity Detection On some Asterisk versions, it is preferable to disable the Voice Activity Detection. These versions of Asterisk will only send RTP packets when there are incoming RTP packets. Disabling the Voice Activity detection will prevent dead air in some scenarios. In the Telephony -> CODECS section, set the Generic Voice Activity Detection to Disable. Page 16 of 16

Configuration Notes 290

Configuration Notes 290 Configuring Mediatrix 41xx FXS Gateway with the Asterisk IP PBX System June 22, 2011 Proprietary 2011 Media5 Corporation Table of Contents Introduction... 3 About Mediatrix 41xx Series FXS Gateways...

More information

Micronet VoIP Solution with Asterisk

Micronet VoIP Solution with Asterisk Application Note Micronet VoIP Solution with Asterisk 1. Introduction This is the document for the applications between Micronet units and Asterisk IP PBX. It will show you some basic configurations in

More information

Mediatrix 4404 Step by Step Configuration Guide June 22, 2011

Mediatrix 4404 Step by Step Configuration Guide June 22, 2011 Mediatrix 4404 Step by Step Configuration Guide June 22, 2011 Proprietary 2011 Media5 Corporation Table of Contents First Steps... 3 Identifying your MAC Address... 3 Identifying your Dynamic IP Address...

More information

Applications between Asotel VoIP and Asterisk

Applications between Asotel VoIP and Asterisk Applications between Asotel VoIP and Asterisk This document is describing the configuring manner of registering and communicating with Asterisk only. Please visit the official WEB of Asterisk http://www.asterisk,

More information

Figure 38-1. The scenario

Figure 38-1. The scenario 38. Asterisk Application We offer the application shows that it is convenient and cost saving to implement the free IP-PBX using Asterisk and Vigor 3300V when users want to use the Soft Phone or IP Phone

More information

Configuration Notes 283

Configuration Notes 283 Mediatrix 4400 Digital Gateway VoIP Trunking with a Legacy PBX June 21, 2011 Proprietary 2011 Media5 Corporation Table of Contents Table of Contents... 2 Introduction... 3 Mediatrix 4400 Digital Gateway

More information

Peer-to-Peer SIP Mode with FXS and FXO Gateways

Peer-to-Peer SIP Mode with FXS and FXO Gateways Peer-to-Peer SIP Mode with FXS and FXO Gateways New Rock s SIP based VoIP gateways with FXS and FXO ports support peer-to-peer mode which has many applications in deploying enterprise multi-site telephone

More information

Basic configuration of the GXW410x with Asterisk

Basic configuration of the GXW410x with Asterisk Basic configuration of the GXW410x with Asterisk Please note that due to the customizable nature of both the GXW410x and Asterisk and the vast deployment possibilities, these instructions should be taken

More information

Unicorn60x0 IP ANALOG GATEWAY ASTERISK CONFIGURATION

Unicorn60x0 IP ANALOG GATEWAY ASTERISK CONFIGURATION Unicorn60x0 IP ANALOG GATEWAY ASTERISK CONFIGURATION BASIC CONFIGURATION OF THE Unicorn60x0 WITH ASTERISK Due to the various deployment possibilities of the Unicorn60x0 and Asterisk, this configuration

More information

Setup the Asterisk server with the Internet Gate

Setup the Asterisk server with the Internet Gate 1 (9) Setup the Asterisk server with the Internet Gate This guide presents ways to setup the Asterisk server together with the Intertex Internet Gate. Below two different setups are described. Also, please

More information

Configuration Notes 0217

Configuration Notes 0217 PBX Remote Line Extension using Mediatrix 1104 and 1204 Introduction... 2 Application Scenario... 2 Running the Unit Manager Network (UMN) Software... 3 Configuring the Mediatrix 1104... 6 Configuring

More information

SIP Trunking using Optimum Business SIP Trunk Adaptor and the Cisco Call Manager Express Version 8.5

SIP Trunking using Optimum Business SIP Trunk Adaptor and the Cisco Call Manager Express Version 8.5 CISCO SIP Trunking using Optimum Business SIP Trunk Adaptor and the Cisco Call Manager Express Version 8.5 Goal The purpose of this configuration guide is to describe the steps needed to configure the

More information

AT&T SIP Trunk Compatibility Testing for Asterisk

AT&T SIP Trunk Compatibility Testing for Asterisk AT&T SIP Trunk Compatibility Testing for Asterisk Mark A. Vince, P.E., AT&T Astricon 2008 September 25, 2008 Phoenix, AZ Agenda Why we tested What we tested Test configuration Asterisk Business Edition

More information

Avaya IP Office 8.1 Configuration Guide

Avaya IP Office 8.1 Configuration Guide Avaya IP Office 8.1 Configuration Guide Performed By tekvizion PVS, Inc. Contact: 214-242-5900 www.tekvizion.com Revision: 1.1 Date: 10/14/2013 Copyright 2013 by tekvizion PVS, Inc. All Rights Reserved.

More information

Internet Telephony PBX System. IPX-300 Series. Quick Installation Guide

Internet Telephony PBX System. IPX-300 Series. Quick Installation Guide Internet Telephony PBX System IPX-300 Series Quick Installation Guide Overview PLANET IPX-300/IPX-300W IP PBX telephony systems ( IP PBX in the following term) are designed and optimized for the small

More information

Configuring the Cisco SPA8800 IP Telephony Gateway in an Asterisk Environment

Configuring the Cisco SPA8800 IP Telephony Gateway in an Asterisk Environment Application Note May 2009 Configuring the Cisco SPA8800 IP Telephony Gateway in an Asterisk Environment 2009 Cisco Systems, Inc. All rights reserved. Page 1 of 20 Contents Introduction 3 Audience 3 Scope

More information

IP-PBX Quick Start Guide

IP-PBX Quick Start Guide IP-PBX Quick Start Guide Introduce... 3 Configure and set up the IP-PBX... 4 How to change the IP address... 7 Set up extensions and make internal calls... 8 How to make calls via the FXO port... 10 How

More information

IP PBX. SD Card Slot. FXO Ports. PBX WAN port. FXO Ports LED, RED means online

IP PBX. SD Card Slot. FXO Ports. PBX WAN port. FXO Ports LED, RED means online 1 IP PBX SD Card Slot FXO Ports PBX LAN port PBX WAN port FXO Ports LED, RED means online 2 Connect the IP PBX to Your LAN Internet PSTN Router Ethernet Switch FXO Ports 3 Access the PBX s WEB GUI The

More information

Mediatrix Gateway 440x Series Quick Configuration Guide

Mediatrix Gateway 440x Series Quick Configuration Guide Mediatrix Gateway 440x Series Quick Configuration Guide All BRI Mediatrix gateways are pre-configured on ETH1 port with DHCP and ETH2 port with static IP 192.168.0.10. All PRI Mediatrix gateways are pre-configured

More information

Configuring a Mediatrix 500 / 600 Enterprise SIP Trunk SBC June 28, 2011

Configuring a Mediatrix 500 / 600 Enterprise SIP Trunk SBC June 28, 2011 Configuring a Mediatrix 500 / 600 Enterprise SIP Trunk SBC June 28, 2011 Proprietary 2011 Media5 Corporation Table of Contents Introduction... 3 Solution Overview... 3 Network Topology... 4 Network Configuration...

More information

SIP Trunking using Optimum Business Sip Trunk Adaptor and the Zultys MX250 IP PBX

SIP Trunking using Optimum Business Sip Trunk Adaptor and the Zultys MX250 IP PBX SIP Trunking using Optimum Business Sip Trunk Adaptor and the Zultys MX250 IP PBX Table of Contents Goal 3 Prerequisites 3 Zultys MX250 Configuration 4 Network Settings 4 Phone Registration and Assignment

More information

Configuration Guide for connecting the Eircom Advantage 4800/1500/1200 PBXs to the Eircom SIP Voice platform.

Configuration Guide for connecting the Eircom Advantage 4800/1500/1200 PBXs to the Eircom SIP Voice platform. Configuration Guide for connecting the Eircom Advantage 4800/1500/1200 PBXs to the Eircom SIP Voice platform. 1 Contents Introduction.... 3 Installing the Applications Module... 4 Ordering a Licence for

More information

AT&T IP Flex Reach/ IP Toll Free Configuration Guide IC 3.0 with Interaction SIP Proxy

AT&T IP Flex Reach/ IP Toll Free Configuration Guide IC 3.0 with Interaction SIP Proxy INTERACTIVE INTELLIGENCE AT&T IP Flex Reach/ IP Toll Free Configuration Guide IC 3.0 with Interaction SIP Proxy Version 1.7 9/2/2009 TABLE OF CONTENTS 1 AT&T... 5 1.1 Introduction... 5 1.2 Product Descriptions...

More information

Setup Guide: on the MyNetFone Service. Revision History

Setup Guide: on the MyNetFone Service. Revision History Setup Guide: on the MyNetFone Service Revision History Version Author Revision Description Release Date 1.0 Sampson So Initial Draft 02/01/2008 2.0 Sampson So Update 27/09/2011 1 Table of Contents Introduction...

More information

www.xo.com XO SIP Service Customer Configuration Guide for Interactive Intelligence Customer Interaction Center (CIC) with XO SIP

www.xo.com XO SIP Service Customer Configuration Guide for Interactive Intelligence Customer Interaction Center (CIC) with XO SIP www.xo.com XO SIP Service Customer Configuration Guide for Interactive Intelligence Customer Interaction Center (CIC) with XO SIP Table of Contents XO SIP Service 1 1 Introduction... 3 2 Executive Summary...

More information

SIP Trunk Configuration for Broadvox

SIP Trunk Configuration for Broadvox Document version: 1.0 Modification date: December 09, 2009 Prerequisites The Broadvox customer service provides the following communication parameters: Parameter Example Explanation BTN & Username: 4801234560

More information

AudioCodes Mediant 1000 Configuration Guide

AudioCodes Mediant 1000 Configuration Guide AudioCodes Mediant 1000 Configuration Guide 2010 FaxBack, Inc. All Rights Reserved. NET SatisFAXtion and other FaxBack products, brands and trademarks are property of FaxBack, Inc. Other products, brands

More information

Asterisk & ENUM. Extending the Open Source PBX. Michael Haberler, IPA Otmar Lendl, nic.at

Asterisk & ENUM. Extending the Open Source PBX. Michael Haberler, IPA Otmar Lendl, nic.at Asterisk & ENUM Extending the Open Source PBX Michael Haberler, IPA Otmar Lendl, nic.at Why a ENUM-enable a PBX? your PBX doubles as an IP/PSTN gateway for your existing numbers becomes a dual contact

More information

SIP Trunking using Optimum Business SIP Trunk Adaptor and the Allworx 6x IP PBX 7.1.6.1

SIP Trunking using Optimum Business SIP Trunk Adaptor and the Allworx 6x IP PBX 7.1.6.1 ALLWORX SIP Trunking using Optimum Business SIP Trunk Adaptor and the Allworx 6x IP PBX 7.1.6.1 Goal The purpose of this configuration guide is to describe the steps needed to configure the Allworx 6x

More information

Allo PRI Gateway and Elastix Server

Allo PRI Gateway and Elastix Server Allo PRI Gateway and Elastix Server Setup Guide http://www.elastix.org 1.0 Setup Diagram Figure 1-1 is a setup diagram for a single Allo PRI Gateway configuration. We re going to configure a SIP Trunk

More information

Internet Telephony PBX System

Internet Telephony PBX System Internet Telephony PBX System GSM Gateway PSTN call busy forward to GSM Configuration Copyright PLANET Technology Corporation. All rights reserved. Case 32: PSTN call busy forward to GSM Configuration

More information

PSTN Survivability - Sentinel in the LAN with PBX Registering to Sentinel. Dgw v2.0.30.549 Revision 01 April 30, 2015. www.media5corp.

PSTN Survivability - Sentinel in the LAN with PBX Registering to Sentinel. Dgw v2.0.30.549 Revision 01 April 30, 2015. www.media5corp. PSTN Survivability - Sentinel in the LAN with PBX Registering to Sentinel Dgw v2.0.30.549 Revision 01 April 30, 2015 www.media5corp.com PSTN Survivability - Sentinel in the LAN with PBX Registering to

More information

Digium Switchvox AA65 PBX Configuration

Digium Switchvox AA65 PBX Configuration Digium Switchvox SIP Trunking using Optimum Business SIP Trunk Adaptor and the Digium Switchvox AA65 IP-PBX v23695 Goal The purpose of this configuration guide is to describe the steps needed to configure

More information

3CX PBX v12.5. SIP Trunking using the Optimum Business Sip Trunk Adaptor and the 3CX PBX v12.5

3CX PBX v12.5. SIP Trunking using the Optimum Business Sip Trunk Adaptor and the 3CX PBX v12.5 SIP Trunking using the Optimum Business Sip Trunk Adaptor and the 3CX PBX v12.5 Table of Contents 1. Overview 3 2. Prerequisites 3 3. PBX Configuration 3 4. Creating Extensions 4 5. VoIP Provider Setup

More information

Grandstream Networks, Inc. UCM6510 Basic Configuration Guide

Grandstream Networks, Inc. UCM6510 Basic Configuration Guide Grandstream Networks, Inc. UCM6510 Basic Configuration Guide Index Table of Contents OVERVIEW... 4 SETUP ENVIRONMENT... 5 QUICK INSTALLATION... 6 CONNECT UCM6510... 6 ACCESS UCM6510 WEB INTERFACE... 6

More information

1.1.3 Versions Verified SIP Carrier status as of 18 Sep 2014 : validated on CIC 4.0 SU6.

1.1.3 Versions Verified SIP Carrier status as of 18 Sep 2014 : validated on CIC 4.0 SU6. 1 SIP Carriers 1.1 Telstra 1.1.1 Warnings Check the SIP 3 rd Party SIP Carrier Matrix for certification status, and supported features. More info about the SIP 3 rd Party SIP Carrier Matrix can be found

More information

How to Configure the Cisco UC500 for use with Integra Telecom SIP Solutions

How to Configure the Cisco UC500 for use with Integra Telecom SIP Solutions How to Configure the Cisco UC500 for use with Integra Telecom SIP Solutions Overview: This document provides a reference for configuration of the Cisco UC500 IP PBX to connect to Integra Telecom SIP Trunks.

More information

SIP Trunking using the EdgeMarc Network Services Gateway and the Mitel 3300 ICP IP-PBX

SIP Trunking using the EdgeMarc Network Services Gateway and the Mitel 3300 ICP IP-PBX June 26th, 2014 SIP Trunking using the EdgeMarc Network Services Gateway and the Mitel 3300 ICP IP-PBX Page 1 of 30 Table of Contents 1 Overview... 3 2 Prerequisites... 3 3 Network Topology... 4 4 Description

More information

SIP Trunk Configuration for nexvortex

SIP Trunk Configuration for nexvortex SIP Trunk Configuration for nexvortex Document version: 1.0 Modification date: June 25, 2013 Prerequisites The nexvortex customer service provides the following communication parameters: Parameter Example

More information

Application Notes for Avaya IP Office 7.0 Integration with Skype Connect R2.0 Issue 1.0

Application Notes for Avaya IP Office 7.0 Integration with Skype Connect R2.0 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Avaya IP Office 7.0 Integration with Skype Connect R2.0 Issue 1.0 Abstract These Application Notes describe the steps to configure an Avaya

More information

Using Polycom KIRK Wireless Server 300 or 6000 with Asterisk

Using Polycom KIRK Wireless Server 300 or 6000 with Asterisk Using Polycom KIRK Wireless Server 300 or 6000 with Asterisk Technical Bulletin Version 10 l August 2010 l 14205500 Introduction This document provides introductory information on how to use a Polycom

More information

intelligence at the edge of the network www.critical-links.com EdgeBOX V 4.5 VoIP How To

intelligence at the edge of the network www.critical-links.com EdgeBOX V 4.5 VoIP How To intelligence at the edge of the network www.critical-links.com EdgeBOX V 4.5 VoIP HowTo Page 1 Page 2 Introduction to VoIP on the edgebox VoIP (Voice over Internet Protocol) is handled by an open source

More information

Cisco Unified Communications 500 Series

Cisco Unified Communications 500 Series Cisco Unified Communications 500 Series IP PBX Provisioning Guide Version 1.0 Last Update: 02/14/2011 Page 1 DISCLAIMER The attached document is provided as a basic guideline for setup and configuration

More information

Application Notes for Configuring Avaya IP Office 9.0 with HIPCOM SIP Trunk Issue 1.0

Application Notes for Configuring Avaya IP Office 9.0 with HIPCOM SIP Trunk Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Avaya IP Office 9.0 with HIPCOM SIP Trunk Issue 1.0 Abstract These Application Notes describe the procedures for configuring

More information

Setup Reference guide

Setup Reference guide Setup Reference guide for KX-NS1000 to E1 PRI/R2 Gateway interconnection Panasonic PBX (KX-NS1000 series), Media5 Digital Gateway 3631(Mediatrix 3000 series) Revision 0.2(PSNJ) October.14, 2012 Attention:

More information

Connecting with Vonage

Connecting with Vonage Connecting with Vonage Vonage (http://www.vonage.com/) offers telephone service using the VoIP (Voice over Internet Protocol) standard SIP (Session Initiation Protocol). The service allow users making

More information

Configuration guide for Switchvox and Cbeyond.

Configuration guide for Switchvox and Cbeyond. Configuration guide for Switchvox and Cbeyond. This document will guide a Switchvox administrator through configuring the system to utilize Cbeyond s BeyondVoice with SIPconnect service. After you have

More information

Application Notes for BT Wholesale/HIPCOM SIP Trunk Service and Avaya IP Office 8.0 Issue 1.0

Application Notes for BT Wholesale/HIPCOM SIP Trunk Service and Avaya IP Office 8.0 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for BT Wholesale/HIPCOM SIP Trunk Service and Avaya IP Office 8.0 Issue 1.0 Abstract These Application Notes describe the procedures for configuring

More information

Enabling NAT and Routing in DGW v2.0 June 6, 2012

Enabling NAT and Routing in DGW v2.0 June 6, 2012 Enabling NAT and Routing in DGW v2.0 June 6, 2012 Proprietary 2012 Media5 Corporation Table of Contents Introduction... 3 Starting Services... 4 Distinguishing your WAN and LAN interfaces... 5 Configuring

More information

Direct IP Calls. Quick IP Call Mode

Direct IP Calls. Quick IP Call Mode Unicorn3112 Tips Direct IP Calls...1 Quick IP Call Mode...1 PSTN Pass Through...2 VoIP-to-PSTN Calls...2 PSTN-to-VoIP Calls...3 Route Calls to PSTN...4 Forward Calls to PSTN...4 Forward Calls to VoIP...4

More information

SIP Trunking Test Results for CudaTel Communication Server

SIP Trunking Test Results for CudaTel Communication Server SIP Trunking Test Results for CudaTel Communication Server Table of Contents 1. Executive Summary... 2 4. Software and Hardware Equipment Requirements for Testing... 3 5. Test Configurations... 4 5.1.

More information

DSX. DSX SIP Setup. April 22, 2011 Issue 1.04. NEC Corporation of America 4 Forest Parkway, Shelton, CT 06484

DSX. DSX SIP Setup. April 22, 2011 Issue 1.04. NEC Corporation of America 4 Forest Parkway, Shelton, CT 06484 DSX DSX SIP Setup April 22, 2011 Issue 1.04 NEC Corporation of America 4 Forest Parkway, Shelton, CT 06484 Copyright 2011 NEC Corporation of America 6535 N. State Highway 161 Irving, TX 75039-2402 Communications

More information

8 Port Modular IP PBX Solution 8 Port IP PBX + SIP Gateway System IPG-80XG

8 Port Modular IP PBX Solution 8 Port IP PBX + SIP Gateway System IPG-80XG 8 Port IP Modular PBX + SIP PBX Gateway Solution System The IPG-80XG SIP IPPBX is a feature rich IP PBX offering PBX services and VoIP Telephony Management in one device. It can support a telephone network

More information

Configuring Positron s V114 as a VoIP gateway for a 3cx system

Configuring Positron s V114 as a VoIP gateway for a 3cx system Assumptions: Configuring Positron s V114 as a VoIP gateway for a 3cx system The IP address of the V114 is 192.168.1.2 The IP address of the 3CX PBX System is 192.168.1.110 3CX already has some IP phones

More information

NetVanta 7100 Exercise Service Provider SIP Trunk

NetVanta 7100 Exercise Service Provider SIP Trunk NetVanta 7100 Exercise Service Provider SIP Trunk PSTN NetVanta 7100 FXS 0/1 x2001 SIP Eth 0/0 x2004 SIP Server 172.23.102.87 Hosted by x2003 www.voxitas.com In this exercise, you will create a SIP trunk

More information

CVOICE Exam Topics Cisco Voice over IP Exam #642-432 7/14/2005

CVOICE Exam Topics Cisco Voice over IP Exam #642-432 7/14/2005 CVOICE Exam Topics Cisco Voice over IP Exam #642-432 7/14/2005 From the Cisco CVOICE 642-432 Exam Topics Voice over IP Technologies Describe the similarities and differences between PSTN and VoIP including

More information

Analog Telephone Adapter Network settings via Keypad commands:

Analog Telephone Adapter Network settings via Keypad commands: Analog Telephone Adapter Network settings via Keypad commands: The ATA series phone adapters (VIP-156/VIP-156PE/VIP-157/VIP-157S) support telephone keypad configurations, please connect analog telephone

More information

EZLoop IP-PBX Enterprise SIP Server

EZLoop IP-PBX Enterprise SIP Server EZLoop IP-PBX Enterprise SIP Server Copyright 2007 Teletronics International, Inc. 2 Choke Cherry Road, Rockville, MD 20850 sales@teletronics.com www.teletronics.com CH1. Overview...4 1.1 Specifications...4

More information

How to Configure the Toshiba Strata CIX for use with Integra Telecom SIP Solutions

How to Configure the Toshiba Strata CIX for use with Integra Telecom SIP Solutions How to Configure the Toshiba Strata CIX for use with Integra Telecom SIP Solutions Overview: This document provides a reference for configuration of the Toshiba Strata CIX IP PBX to connect to Integra

More information

GW400 VoIP Gateway. User s Guide

GW400 VoIP Gateway. User s Guide GW400 VoIP Gateway User s Guide P/N: 956YD30001 Copyright 2006. All Rights Reserved. Document Version: 1.0 All trademarks and trade names are the properties of their respective owners. i Table of Contents

More information

How to Build a Simple Virtual Office PBX System Using TekSIP and TekIVR

How to Build a Simple Virtual Office PBX System Using TekSIP and TekIVR How to Build a Simple Virtual Office PBX System Using TekSIP and TekIVR This document explains how to build a simple virtual office PBX system using TekSIP and TekIVR. In this example following components

More information

SIP Internet Telephony Gateway

SIP Internet Telephony Gateway SIP Internet Telephony Gateway VIP - 2 / 4 / 8 / 16 / 24 Series Peer-to-Peer Quick Configuration for VIP-450 Copyright PLANET Technology Corporation. All rights reserved. Scenarios explain: Peer-to-Peer

More information

THINKTEL COMMUNICATIONS TALKSWITCH VS TALKSWITCH VS THINKTEL SIP TRUNK & DID

THINKTEL COMMUNICATIONS TALKSWITCH VS TALKSWITCH VS THINKTEL SIP TRUNK & DID THINKTEL COMMUNICATIONS TALKSWITCH VS TALKSWITCH VS THINKTEL SIP TRUNK & DID TA B L E O F C O N T E N T S 1.1 INTRODUCTION... 3 1.2 STARTING THE MANAGEMENT SOFTWARE... 4 1.3 IP CONFIGURATION... 5 1.4 ROUTER

More information

Configuring the Synapse SB67070 SIP Gateway from AT&T for Clearfly SIP Trunking. January 2013

Configuring the Synapse SB67070 SIP Gateway from AT&T for Clearfly SIP Trunking. January 2013 Configuring the Synapse SB67070 SIP Gateway from AT&T for Clearfly SIP Trunking January 2013 1 Introduction This guide was created to assist Synapse partners with configuring the Synapse SB67070 SIP Gateway

More information

SIP Trunking Quick Reference Document

SIP Trunking Quick Reference Document SIP Trunking Quick Reference Document Publication Information SAMSUNG TELECOMMUNICATIONS AMERICA reserves the right without prior notice to revise information in this publication for any reason. SAMSUNG

More information

Dynamix IP PBX-100. User's Manual

Dynamix IP PBX-100. User's Manual Dynamix IP PBX-100 User's Manual Version: ippbxum. 100 Dynamix IP PBX-100 3 СН1. Overview 5 1.1 Specifications 5 1.2 Hardware Overview 7 1.2.1 Front Panel and LED Indication...7 1.2.2 Back Panel...8 CH2.

More information

ZyXEL IP PBX Support Note. ZyXEL IP PBX (X2002) VoIP. Support Notes

ZyXEL IP PBX Support Note. ZyXEL IP PBX (X2002) VoIP. Support Notes ZyXEL IP PBX (X2002) VoIP Support Notes Version 1.00 October 2008 1 Contents Overview ZyXEL IP PBX Support Note 1. How to manage and maintain your IPPBX?...3 1.1 Firmware Upgrade..3 1.2 Backing up your

More information

Application Notes for Configuring SIP Trunking between Metaswitch MetaSphere CFS and Avaya IP Office Issue 1.0

Application Notes for Configuring SIP Trunking between Metaswitch MetaSphere CFS and Avaya IP Office Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring SIP Trunking between Metaswitch MetaSphere CFS and Avaya IP Office Issue 1.0 Abstract These Application Notes describe the steps

More information

6.40A AudioCodes Mediant 800 MSBG

6.40A AudioCodes Mediant 800 MSBG AudioCodes Mediant 800 MSBG Page 1 of 66 6.40A AudioCodes Mediant 800 MSBG 1. Important Notes Check the SIP 3 rd Party Validation Website for current validation status. The SIP 3 rd party Validation Website

More information

Application Notes for Configuring Cablevision Optimum Voice SIP Trunking with Avaya IP Office - Issue 1.1

Application Notes for Configuring Cablevision Optimum Voice SIP Trunking with Avaya IP Office - Issue 1.1 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Cablevision Optimum Voice SIP Trunking with Avaya IP Office - Issue 1.1 Abstract These Application Notes describe the procedures

More information

Configuring SIP Trunking and Networking for the NetVanta 7000 Series

Configuring SIP Trunking and Networking for the NetVanta 7000 Series 61200796L1-29.4E July 2011 Configuration Guide Configuring for the NetVanta 7000 Series This configuration guide describes the configuration and implementation of Session Initiation Protocol (SIP) trunking

More information

TEL 500 WRITE UP WEEK 8 FREE PBX SIP LAB SUBMITTED TO: PROF. RONNY BULL BY: ANUSHA ALIGAPALLY

TEL 500 WRITE UP WEEK 8 FREE PBX SIP LAB SUBMITTED TO: PROF. RONNY BULL BY: ANUSHA ALIGAPALLY TEL 500 WRITE UP WEEK 8 FREE PBX SIP LAB SUBMITTED TO: PROF. RONNY BULL BY: ANUSHA ALIGAPALLY DATE: 11/05/2014 ABSTRACT: Private Branch Exchange has multiple phones connected to it which are in the same

More information

1 SIP Carriers. 1.1.1 Warnings. 1.1.2 Vendor Contact Vendor Web Site : http://www.wind.it. 1.1.3 Versions Verified SIP Carrier status as of 9/11/2011

1 SIP Carriers. 1.1.1 Warnings. 1.1.2 Vendor Contact Vendor Web Site : http://www.wind.it. 1.1.3 Versions Verified SIP Carrier status as of 9/11/2011 1 SIP Carriers 1.1.1 Warnings Check the SIP 3 rd Party SIP Carrier Matrix for certification status, and supported features. More info about the SIP 3 rd Party SIP Carrier Matrix can be found in the SIP

More information

MAXCS Release 7.0. Application Note: Remote MultiVoIP Gateway Configuration. Intended audience: AltiGen Authorized Partners

MAXCS Release 7.0. Application Note: Remote MultiVoIP Gateway Configuration. Intended audience: AltiGen Authorized Partners MAXCS Release 7.0 Application Note: Remote MultiVoIP Gateway Configuration Intended audience: AltiGen Authorized Partners March 4, 2014 Contents Introduction... 3 Requirements... 3 MultiVoIP Gateway Configuration...

More information

PBX Setup Basic setup procedures

PBX Setup Basic setup procedures Basic setup procedures 1) Configure the SpoTel PBX & Voip phones to a router/switch 2) Setup Extensions on SpoTel PBX -> Testing: Call between Extension phones 3) Setup Trunks on Spotel PBX 4) Setup Outbound

More information

A Guide to Connecting to FreePBX

A Guide to Connecting to FreePBX A Guide to Connecting to FreePBX FreePBX is a basic web Graphical User Interface that manages Asterisk PBX. It includes many features available in other PBX systems such as voice mail, conference calling,

More information

SIPSTATION User Guide. Schmooze Com Inc.

SIPSTATION User Guide. Schmooze Com Inc. Schmooze Com Inc. Chapters Overview Logging In & Adding a Key Account Settings Route & Trunk Configuration DID Configuration Recap Overview The SIPSTATION module, when combined with a SIPSTATION SIP Trunk

More information

SIP Trunk Configuration Guide. using

SIP Trunk Configuration Guide. using SIP Trunk Configuration Guide using www.cbeyond.net 1-877-441-9783 The information contained in this document is specific to setting up SIP connections between Vertical SBX IP 320 and Cbeyond. If you require

More information

Connecting with Free IP Call

Connecting with Free IP Call Connecting with Free IP Call Free IP Call (http://www.freeipcall.com/) offers telephone service using the VoIP standard SIP. The service allow users making/receiving VoIP calls to/from VoIP telephone numbers

More information

EarthLink Business SIP Trunking. ININ IC3 IP PBX Customer Configuration Guide

EarthLink Business SIP Trunking. ININ IC3 IP PBX Customer Configuration Guide EarthLink Business SIP Trunking ININ IC3 IP PBX Customer Configuration Guide Publication History First Release: Version 1.0 August 30, 2011 CHANGE HISTORY Version Date Change Details Changed By 1.0 8/30/2011

More information

IP Office Technical Tip

IP Office Technical Tip IP Office Technical Tip Tip no: 188 Release Date: September 27, 2007 Region: GLOBAL Verifying IP Office SIP Trunk Operation IP Office back-to-back SIP Line testing IP Office Release 4.0 supports SIP trunking.

More information

SIP Trunking using Optimum Business SIP Trunk Adaptor and ShoreTel IP PBX Phone System

SIP Trunking using Optimum Business SIP Trunk Adaptor and ShoreTel IP PBX Phone System SHORETEL SIP Trunking using Optimum Business SIP Trunk Adaptor and ShoreTel IP PBX Phone System Goal The purpose of this configuration guide is to describe the steps needed to configure the ShoreTel IP

More information

Release Notes for NeoGate TA410/TA810 41.18.0.X

Release Notes for NeoGate TA410/TA810 41.18.0.X Release Notes for NeoGate TA410/TA810 41.18.0.X ===Firmware Version: V41.18.0.11==== Applicable Model: NeoGate TA410/TA810 Release Date: January 15th, 2015 http://www.yeastar.com1/6 1. New Features 1.

More information

nexvortex Setup Guide

nexvortex Setup Guide nexvortex Setup Guide CISCO UC500 March 2012 Introduction This document is intended only for nexvortex customers and resellers as an aid to setting up the Cisco PBX software to connect to the nexvortex

More information

Fonality. Optimum Business Trunking and the Fonality Trixbox Pro IP PBX Standard Edition V4.1.2- p13 Configuration Guide

Fonality. Optimum Business Trunking and the Fonality Trixbox Pro IP PBX Standard Edition V4.1.2- p13 Configuration Guide Fonality Optimum Business Trunking and the Fonality Trixbox Pro IP PBX Standard Edition V4.1.2- p13 Configuration Guide Fonality Table of Contents 1. Overview 2. SIP Trunk Adaptor Set-up Instructions 3.

More information

Optimum Business SIP Trunk Set-up Guide

Optimum Business SIP Trunk Set-up Guide Optimum Business SIP Trunk Set-up Guide For use with IP PBX only. SIPSetup 07.13 FOR USE WITH IP PBX ONLY Important: If your PBX is configured to use a PRI connection, do not use this guide. If you need

More information

Setup Reference guide for PBX to SBC interconnection

Setup Reference guide for PBX to SBC interconnection Setup Reference guide for PBX to SBC interconnection Method of connection by "LAN interface only" i.e. SBC is placed behind the Perimeter Router / Fire-wall. Panasonic PBX (KX-TDE, NCP series), Media5

More information

ASTERISK. Goal. Prerequisites. Asterisk IP PBX Configuration

ASTERISK. Goal. Prerequisites. Asterisk IP PBX Configuration ASTERISK SIP Trunking using Optimum Business SIP Trunk Adaptor and the Asterisk IP PBX Version 1.2.10 Goal The purpose of this configuration guide is to describe the steps needed to configure the Asterisk

More information

Copyright ZYCOO All Rights Reserved 1 / 8

Copyright ZYCOO All Rights Reserved 1 / 8 Copyright ZYCOO All Rights Reserved 1 / 8 If you have a scenario where you have two CooVox IP PBXs in two different locations then you can integrate them together to make free phone calls between locations.

More information

Note: As of Feb 25, 2010 Priority Telecom has not completed FXS verification of fax capabilities. This will be updated as soon as verified.

Note: As of Feb 25, 2010 Priority Telecom has not completed FXS verification of fax capabilities. This will be updated as soon as verified. 1 SIP Carriers 1.1 Priority Telecom 1.1.1 Warnings Check the SIP 3 rd Party SIP Carrier Matrix for certification status, and supported features. More info about the SIP 3 rd Party SIP Carrier Matrix can

More information

Vega 100G and Vega 200G Gamma Config Guide

Vega 100G and Vega 200G Gamma Config Guide Vega 100G and Vega 200G Gamma Config Guide This document aims to go through the steps necessary to configure the Vega 100G and 200G gateways to be used with a Gamma SIP Trunk. When a SIP trunk is provisioned

More information

IPNext 50 NGN IP-PBX High-performance Next Generation IP-PBX Solution

IPNext 50 NGN IP-PBX High-performance Next Generation IP-PBX Solution IPNext 50 NGN IP-PBX High-performance Next Generation IP-PBX Solution IP-PBX Features www.addpac.com AddPac Technology 2008, Sales and Marketing Contents IP-PBX Features Smart Multimedia Manager VoIP Gateway

More information

SIP Trunking with Elastix. Configuration Guide for Matrix SETU VTEP

SIP Trunking with Elastix. Configuration Guide for Matrix SETU VTEP SIP Trunking with Elastix Configuration Guide for Matrix SETU VTEP Contents Setup Diagram 3 SIP Trunk Configuration in Elastix for SETU VTEP 4 Outgoing Call configuration in Elastix 7 Incoming call configuration

More information

Tech Bulletin 2012-002. IPitomy AccessLine SIP Provider Configuration

Tech Bulletin 2012-002. IPitomy AccessLine SIP Provider Configuration support@ipitomy.com 941.306.2200 Tech Bulletin 2012-002 Description This guide is intended to streamline the installation of AccessLine SIP trunks in the IPitomy IP PBX. In our combined testing we determined

More information

Application Notes for Configuring Intelepeer SIP Trunking with Avaya IP Office 7.0 - Issue 1.0

Application Notes for Configuring Intelepeer SIP Trunking with Avaya IP Office 7.0 - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Intelepeer SIP Trunking with Avaya IP Office 7.0 - Issue 1.0 Abstract These Application Notes describe the procedures for configuring

More information

OfficeServ 7100 IP-PBX. SIP Trunking using the Optimum Business Sip Trunk Adaptor and the Samsung

OfficeServ 7100 IP-PBX. SIP Trunking using the Optimum Business Sip Trunk Adaptor and the Samsung SIP Trunking using the Optimum Business Sip Trunk Adaptor and the Samsung OfficeServ 7100 IP-PBX 1 Table of Contents 1. Overview 3 2. Prerequisites 3 3. OfficeServ 7100 PBX Configuration 3 3.1 Network

More information

MyIC setup and configuration (with sample configuration for Alcatel Lucent test environment)

MyIC setup and configuration (with sample configuration for Alcatel Lucent test environment) MyIC setup and configuration (with sample configuration for Alcatel Lucent test environment) N.B. Goto MyIC Preferences in the System Toolbar. Description: this may be any appropriate description of the

More information

3CX Guide sip.orbtalk.co.uk

3CX Guide sip.orbtalk.co.uk 3CX Guide sip.orbtalk.co.uk Table of Contents 1. Outbound Dialling 2. Inbound Routing 3. Outbound CLI 4. Additional Network Configuration 1. Outbound dialling: The Customer will have been provided with

More information

ADTRAN SBC and Cisco Unified Call Manager SIP Trunk Interoperability

ADTRAN SBC and Cisco Unified Call Manager SIP Trunk Interoperability 6AOSSG0004-42A April 2013 Interoperability Guide ADTRAN SBC and Cisco Unified Call Manager SIP Trunk Interoperability This guide describes an example configuration used in testing the interoperability

More information

Using the GS8 Modular Gateway with Asterisk

Using the GS8 Modular Gateway with Asterisk Zed-3 501 Valley Way Milpitas CA 95035 Using the GS8 Modular Gateway with Asterisk Application note, 96-90002-02, May 2008 USA Voice: +1-408-587-9333 Fax: +1-408-586-9038 www.zed-3.com This document is

More information