UNDERSTANDING FreeSWITCH CLUSTERING with OpenSIPS (done well) Giovanni Maruzzelli

Size: px
Start display at page:

Download "UNDERSTANDING FreeSWITCH CLUSTERING with OpenSIPS (done well) Giovanni Maruzzelli"

Transcription

1 UNDRSTANDING FreeSWITCH CLUSTRING with OpenSIPS (done well) Giovanni Maruzzelli OpenSIPS Summit Amsterdam 2018

2 Who is Who Phones are SIP User Agents that can initiate (client) or accept (server) sessions eg: a phone calls a number, or answers an incoming ring OpenSIPS is a SIP Proxy and Registar eg: it routes the signaling from User Agents eg: it knows ehre the phones actually are eg: never touches the media FreeSWITCH is a SIP B2B User Agent, client and server at same time eg: it connects two sessions, one as server, one as client eg: it answers a call incoming from a "client" phone, then initiate a call toward a "server" phone, then joins (eg bridges) the two calls eg: it mixes the media from the two sessions, the two phones talk to each other and interact with FS at the same time eg: it knows if media is flowing or not (missed BY anyone?) eg: it can mix media with itself (phone talk with IVR) OpenSIPS Summit Amsterdam 2018

3 What is to be Done Security / High Availability Registrations Presence / BLF / SLA / IM Calls, Internal, FS Local Profile Calls, Inbound/Outbound, FS xternal Profile Special Cases (conferences, queues, transfer) NAT OpenSIPS Summit Amsterdam 2018

4 Security "SBC" (whatever it means) Single Point of Contact with the Wild Internet asier to Secure / Manage Port Forwarding iptables / firewall pike / antifraud / check well formed OpenSIPS Summit Amsterdam 2018

5 High Availability Double your OpenSIPS (and RTPProxy) Virtual IP Address Active - Passive Keepalived check sip works master / backup / fail ( FreeSWITCH will get its HA from Load Balancing ) OpenSIPS Summit Amsterdam 2018

6 SAM NTWORK PGSQL BDR + GlusterFS OpenSIPS Proxy Media Proxy Signaling ITSP DID Media K P A L I V D OpenSIPS Proxy DB Signaling File DB Media UDP T CP T L Signaling File Media R P L I C A T I O N PGSQL BDR + GlusterFS S W BRT C FreeSWITCH Servers Farm Media Proxy 6/31 OpenSIPS Summit Amsterdam 2018

7 Registrations High Frequency Transactions MUST be known both to FSs and to OSIPS OSIPS gets client's addr, FS gets OSIPS's addr Multiple Registrations / Parallel Forks OpenSIPS Summit Amsterdam 2018

8 Registrations SIP RGISTR a SIP UserID to the address where it can be reached internal phone register its own address to OSIPS OSIPS let FS know phone is reachable at OSIPS own address FS reach phone to OSIPS address, OSIPS then route message from FS to phone OpenSIPS Summit Amsterdam 2018

9 Registrations just dispatched to backend FreeSWITCHes low frequency to FS round robin OSIPS mid-registar OSIPS usrloc OSIPS dispatcher OSIPS nathelper (for PBX in Cloud scenario) OpenSIPS Summit Amsterdam 2018

10 Presence / BLF / SLA / IM Presence may generates high volume transactions, depending on use cases and patterns FreeSWITCH has got very nice Presence management, integrated with its own call processing and phone interaction, tailored for PBX usage Better to leave Presence to FS, if volume allows If volume is too high, then leave it entirely to OSIPS g: don't try a mixed OSIPS and FS Presence Processing OpenSIPS Summit Amsterdam 2018

11 SAM NTWORK PGSQL BDR + GlusterFS OpenSIPS Proxy Media Proxy Signaling ITSP DID Media K P A L I V D OpenSIPS Proxy DB Signaling File DB Media UDP T CP T L Signaling File Media R P L I C A T I O N PGSQL BDR + GlusterFS S W BRT C FreeSWITCH Servers Farm Media Proxy 11/31 OpenSIPS Summit Amsterdam 2018

12 Calls, INVIT SIP INVIT from a SIGNALING address (SIP) from a MDIA address (SDP) to a SIGNALING address (SIP) SIP OK to a SIGNALING address (SIP) from a MDIA address (SDP) from a SIGNALING address (SIP) OpenSIPS Summit Amsterdam 2018

13 Calls, Internal FS "internal" profile got port 5060 and "default" dialplan this deal with "in house" phones, users, extensions, services is a trusted environment, and may allow for paid services like PSTN gateways (toll-allow) default FS demo dialplan is an nterprise PBX choke full of services (you probably want to disable most of them) you don't want port 5060 to be reachable from the Internet (if you need to connect remote phones, use a VPN to let them appear on the local network) FusionPBX is the perfect FS interface, carefully calibrated for real world usage OpenSIPS Summit Amsterdam 2018

14 Calls, Internal internal phones only register and deal with OSIPS (on port 5060), they never send signaling directly to FS (phones and FSs can even be on totally separated networks, rtpproxy would then route the media) FS knows the phone is registered at OSIPS (because OSIPS sent FS a purposedly built registration message) all FSs share the same "gut" database (core dbs), so when one FS receives the registration message from OSIPS, all FSs become aware of the newly registered phone when FS wants to reach a phone, FS knows he must send the call to OSIPS OSIPS will then send the call (or other signaling, eg MWI, etc) to the phone this way we don't need to keep care of who is registered where, they all are registered at OSIPS, and any/all traffic to/from them pass back and forth through OSIPS traffic from/to OSIPS port 5060 is "internal PBX" traffic, from/to phones and FSs OpenSIPS Summit Amsterdam 2018

15 Calls, Internal Internal PhoneA to FreeSWITCH ServiceX (IVR) (phones, FSs and OSIPS on same net) PhoneA sends its own SDP to OSIPS > OSIPS sends PhoneA SDP to FS 5060 ("default" dialplan) -> FS matches the dialed number with ServiceX extension -> FS sends its own SDP to OSIPS > OSIPS sends FS SDP to PhoneA Media flows from PhoneA SDP to FS SDP, and back OpenSIPS Summit Amsterdam 2018

16 Calls, Internal Internal PhoneA to Internal PhoneB (phones, FSs and OSIPS on same net) PhoneA sends its own SDP to OSIPS > OSIPS sends phone SDP to FS 5060 ("default" dialplan) -> FS matches the dialed number with phoneb extension -> FS sends its own 1st SDP to OSIPS > OSIPS sends FS 1st SDP to PhoneB PhoneB answers OSIPS sending its own SDP -> OSIPS sends PhoneB SDP to FS > FS sends its own 2ndSDP to OSIPS > OSIPS sends FS 2nd SDP to PhoneA Media flows from phonea SDP to FS 1st SDP to FS 2nd SDP to PhoneB SDP and back OpenSIPS Summit Amsterdam 2018

17 SAM NTWORK PGSQL BDR + GlusterFS OpenSIPS Proxy Media Proxy Signaling ITSP DID Media K P A L I V D OpenSIPS Proxy DB Signaling File DB Media UDP T CP T L Signaling File Media R P L I C A T I O N PGSQL BDR + GlusterFS S W BRT C FreeSWITCH Servers Farm Media Proxy 17/31 OpenSIPS Summit Amsterdam 2018

18 Calls, xternal FS "external" profile got port 5080, and the "public" dialplan is dealing with the external, bad world out there is receiving inbound calls from DID providers is sending calls to ITSPs to be connected to POTS and Mobile Networks is usually facing the Internet, so incoming calls are untrusted, must not be able to reach internal services or dialplans, and definitely not be able to reach for pay gateways (VoIP fraud anyone?) in most cases inbound calls from each DID are directly mapped to a specific internal extension (phone or IVR) in the very short and secured "public" FS dialplan, while "pure SIP to SIP" incoming calls are rejected you may want to firewall OSIPS port 5080 to only communicate with your ITSP and DID providers OpenSIPS Summit Amsterdam 2018

19 Calls, xternal DID to internal phone DID provider (or PRI gateway) sends its own SDP to OSIPS > OSIPS instructs rtpproxy to create a pair of ports (to route media from Internet to internal net and back) -> OSIPS sends rtpproxy internal SDP to FS 5080 ("public" dialplan) -> FS matches the corresponding extension -> FS transfer to that extension on "default" dialplan -> FS sends its own 1st SDP to OSIPS > OSIPS sends FS 1st SDP to internal phone OpenSIPS Summit Amsterdam 2018

20 Calls, xternal Internal phone answers incoming DID phone sends its own SDP to OSIPS -> OSIPS sends phone SDP to FS -> FS recognize the call and then sends its own 2nd SDP to OSIPS > OSIPS sends rtpproxy external SDP to DID provider (gw) media flows from DID SDP to rtpproxy external SDP to rtpproxy internal SDP to FS 1st SDP to FS 2nd SDP to phone SDP and back OpenSIPS Summit Amsterdam 2018

21 Special Cases Calls going to FreeSWITCH for: conference rooms queues call centers MUST be on the SAM phisycal MACHIN OpenSIPS Summit Amsterdam 2018

22 Special Cases Incoming calls going to the same UserID Outbound calls originated by that same UserID and is much much better if they're ALL on the SAM physical MACHIN so UserID can transfer calls using RFRs OpenSIPS Summit Amsterdam 2018

23 Special Cases OSIPS by default distribute calls to various FSs dispatch or load_balance each time OSIPS sends a call to a FS, it writes down which destination "number" is going to which FS server and from which UserID if another call comes for the same (or related) destination, or is originated from the same UserID then OSIPS sends the call to that same FS server, bypassing default distribution algorithm OpenSIPS Summit Amsterdam 2018

24 PBX in the CLOUD OpenSIPS Proxy Media UDP TCP TLS WB R Signaling ITSP DID Signaling Media Media Proxy TC K P A L I V D g in l na g ia d Si e M PGSQL BDR + GlusterFS DB File File DB R P L I C A T I O N OpenSIPS Proxy PGSQL BDR + GlusterFS Media Proxy FreeSWITCH Servers Farm OpenSIPS Summit Amsterdam /31

25 NAT clients (phones) are behind NAT / Firewalls signaling can't go from US (FreeSWITCH / OpenSIPS) to THM eg: we cannot ring them signaling has the wrong media address eg: they can reach us, we can't reach them eg: they send us the private LAN ip address media can't go from client to client eg: they can be on NATs that cannot directly communicate OpenSIPS Summit Amsterdam 2018

26 NAT we must keep a pinhole open in the client firewall/router for us to be able to reach it we must translate SDP addresses from internal LAN of client to pinhole address in its firewall/router we must be able to let phones behind incompatible NATs to send media each other OpenSIPS Summit Amsterdam 2018

27 NAT PING them with OPTIONS messages fix_nated_(contact register) rtpproxy_engage OpenSIPS Summit Amsterdam 2018

28 28/31 OpenSIPS Summit Amsterdam 2018

29 29/31 OpenSIPS Summit Amsterdam 2018

30 30/31 OpenSIPS Summit Amsterdam 2018

31 Thank You QUSTIONS? Giovanni Maruzzelli training & consulting 31/31 OpenSIPS Summit Amsterdam 2018

Load Balancing FreeSWITCHes

Load Balancing FreeSWITCHes Load Balancing FreeSWITCHes Giovanni Maruzzelli www.packtpub.com 25% Discount Code: CLUECON25 2/50 Agenda Different options and strategies to load balancing FreeSWITCHes, using Kamailio, OpenSIPS or FreeSWITCH

More information

FreeSWITCH(es) Beyond the single machine: special cases and differences between single domain and multi tenant

FreeSWITCH(es) Beyond the single machine: special cases and differences between single domain and multi tenant SCALING FreeSWICH(es) Beyond the single machine: special cases and differences between single domain and multi tenant Giovanni Maruzzelli SI Scaling FreeSWICHes SI roxy Media UD Media roxy C Signaling

More information

NEC: SIP Trunking Configuration Guide V.1

NEC: SIP Trunking Configuration Guide V.1 NEC: SIP Trunking Configuration Guide V.1 FOR MORE INFO VISIT: CALL US EMAIL US intermedia.net +1.800.379.7729 sales@intermedia.net 2 NEC: SIP Trunking Configuration Guide V.1 TABLE OF CONTENTS Introduction...

More information

FreeSWITCH as a Kickass SBC. Moises Silva Manager, Software Engineering

FreeSWITCH as a Kickass SBC. Moises Silva Manager, Software Engineering FreeSWITCH as a Kickass SBC Moises Silva Manager, Software Engineering FreeSWITCH as a Kickass SBC Moises Silva Manager, Software Engineering Moises Silva

More information

Using OpenSIPS as a single entry point for a SIP network

Using OpenSIPS as a single entry point for a SIP network Know your enemy Sun Tzu's The Art of War Using OpenSIPS as a single entry point for a SIP network Flavio E. Goncalves OpenSIPS Training/SipPulse About me Author of the book Building Telephony Systems with

More information

Creating a large, scalable, and redundant voic cluster using OpenSIPS and FreeSWITCH

Creating a large, scalable, and redundant voic cluster using OpenSIPS and FreeSWITCH OpenSIPS Summit 2018 Amsterdam Alex Goulis Creating a large, scalable, and redundant voicemail cluster using OpenSIPS and FreeSWITCH OpenSIPS Summit 2018 -Amsterdam 1 My experience Designing multi-tenant

More information

ZyXEL V120 Support Notes. ZyXEL V120. (V120 IP Attendant 1 Runtime License) Support Notes

ZyXEL V120 Support Notes. ZyXEL V120. (V120 IP Attendant 1 Runtime License) Support Notes ZyXEL V120 (V120 IP Attendant 1 Runtime License) Support Notes Version 1.00 April 2009 1 Contents Overview 1. Overview of V120 IP Attendant...3 2. Setting up the V120...4 3. Auto Provision...7 4. V120

More information

Cisco Unified Communications Manager Trunk Types

Cisco Unified Communications Manager Trunk Types Cisco Unified Communications Manager Trunk Types This chapter provides information about trunk types. In a distributed call-processing environment, Cisco Unified Communications Manager communicates with

More information

SBC Configuration Examples for Mediant SBC

SBC Configuration Examples for Mediant SBC Configuration Note AudioCodes Mediant Series of Session Border Controllers (SBC) SBC Configuration Examples for Mediant SBC Version 7.2 Configuration Note Contents Table of Contents 1 Introduction...

More information

DEPLOYMENT GUIDE Version 1.2. Deploying the BIG-IP LTM for SIP Traffic Management. Archived

DEPLOYMENT GUIDE Version 1.2. Deploying the BIG-IP LTM for SIP Traffic Management. Archived DEPLOYMENT GUIDE Version 1.2 Deploying the BIG-IP LTM for SIP Traffic Management Table of Contents Table of Contents Configuring the BIG-IP LTM for SIP traffic management Product versions and revision

More information

Configuration Guide IP-to-IP Application

Configuration Guide IP-to-IP Application Multi-Service Business Gateways Enterprise Session Border Controllers VoIP Media Gateways Configuration Guide IP-to-IP Application Version 6.8 November 2013 Document # LTRT-40004 Configuration Guide Contents

More information

Implementation and Planning Guide

Implementation and Planning Guide nexvortex SIP Trunking February 2018 5 1 0 S P R I N G S T R E E T H E R N D O N V A 2 0 1 7 0 + 1 8 5 5. 6 3 9. 8 8 8 8 Copyright nexvortex 2018 This document is the exclusive property of nexvortex, Inc.

More information

Application Notes for Computer Instruments eone with Avaya IP Office Server Edition - Issue 1.0

Application Notes for Computer Instruments eone with Avaya IP Office Server Edition - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Computer Instruments eone with Avaya IP Office Server Edition - Issue 1.0 Abstract These Application Notes describe the configuration steps

More information

Grandstream Networks, Inc. IPVideoTalk Service Configuration Guide on UCM

Grandstream Networks, Inc. IPVideoTalk Service Configuration Guide on UCM Grandstream Networks, Inc. Table of Contents OVERVIEW... 4 IPVIDEOTALK SERVICE CONFIGURATION ON UCM... 5 Configure SIP Trunk on IPVT10... 5 Configure Grandstream UCM... 5 Configure VoIP Trunk... 5 Configure

More information

Open Mic Webcast. Jumpstarting Audio- Video Deployments Tony Payne March 9, 2016

Open Mic Webcast. Jumpstarting Audio- Video Deployments Tony Payne March 9, 2016 Open Mic Webcast Jumpstarting Audio- Video Deployments Tony Payne March 9, 2016 Agenda The Challenges of Audio and Video Architecture Bill of Materials Component Descriptions Deployment Sample Deployment

More information

Application Notes for Configuring Fonolo In-Call Rescue with Avaya IP Office Server Edition using SIP Trunks Issue 1.0

Application Notes for Configuring Fonolo In-Call Rescue with Avaya IP Office Server Edition using SIP Trunks Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Fonolo In-Call Rescue with Avaya IP Office Server Edition using SIP Trunks Issue 1.0 Abstract These Application Notes describe

More information

Application Note Asterisk BE with SIP Trunking - Configuration Guide

Application Note Asterisk BE with SIP Trunking - Configuration Guide Application Note Asterisk BE with SIP Trunking - Configuration Guide 23 January 2009 Asterisk BE SIP Trunking Table of Contents 1 ASTERISK BUSINESS EDITION AND INGATE... 1 1.1 SIP TRUNKING SUPPORT... 2

More information

Ingate Firewall & SIParator Product Training. SIP Trunking Focused

Ingate Firewall & SIParator Product Training. SIP Trunking Focused Ingate Firewall & SIParator Product Training SIP Trunking Focused Common SIP Applications SIP Trunking Remote Desktop Ingate Product Training Common SIP Applications SIP Trunking A SIP Trunk is a concurrent

More information

SBC Deployment Guide Architecture Options and Configuration Examples

SBC Deployment Guide Architecture Options and Configuration Examples Enterprise Session Border Controllers Mediant E-SBC Series AudioCodes SBC Deployment Guide Architecture Options and Configuration Examples Version 6.4 April 2012 Document # LTRT-31620 Deployment Guide

More information

Unified Communications Manager Express Toll Fraud Prevention

Unified Communications Manager Express Toll Fraud Prevention Unified Communications Manager Express Toll Fraud Prevention Document ID: 107626 Contents Introduction Prerequisites Requirements Components Used Conventions Overview Internal vs. External Threats Toll

More information

SIP security and the great fun with Firewall / NAT Bernie Höneisen SURA / ViDe, , Atlanta, GA (USA)

SIP security and the great fun with Firewall / NAT Bernie Höneisen SURA / ViDe, , Atlanta, GA (USA) security and the great fun with Firewall / NAT Bernie Höneisen SURA / ViDe, 29.03.2006, Atlanta, GA (USA) 2006 SWITCH Content and Firewall and NAT Privacy / Encryption SpIT / Authentication Identity General

More information

Application Notes for TelStrat Engage Record Version 3.3 with Avaya Business Communication Manger Release 6.0 VoIP Recording Issue 1.

Application Notes for TelStrat Engage Record Version 3.3 with Avaya Business Communication Manger Release 6.0 VoIP Recording Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for TelStrat Engage Record Version 3.3 with Avaya Business Communication Manger Release 6.0 VoIP Recording Issue 1.0 Abstract These Application

More information

VPN-1 Power/UTM. Administration guide Version NGX R

VPN-1 Power/UTM. Administration guide Version NGX R VPN-1 Power/UTM Administration guide Version NGX R65.2.100 January 15, 2009 2003-2009 Check Point Software Technologies Ltd. All rights reserved. This product and related documentation are protected by

More information

Spectrum Enterprise SIP Trunking Service Vertical TM Wave IP500TM / Wave IP2500 TM Release 4.0, 4.5 IP PBX Configuration Guide

Spectrum Enterprise SIP Trunking Service Vertical TM Wave IP500TM / Wave IP2500 TM Release 4.0, 4.5 IP PBX Configuration Guide Spectrum Enterprise SIP Trunking Service Vertical TM Wave IP500TM / Wave IP2500 TM Release 4.0, 4.5 IP PBX Configuration Guide About Spectrum Enterprise: Spectrum Enterprise is a division of Charter Communications

More information

Application Note. Microsoft OCS 2007 Configuration Guide

Application Note. Microsoft OCS 2007 Configuration Guide Application Note Microsoft OCS 2007 Configuration Guide 15 October 2009 Microsoft OCS 2007 Configuration Guide Table of Contents 1 MICROSOFT OCS 2007 AND INGATE... 1 1.1 SIP TRUNKING SUPPORT... 2 2 INGATE

More information

Securing the network edge with OpenSIPS. John Quick Smartvox Limited

Securing the network edge with OpenSIPS. John Quick Smartvox Limited Securing the network edge with OpenSIPS John Quick Smartvox Limited Network Edge a simplistic view Private Trusted LAN OpenSIPS Public Untrusted Internet Database Real World Private routing Carrier 1 Carrier

More information

Avaya IP-Office 500 version 9.0 IP-PBX. SIP Trunking using the Optimum Business SIP Trunk Adaptor and the Avaya IP-Office 500 version 9.

Avaya IP-Office 500 version 9.0 IP-PBX. SIP Trunking using the Optimum Business SIP Trunk Adaptor and the Avaya IP-Office 500 version 9. SIP Trunking using the Optimum Business SIP Trunk Adaptor and the Avaya IP-Office 500 Table of Contents 1 Overview 3 2 Prerequisites 3 3 Avaya IP Office 500 PBX Configuration 3 3.1 SIP Settings 4 3.2 DID

More information

Application Notes for Configuring CenturyLink SIP Trunking with Avaya IP Office Issue 1.0

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

More information

Application Notes for Phonect SIP Trunk Service and Avaya IP Office 7.0 Issue 1.0

Application Notes for Phonect SIP Trunk Service and Avaya IP Office 7.0 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Phonect SIP Trunk Service and Avaya IP Office 7.0 Issue 1.0 Abstract These Application Notes describe the procedures for configuring Session

More information

IP/PRI/FXS/BRI PBX. User Manual. Version 2.0

IP/PRI/FXS/BRI PBX. User Manual. Version 2.0 IP/PRI/FXS/BRI PBX User Manual Version 2.0 2 Table of Contents 1. Introduction... 6 1.1 Typical setup of IP/PRI/FXS/BRI PBX... 7 2. Getting Started With the IP/PRI/FXS/BRI PBX... 8 2.1 Hardware Setup...

More information

Broadvox Fusion SIP Trunks Configuration Guide PBX Platform: KX-TDA50

Broadvox Fusion SIP Trunks Configuration Guide PBX Platform: KX-TDA50 Broadvox Fusion SIP Trunks Configuration Guide PBX Platform: KX-TDA50 3/20/2013 1 Overview This document describes the configuration procedures required for the KX-TDA50 to make full use of the capabilities

More information

Patton Electronics Co Rickenbacker Drive, Gaithersburg, MD 20879, USA tel: fax:

Patton Electronics Co Rickenbacker Drive, Gaithersburg, MD 20879, USA tel: fax: Patton Electronics Co. www.patton.com 7622 Rickenbacker Drive, Gaithersburg, MD 20879, USA tel: +1 301-975-1000 fax: +1 301-869-9293 2012 Inalp Networks AG, Niederwangen, Switzerland All Rights Reserved.

More information

Application Notes for Configuring Computer Instruments e-ivr, as a SIP endpoint, with Avaya IP Office 500 V2 Issue 1.0

Application Notes for Configuring Computer Instruments e-ivr, as a SIP endpoint, with Avaya IP Office 500 V2 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Computer Instruments e-ivr, as a SIP endpoint, with Avaya IP Office 500 V2 Issue 1.0 Abstract These Application Notes describe

More information

Wanderbox & Com.X. Customer product identification. The complete communications solution in a box. Installation Auditor.

Wanderbox & Com.X. Customer product identification. The complete communications solution in a box. Installation Auditor. Customer Detail Customer Full Service Address Client Contact Name Contact Job Title Installation Date Client Contact Number Client Contact E-Mail Installation Auditor Audit Date Customer product identification

More information

Sipdex M200s IPPBX. Embedded. Support Any IP Phone. Softphone and SIP Client App

Sipdex M200s IPPBX. Embedded. Support Any IP Phone. Softphone and SIP Client App Sipdex M200s IPPBX Based on embedded asterisk system, SIPDEX M200s IPPBX is a high quality, stable PBX without any moving parts and a very small footprint required minimum technology knowledge to deploy.

More information

Grandstream Networks, Inc. How to Integrate UCM6XXX with Microsoft Lync Server

Grandstream Networks, Inc. How to Integrate UCM6XXX with Microsoft Lync Server Grandstream Networks, Inc. Table of Contents OVERVIEW... 4 UCM6XXX CONFIGURATION... 5 Step 1: Create SIP Peer Trunk... 5 Step 2: Configure Outbound Rule... 7 Step 3: Configure Inbound Rule... 8 MICROSOFT

More information

Describe the EdgeMarc s VoIP Survivability facility; how it works and how it is configured.

Describe the EdgeMarc s VoIP Survivability facility; how it works and how it is configured. KnowledgeBase Q & A Question Describe the EdgeMarc s VoIP Survivability facility; how it works and how it is configured. Answer Article last updated: January 31, 2007 Based on VOS: v6.7.6 1.0 Overview

More information

SBC Configuration Examples

SBC Configuration Examples Configuration Note SBC Configuration Examples Mediant Session Border Controllers (SBC) Version 7.0 Configuration Note Contents Table of Contents 1 Introduction... 7 1.1 Configuration Terminology... 7

More information

Release Note for N412

Release Note for N412 Yeastar Information Technology Co. Ltd. CONTENTS FIRMWARE VERSION 45.15.0.3... 3 FIRMWARE VERSION 45.15.0.1... 3 FIRMWARE VERSION 45.14.0.23... 5 FIRMWARE VERSION 45.14.0.22... 12 2/12 FIRMWARE VERSION

More information

Cisco Expressway Session Classification

Cisco Expressway Session Classification Cisco Expressway Session Classification Deployment Guide First Published: December 2016 Last Updated: December 2017 Expressway X8.10 Cisco Systems, Inc. www.cisco.com 2 Preface Preface Change History Table

More information

Application Notes for Presence OpenGate with Avaya IP Office 9.0 Issue 1.0

Application Notes for Presence OpenGate with Avaya IP Office 9.0 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Presence OpenGate with Avaya IP Office 9.0 Issue 1.0 Abstract These Application Notes describe the configuration steps required for Presence

More information

One-Voice Resiliency. Branch Voice Resilience for Microsoft Skype for Business or Lync Server Environments and Skype for Business Online. Version 7.

One-Voice Resiliency. Branch Voice Resilience for Microsoft Skype for Business or Lync Server Environments and Skype for Business Online. Version 7. Configuration Note AudioCodes One Voice for Skype For Business One-Voice Resiliency Branch Voice Resilience for Microsoft Skype for Business or Lync Server Environments and Skype for Business Online Version

More information

One-Voice Resiliency. Branch Voice Resilience for Microsoft Skype for Business or Lync Server Environments and Skype for Business Online. Version 7.

One-Voice Resiliency. Branch Voice Resilience for Microsoft Skype for Business or Lync Server Environments and Skype for Business Online. Version 7. Configuration Note AudioCodes One Voice for Skype For Business One-Voice Resiliency Branch Voice Resilience for Microsoft Skype for Business or Lync Server Environments and Skype for Business Online Version

More information

One-Voice Resiliency with SIP Trunking

One-Voice Resiliency with SIP Trunking Configuration Note AudioCodes One Voice for Skype For Business One-Voice Resiliency with SIP Trunking For Branch Sites in Microsoft Lync Server or Skype for Business Environments Version 7.2 Configuration

More information

Application Notes for OneAccess-Telstra Business SIP with Avaya IP Office Release 11 SIP Trunking - Issue 1.0

Application Notes for OneAccess-Telstra Business SIP with Avaya IP Office Release 11 SIP Trunking - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for OneAccess-Telstra Business SIP with Avaya IP Office Release 11 SIP Trunking - Issue 1.0 Abstract These Application Notes illustrate a sample

More information

Grandstream Networks, Inc. UCM6100 Security Manual

Grandstream Networks, Inc. UCM6100 Security Manual Grandstream Networks, Inc. UCM6100 Security Manual Index Table of Contents OVERVIEW... 3 WEB UI ACCESS... 4 UCM6100 HTTP SERVER ACCESS... 4 PROTOCOL TYPE... 4 USER LOGIN... 4 LOGIN TIMEOUT... 5 TWO-LEVEL

More information

Application Note 3Com VCX Connect with SIP Trunking - Configuration Guide

Application Note 3Com VCX Connect with SIP Trunking - Configuration Guide Application Note 3Com VCX Connect with SIP Trunking - Configuration Guide 28 May 2009 3Com VCX Connect Solution SIP Trunking Table of Contents 1 3COM VCX CONNECT AND INGATE... 1 1.1 SIP TRUNKING SUPPORT...

More information

Unified Communications in RealPresence Access Director System Environments

Unified Communications in RealPresence Access Director System Environments [Type the document title] 2.1.0 March 2013 3725-78704-001A Deploying Polycom Unified Communications in RealPresence Access Director System Environments Polycom Document Title 1 Trademark Information POLYCOM

More information

Version: SIPPBXUM.100

Version: SIPPBXUM.100 SIPPBX 6200A User s Manual Version: SIPPBXUM.100 CH1. Overview... - 5-1.1 Specifications... - 5-1.2 Hardware Overview... - 8-1.2.1 The Front Panel... - 8-1.2.2 The Back Panel... - 8 - CH2. Start to configure

More information

SIP Trunking. Overview. 1) Network Setup (here)

SIP Trunking. Overview. 1) Network Setup (here) SIP Trunking Overview The SIP Trunking use case allows your PBX to safely connect over the internet to an ITSP. The SBC in this scenaro is providing enhanced security for the corporate network without

More information

Grandstream Networks, Inc. Peering HT8XX with GXW410X

Grandstream Networks, Inc. Peering HT8XX with GXW410X Grandstream Networks, Inc. Peering HT8XX with GXW410X Table of Contents OVERVIEW... 3 SCENARIO 1: PEERING ONE HT8XX WITH GXW410X... 4 HT8XX Configuration... 4 GXW410X Configuration... 6 One-To-One mapping...

More information

DMR Conventional Radio. SIP Phone Application Notes

DMR Conventional Radio. SIP Phone Application Notes DMR Conventional Radio SIP Phone Application Notes Copyright Information Hytera is the trademark or registered trademark of Hytera Communications Corporation Limited (the Company) in PRC and/or other countries

More information

ICE-008 IP PBX. 1 Product Information 1.1 New Mini PBX. 1.2 Features System Features Call Handling Features

ICE-008 IP PBX. 1 Product Information 1.1 New Mini PBX. 1.2 Features System Features Call Handling Features ICE-008 IP PBX 1 Product Information 1.1 New Mini PBX ICE008 is a new generation office communication equipment that delivers traditional PBX (private branch exchange) functions and more with advanced

More information

Spectrum Enterprise SIP Trunking Service Cisco Unified Communication Mgr Firmware 6.01 IP PBX Configuration Guide

Spectrum Enterprise SIP Trunking Service Cisco Unified Communication Mgr Firmware 6.01 IP PBX Configuration Guide Spectrum Enterprise SIP Trunking Service Cisco Unified Communication Mgr Firmware 6.01 IP PBX Configuration Guide About Spectrum Enterprise: Spectrum Enterprise is a division of Charter Communications

More information

Ran Inbar CTO UC. AudioCodes CloudBond Product and Topologies. Dec. 2015

Ran Inbar CTO UC. AudioCodes CloudBond Product and Topologies. Dec. 2015 Ran Inbar CTO UC AudioCodes CloudBond Product and Topologies Dec. 2015 Terminology On premises- Service is deployed in the customer's datacenter Partner hosted- Service is deployed in the hosting partner's

More information

Grandstream Networks, Inc. Connecting UCM6XXX with FreePBX

Grandstream Networks, Inc. Connecting UCM6XXX with FreePBX Grandstream Networks, Inc. Connecting UCM6XXX with FreePBX Table of Contents OVERVIEW... 4 CONNECTING UCM6XXX WITH FREEPBX... 5 Using SIP Trunk with Registration... 5 Configure SIP Trunk on FreePBX...

More information

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

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

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Configuring SIP Trunking between Metaswitch MetaSphere CFS 7.3 with Metaswitch Perimeta Session Border Controller 3.1.0 and Avaya IP Office

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

MITEL SIP CoE Technical. Configuration Note. Configure Mitel MiVoice Office 6.1 SP1 PR2 for use with IntelePeer SIP Trunking. SIP CoE XXX

MITEL SIP CoE Technical. Configuration Note. Configure Mitel MiVoice Office 6.1 SP1 PR2 for use with IntelePeer SIP Trunking. SIP CoE XXX MITEL SIP CoE Technical Configuration Note Configure Mitel MiVoice Office 6.1 SP1 PR2 for use with IntelePeer SIP Trunking SIP CoE 12-4940-00XXX NOTICE The information contained in this document is believed

More information

AT&T IP Flexible Reach And IP Toll Free Cisco Unified Communication Manager H.323 Configuration Guide. Issue /3/2008

AT&T IP Flexible Reach And IP Toll Free Cisco Unified Communication Manager H.323 Configuration Guide. Issue /3/2008 AT&T IP Flexible Reach And IP Toll Free Cisco Unified Communication Manager H.323 Configuration Guide Issue 2.17 3/3/2008 Page 1 of 49 TABLE OF CONTENTS 1 Introduction... 4 2 Special Notes... 4 3 Overview...

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Configuring SIP Trunking between the PAETEC Broadsoft based SIP Trunking Solution and an Avaya IP Office Telephony Solution Issue 1.0 Abstract

More information

Setting up Alcatel 4400 Digital PIMG Integration

Setting up Alcatel 4400 Digital PIMG Integration up Alcatel 4400 Digital PIMG Integration with Cisco Unity Connection Up an Alcatel 4400 Digital PIMG Integration with Cisco Unity Connection, on page 1 Up an Alcatel 4400 Digital PIMG Integration with

More information

Deploy Webex Video Mesh

Deploy Webex Video Mesh Video Mesh Deployment Task Flow, on page 1 Install Webex Video Mesh Node Software, on page 2 Log in to the Webex Video Mesh Node Console, on page 4 Set the Network Configuration of the Webex Video Mesh

More information

Application Notes for Configuring Tidal Communications tnet Business VoIP with Avaya IP Office using SIP Registration - Issue 1.0

Application Notes for Configuring Tidal Communications tnet Business VoIP with Avaya IP Office using SIP Registration - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Tidal Communications tnet Business VoIP with Avaya IP Office using SIP Registration - Issue 1.0 Abstract These Application Notes

More information

Configuration Guide For Use with AT&T s IP Flexible Reach Service. Version 1/Issue 7. July 30, 2008

Configuration Guide For Use with AT&T s IP Flexible Reach Service. Version 1/Issue 7. July 30, 2008 Configuration Guide For Use with AT&T s IP Flexible Reach Service Version 1/Issue 7 July 30, 2008 Page 1 of 42 TABLE OF CONTENTS 1 Introduction... 4 2 Version Information... 6 3 Special Notes... 7 ShoreTel

More information

Application Notes for Configuring SIP Trunking between the Skype SIP Service and an Avaya IP Office Telephony Solution Issue 1.0

Application Notes for Configuring SIP Trunking between the Skype SIP Service and an Avaya IP Office Telephony Solution Issue 1.0 Application Notes for Configuring SIP Trunking between the Skype SIP Service and an Avaya IP Office Telephony Solution Issue 1.0 Abstract These Application Notes describe the steps to configure trunking

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Avaya Aura Communication Manager 5.2.1, Avaya Aura Session Manager 6.1 and Avaya Aura Session Border Controller 6.0.3 with AT&T IP Toll

More information

Setting Up an Alcatel 4400 Digital PIMG Integration with Cisco Unity Connection

Setting Up an Alcatel 4400 Digital PIMG Integration with Cisco Unity Connection up Alcatel 4400 Digital PIMG Integration with Cisco Unity Connection Up an Alcatel 4400 Digital PIMG Integration with Cisco Unity Connection, page 1 Up an Alcatel 4400 Digital PIMG Integration with Cisco

More information

Minnesota Microsoft Unified Communications User Group Welcome! March 26, 2009

Minnesota Microsoft Unified Communications User Group Welcome! March 26, 2009 Minnesota Microsoft Unified Communications User Group Welcome! March 26, 2009 Today s presenters Rob Hanson rhanson@avtex.com Business Development for UC Colleen Reynolds creynolds@avtex.comcom Ops Manager

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Avaya Communication Server 1000E Release 7.5, Avaya Aura Session Manager 6.1, and Avaya Aura Session Border Controller 6.0 with Verizon

More information

AT&T IP Flexible Reach And IP Toll Free Cisco Call Manager Configuration Guide. Issue /5/2007

AT&T IP Flexible Reach And IP Toll Free Cisco Call Manager Configuration Guide. Issue /5/2007 And IP Toll Free Cisco Call Manager Configuration Guide Issue 2.13 6/5/2007 Page 1 of 38 TABLE OF CONTENTS 1 Introduction... 3 2 Special Notes... 3 3 Overview... 4 3.1 Call Manager Site... 4 3.2 TFTP and

More information

OpenScape Business V2R3 Highlights. Peter Messelis, Product

OpenScape Business V2R3 Highlights. Peter Messelis, Product OpenScape Business V2R3 Highlights Peter Messelis, Product Manager@Nextel Agenda Highlights V2R3 UC Endpoints Interworking Security 2 Agenda Highlights V2R3 UC Endpoints Interworking Security 3 Highlights

More information

Genesys Application Note. Oracle Enterprise SBC With Genesys SIP Server. Version 1.1

Genesys Application Note. Oracle Enterprise SBC With Genesys SIP Server. Version 1.1 Genesys Application Note Oracle Enterprise SBC With Genesys SIP Server Version 1.1 The information contained herein is proprietary and confidential and cannot be disclosed or duplicated without the prior

More information

Cisco Expressway Options with Cisco Meeting Server and/or Microsoft Infrastructure

Cisco Expressway Options with Cisco Meeting Server and/or Microsoft Infrastructure Cisco Expressway Options with Cisco Meeting Server and/or Microsoft Infrastructure Deployment Guide First Published: December 2016 Last Updated: October 2017 Expressway X8.9.2 Cisco Systems, Inc. www.cisco.com

More information

Intercommunication between Two MyPBX (Peer to Peer Mode)

Intercommunication between Two MyPBX (Peer to Peer Mode) Intercommunication between Two MyPBX (Peer to Peer Mode) Version 1.0 Yeastar Information Technology Co. Ltd. 1. Link Two MyPBX in the Same Network... 3 2. Link Two MyPBX in Different Locations... 9 2.1

More information

Teams Direct Routing. Configuration Checklists for BTIP and Business Talk SIP services. 28 january Teams Direct Routing AudioCodes Checklist 0.

Teams Direct Routing. Configuration Checklists for BTIP and Business Talk SIP services. 28 january Teams Direct Routing AudioCodes Checklist 0. Teams Direct Routing Configuration Checklists for BTIP and Business Talk 28 january 2019 Teams Direct Routing AudioCodes Checklist 0.2 Contents 1 Main certified architectures... 3 1.1 Standalone mode...

More information

Cisco Unified Border Element (CUBE) Integration Guide

Cisco Unified Border Element (CUBE) Integration Guide Cisco Unified Border Element (CUBE) Integration Guide Technical Documentation for integrating Cisco Unified Border Element with Blue Jeans Network 516 Clyde Avenue Mountain View, CA 94070 www.bluejeans.com

More information

Yealink VCS Network Deployment Solution

Yealink VCS Network Deployment Solution Yealink VCS Network Deployment Solution Oct. 2015 V10.6 Yealink Network Deployment Solution Table of Contents Table of Contents... iii Network Requirements... 1 Bandwidth Requirements... 1 Calculating

More information

WAN. System Networking Lab Table 1

WAN. System Networking Lab Table 1 System Networking Lab Table 1 In this diagram each system operates independently to supply network services to the phones on its LAN interface. The phones are powered by a Power over Ethernet switch. The

More information

Grandstream Networks, Inc. UCM6xxx SIP Trunks Guide

Grandstream Networks, Inc. UCM6xxx SIP Trunks Guide Grandstream Networks, Inc. Table of Content INTRODUCTION... 4 REGISTER SIP TRUNKS... 5 Configuration... 5 DID / DOD Configuration... 9 Direct Inward Dialing (DID)... 9 Direct Outward Dialing (DOD)... 10

More information

VG422R. User s Manual. Rev , 5

VG422R. User s Manual. Rev , 5 VG422R User s Manual Rev 1.0 2003, 5 CONGRATULATIONS ON YOUR PURCHASE OF VG422R... 1 THIS PACKAGE CONTAINS... 1 CONFIRM THAT YOU MEET INSTALLATION REQUIREMENTS... 1 1. INSTALLATION GUIDE... 2 1.1. HARDWARE

More information

Application Notes for Configuring Sonexis ConferenceManager with Avaya IP Office using a SIP trunk Issue 1.0

Application Notes for Configuring Sonexis ConferenceManager with Avaya IP Office using a SIP trunk Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Sonexis ConferenceManager with Avaya IP Office using a SIP trunk Issue 1.0 Abstract These Application Notes describe the procedure

More information

Integrating VoIP Phones and IP PBX s with VidyoGateway

Integrating VoIP Phones and IP PBX s with VidyoGateway Integrating VoIP Phones and IP PBX s with VidyoGateway Updated February 2011 INDEX: I. ABSTRACT.1 II. III. IV. VIDYOGATEWAY OVERVIEW.. 1 NETWORK TOPOLOGIES AND DEFINITIONS...2 CONNECTING TO VIDYOCONFERENCES

More information

Configuration Note. AireSpring SIP Trunk & Genesys Contact Center using AudioCodes Mediant SBC. Session Border Controllers (SBC)

Configuration Note. AireSpring SIP Trunk & Genesys Contact Center using AudioCodes Mediant SBC. Session Border Controllers (SBC) Session Border Controllers (SBC) AudioCodes Mediant Series Interoperability Lab Configuration Note AireSpring SIP Trunk & Genesys Contact Center using AudioCodes Mediant SBC Version 6.8 October 2014 Document

More information

Application Notes for Packet One SIP Trunk System Version 3.1 Interoperability with Avaya Software Communication System Release Issue 1.

Application Notes for Packet One SIP Trunk System Version 3.1 Interoperability with Avaya Software Communication System Release Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for Packet One SIP Trunk System Version 3.1 Interoperability with Avaya Software Communication System Release 4.0 - Issue 1.0 Abstract These

More information

Application Notes for Configuring Windstream using Genband G9 SIP Trunking with Avaya IP Office Issue 1.0

Application Notes for Configuring Windstream using Genband G9 SIP Trunking with Avaya IP Office Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Windstream using Genband G9 SIP Trunking with Avaya IP Office 8.1 - Issue 1.0 Abstract These Application Notes describe the

More information

When placing an order for BT SIP Trunks customers are requested to sign this document to acknowledge that;

When placing an order for BT SIP Trunks customers are requested to sign this document to acknowledge that; Customer Guide BT Business - BT SIP Trunks BT SIP Trunks: Firewall and LAN Guide IMPORTANT This document provides supporting information for the configuration of a customer Firewall and LAN to support

More information

Application Notes for Configuring SIP Trunking between Bandwidth.com SIP Trunking Solution and an Avaya IP Office Telephony Solution Issue 1.

Application Notes for Configuring SIP Trunking between Bandwidth.com SIP Trunking Solution and an Avaya IP Office Telephony Solution Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for Configuring SIP Trunking between Bandwidth.com SIP Trunking Solution and an Avaya IP Office Telephony Solution Issue 1.0 Abstract These

More information

The FXS and FXO ports in SurfinBird FW GW models, Intertex

The FXS and FXO ports in SurfinBird FW GW models, Intertex 1 (12) The FXS and FXO ports in SurfinBird FW GW models, Intertex Learn how to setup the gateway functionalities in the Internet Gate This guide describes how to setup the FXO port for PSTN gateway functionality

More information

Maintaining High Availability for Enterprise Voice in Microsoft Office Communication Server 2007

Maintaining High Availability for Enterprise Voice in Microsoft Office Communication Server 2007 Maintaining High Availability for Enterprise Voice in Microsoft Office Communication Server 2007 A Dell Technical White Paper By Farrukh Noman Dell Product Group - Enterprise THIS WHITE PAPER IS FOR INFORMATIONAL

More information

PORTA ONE. PortaSIP. Administrator Guide MAINTENANCE RELEASE PORTAONE, INC. ALL RIGHTS RESERVED.

PORTA ONE. PortaSIP. Administrator Guide MAINTENANCE RELEASE PORTAONE, INC. ALL RIGHTS RESERVED. PORTA ONE PortaSIP Administrator Guide 66 MAINTENANCE RELEASE 2000-2017 PORTAONE, INC. ALL RIGHTS RESERVED. WWW.PORTAONE.COM PortaSIP Administrator Guide Copyright Notice & Disclaimers Copyright 2000 2017

More information

Network Address Translation (NAT) Contents. Firewalls. NATs and Firewalls. NATs. What is NAT. Port Ranges. NAT Example

Network Address Translation (NAT) Contents. Firewalls. NATs and Firewalls. NATs. What is NAT. Port Ranges. NAT Example Contents Network Address Translation (NAT) 13.10.2008 Prof. Sasu Tarkoma Overview Background Basic Network Address Translation Solutions STUN TURN ICE Summary What is NAT Expand IP address space by deploying

More information

Firewall Control Proxy

Firewall Control Proxy SS8 s, Inc. The (FCP) is an optional component of the switch. Background In order to gain widespread acceptance, Voice over IP technology requires a method to restrict access to specific devices and applications,

More information

Configuration Guide for Integration of Spectralink PIVOT with UNIVERGE 3C

Configuration Guide for Integration of Spectralink PIVOT with UNIVERGE 3C Configuration Guide for Integration of Spectralink PIVOT with UNIVERGE 3C Version 1.0 December 19, 2014 Contents Contents Acronyms... 1 Purpose of this Document... 2 Scope of this document... 2 Configuration...

More information

InterPBX Communication System

InterPBX Communication System InterPBX Communication System Blaze Monitor Administrator Operation Guide 08BZMNM.bn2.20a.EN2 DSG, DSG logo, InterPBX, Blaze, Savanna, VG5000, VG6000, VG7000, IP590, IP580, IP500, IP510, DSG SoftPhone,

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Uecomm/Optus Evolve SIP Trunking Service with Avaya IP Office 9.1.6 and Avaya Session Border Controller for Enterprise 7.0 - Issue 1.0 Abstract

More information

Configuration Note Windstream SIP Trunk & Genesys Contact Center using AudioCodes Mediant SBC

Configuration Note Windstream SIP Trunk & Genesys Contact Center using AudioCodes Mediant SBC Session Border Controllers (SBC) AudioCodes Mediant Series Interoperability Lab Configuration Note Windstream SIP Trunk & Genesys Contact Center using AudioCodes Mediant SBC Version 7.0 December 2015 Document

More information

Dolby Conference Phone. Configuration guide for Avaya Aura Platform 6.x

Dolby Conference Phone. Configuration guide for Avaya Aura Platform 6.x Dolby Conference Phone Configuration guide for Avaya Aura Platform 6.x Version 3.2 28 June 2017 Copyright 2017 Dolby Laboratories. All rights reserved. Dolby Laboratories, Inc. 1275 Market Street San Francisco,

More information

Application Notes for Configuring SIP Trunking between CenturyLink SIP Trunk (Legacy Qwest) Service and Avaya IP Office R8.0 (16) Issue 1.

Application Notes for Configuring SIP Trunking between CenturyLink SIP Trunk (Legacy Qwest) Service and Avaya IP Office R8.0 (16) Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for Configuring SIP Trunking between CenturyLink SIP Trunk (Legacy Qwest) Service and Avaya IP Office R8.0 (16) Issue 1.0 Abstract These Application

More information