VoIP Probe 3.4. Functions, Parameters & Metrics for integration with HP Business Availability Center via HP Business Process Monitor

Size: px
Start display at page:

Download "VoIP Probe 3.4. Functions, Parameters & Metrics for integration with HP Business Availability Center via HP Business Process Monitor"

Transcription

1 VoIP Probe 3.4 Functions, Parameters & Metrics for integration with HP Business Availability Center via HP Business Process Monitor ADVENAGE GmbH Blumenhagenstr. 10 D Hannover Germany March 2010

2 Contents Contents 1 Introduction General Concept Functions & Parameters adv_voipprobe_init adv_voipprobe_run adv_voipprobe_has_metrics adv_voipprobe_get_metric adv_voipprobe_get_error_info adv_voipprobe_end adv_voipprobe_options_init adv_voipprobe_add_option adv_voipprobe_options_end Metrics Advanced Topics License Logging Tracing SNMP PESQ/MOS Examples SIP call from and to one VoIP Probe Call Case Description Implementation...13 ADVENAGE GmbH Page 2

3 1 Introduction 1 Introduction This document describes the parameters and metrics of VoIP Probe for integration with HP Business Availability Center (BAC) via HP Business Process Monitor (BPM). HP BAC integration of ADVENAGE VoIP Probe via HP BPM affects HP BAC, HP BPM, HP Virtual User Generator (HP VuGen) and ADVENAGE VoIP Probe. ADVENAGE VoIP Probe provides a Dynamic Link Library (DLL) or shared library (on UNIX) allowing accessing the functionality of VoIP Probe Client. This library is used by HP VuGen to develop test scenarios and by HP BPM to run test cases. During test case development, HP VuGen is used to describe the test case in terms of parameters. There are mandatory parameters (such as calling party description, call duration time, and max. probe execution time) and optional parameters (such as called party description, CLI check, rejection of call answering, and DTMF tones to play at particular time intervals.). Some functions are provided by the DLL or shared lib to set-up and initialize a measurement with VoIP Probe. Detailed specifications are provided in separate documents and templates are provided to the convenience of the implementation team. After parameterization has finished, the probe run is started using the run method. Call case execution may take some time. After the call case completed, a number of metrics is accessible via the VoIP Probe API. A normal probe run causes 25+ metrics. Most probably, only a few metrics are relevant for the particular test case. The HP VuGen script allows to choose relevant metrics and to transfer only these ones to BAC. Some templates are provided to give developers a quick start. ADVENAGE GmbH Page 3

4 2 General Concept 2 General Concept VoIP Probe is parameterized and started via function calls from a HP VueGen scipt (type C VUser ). VoIP Probe supports HP Business Availability Center via HP Business Process Monitor and HP VuGen. Support is enabled through a shared library/dll being loaded on request. This file declares VoIP Probe support functions. The usual call flow to use VoIP Probe is: load DLL library "adv_voipprobe.dll". call adv_voipprobe_init with parameters explained below. This returns a pointer to the probe instance. call adv_voipprobe_run to execute measurement. check with adv_voipprobe_has_metrics for metrics. retrieve metrics with adv_voipprobe_get_metric and optionally error information with adv_voipprobe_get_error_info. destroy probe instance with adv_voipprobe_end. optionally use adv_voipprobe_options_init and adv_voipprobe_add_option to hand over additional options, e.g. to enable additional reporting path or enable SNMP support. Supported systems are Windows and Linux. ADVENAGE GmbH Page 4

5 3 Functions & Parameters 3 Functions & Parameters This section describes the functions provided by the VuGen extension adv_voipprobe. They allow to parameterize VoIP Probe, to run the probe and to retrieve metrics from the probe. Functions and parameters are declared in the include file adv_voipprobe.h. It is found on Windows systems in the installation directory of VoIP Probe, usually C:\Program Files\VoIP Probe or on UNIX in /opt/voipprobe. 3.1 adv_voipprobe_init void* adv_voipprobe_init ( char * calling_party, char * called_party, char * phoneno, int call_duration, char * answer_call, char * cli, int timeout, void * options ) Function to create VoIP probe object instance. Parameters handed over define probe behavior. calling_party is ptr to zero terminated C-string defining the calling party (CgP) as URL string. Valid URL strings include: [remote:<host>[:<port>] ]sip://[<login>[:<password>]@]<server>[:<port>] [remote:<host>[:<port>] ]h323://[<login>[:<password>]@]<server>[:<port>] [remote:<host>[:<port>] ]diva://<line device>:<own number> [remote:<host>[:<port>] ]gsm://<com-port>[:<pin>] [remote:<host>[:<port>] ]gsm://imei:<imei>[:<pin>] [remote:<host>[:<port>] ]pstn://<com-port> Additional extensions allow for protocol related additional features. For SIP and H.323 calling parties, the URL string may be extended by /stun=<stunserver>:<port> This enables STUN functionality for the particular party. Ports are optional. If not set, the default ports for the particular protocol will be used. The default SIP port is 5060, the default localport is 5060, the default STUN port is The 'bind=' and 'stun=' part are also optional. If the bind part is omitted, the first LAN interface of the system will be used. The address can also be specified as network part of an IP address, e. g. ' '. The probe searches then for a LAN interface in this network. This is useful if DHCP is used on the probe host. called_party SIP server and STUN server can be given as domain names. In this case a DNS lookup is done to find the correct IP addresses and ports. is ptr to zero terminated C-string defining the called party (CdP) as URL string. Valid URL strings include: [remote:<host>[:<port>] ]sip://[<login>[:<password>]@]<server>[:<port>] [remote:<host>[:<port>] ]h323://[<login>[:<password>]@]<server>[:<port>] ADVENAGE GmbH Page 5

6 3 Functions & Parameters [remote:<host>[:<port>] ]diva://<line device>:<own number> [remote:<host>[:<port>] ]gsm://<com-port>[:<pin>] [remote:<host>[:<port>] ]gsm://imei:<imei>[:<pin>] [remote:<host>[:<port>] ]pstn://<com-port> Additional extensions allow for protocol related additional features. For SIP and H.323 calling parties, the URL string may be extended by /stun=<stunserver>:<port> This enables STUN functionality for the particular party. Ports are optional. If not set, the default ports for the particular protocol will be used. The default SIP port is 5060, the default local port is 5060, the default STUN port is The 'bind=' and 'stun=' part are also optional. If the bind part is omitted, the first LAN interface of the system will be used. The address can also be specified as network part of an IP address, e. g. ' '. The probe searches then for a LAN interface in this network. This is useful if DHCP is used on the probe host. SIP server and STUN server can be given as domain names. In this case a DNS lookup is done to find the correct IP addresses and ports. phoneno is ptr to zero terminated C-string defining the number to dial/call for the calling party. If no phone number is given (empty string or zero pointer), a pure registration cycle is carried out and results are reported. call_duration is the integer value of the requested call duration in seconds. Must be smaller than timeout. answer_call is ptr to zero terminated C-string defining, whether the call shall be answered or not. If the ptr is 0, this means the call shall be answered. If the ptr is!= 0, the string value defines the behavior: "yes" means the call shall be answered. "true" means the call shall be answered. "no" means the call shall not be answered. "false" means the call shall not be answered. cli defines the caller line identification to check for as ptr to zero terminated C- string. If the ptr is 0, this means the CLI shall not be checked. If the ptr is!= 0, the string value defines the CLI to check. The CLI to check may contain wildcards, e.g. "* " matches " " as well as " ". If the CLI is specified and the displayed CLI of the incoming call does not match this parameter, the measurement fails (availability becomes 0). The CLI may contain the following special characters:? means exactly one arbitrary character * means any number (including zero) of arbitrary characters. Example: To check for a certain CLI regardless of the presentation of the national prefix specify * This will match as well as timeout is probe timeout in seconds. Must exceed call_duration. After this time interval, VoIP probe will stop measurement automatically. Typical values are starting with 60 seconds and are ranging to 300 seconds. options is optional pointer to options object instance. shall be set to zero, if not used. handle to VoIP probe object. In case of failures the handle returned may be zero. This handle is to be handed over to adv_voipprobe_run adv_voipprobe_has_metrics ADVENAGE GmbH Page 6

7 3 Functions & Parameters adv_voipprobe_get_metric adv_voipprobe_get_error_info adv_voipprobe_end 3.2 adv_voipprobe_run void adv_voipprobe_run ( void * p ) Function to run VoIP Probe object instance. This function actually carries out VoIP probe measurements in distributed environment. Execution time may be significant and is limited only by timeout parameter to adv_probe_init. p is handle to VoIP probe object obtained before with adv_voipprobe_init. Nothing 3.3 adv_voipprobe_has_metrics int adv_voipprobe_has_metrics ( void * p) Function to check for availability or VoIP Probe metrics. This function queries a VoIP probe object instance for availability of metrics. p is handle to VoIP probe object obtained before with adv_voipprobe_init. 0 if no metrics are available. 1 if metrics are available. 3.4 adv_voipprobe_get_metric double adv_voipprobe_get_metric ( void * p, char* metric_name ) Function to retrieve VoIP Probe metrics. This function queries a VoIP probe object instance for metrics by name. ADVENAGE GmbH Page 7

8 3 Functions & Parameters p metric_name is handle to VoIP probe object obtained before with adv_voipprobe_init. is ptr to zero terminated C-string containing name of the metric to be retrieved. Metric names are provided in the following section. Metric value as double according to further definitions. 3.5 adv_voipprobe_get_error_info char* adv_voipprobe_get_error_info ( void * p ) Function to retrieve error information as string from current VoIP probe object instance. p is handle to VoIP probe object obtained before with adv_voipprobe_init. ptr to zero terminated C-string containing error information message. 3.6 adv_voipprobe_end void adv_voipprobe_end ( void * p ) Function to destroy VoIP probe object instance. p is handle to VoIP probe object to be destroyed and obtained before with adv_voipprobe_init. Nothing 3.7 adv_voipprobe_options_init void* adv_voipprobe_options_init ( char * option_name, char * option_value ) Function to create an options object instance for VoIP Probe. Initial option may be handed over. option_name is ptr to zero terminated C-string containing option name. ADVENAGE GmbH Page 8

9 4 Metrics option_value is ptr to zero terminated C-string containing option value. handle to options object instance. This handle needs to be handed over to adv_voipprobe_add_option adv_voipprobe_options_end adv_voipprobe_init 3.8 adv_voipprobe_add_option void adv_voipprobe_add_option ( void * p, char * option_name, char * option_value ) Function to add additional options to options object instance. p is the handle to the options object instance created with adv_voipprobe_options_init. option_name is ptr to zero terminated C-string containing option name. option_value is ptr to zero terminated C-string containing option value. Nothing 3.9 adv_voipprobe_options_end void adv_voipprobe_options_end ( void * p ) Function to destroy options object instance. p is the handle to the options object instance to be destroyed. Nothing 4 Metrics Metrics measured by VoIP Probe and provided to HP Business Availability Center via HP Business Process Monitor: ADVENAGE GmbH Page 9

10 4 Metrics Name BPM Metric Type Unit Description Name Availability availability Long - Availability of the service can be 0 or 1. 0 means service is not available, 1 means service is available. Result code result_code Long - Result of the measurement. 0 means success. 1 means error (service unavailability). Basically this metric is similar to Availability, but Result Code matches better with BPM/BAC requirements. Registration registration_code Long - Result of the registration. 0 means success, 1 means Code failure. A failed registration does not cause the overall availability to become 0. Registration registration_time Double Seconds Time between first registration request and registration Time confirmation or terminal registration reject. Dial Time dial_time Double Seconds Time between call initiation started at the calling party side and ring indicator received at the called party side. In terms of ISUP this is the time between IAM request and ACM request. In terms of SIP this is the time between the initial INVITE request and the provisional replies Ringing (180) or Session Progress (183). If the called party is not a probe, the calling party determines the initial call setup time as time between INVITE request and reception of the provisional reply 180 or 183 at the calling party side. Alert Time alert_time Double Seconds Time between start of alerting (ringing) and call connection. In terms of ISUP this is the time between ACM and ANM. In terms of SIP this is the time between the provisional replies Ringing (180) or Session Progress and call set up completion (200 OK/ACK). Setup Time setup_time Double Seconds Time required for call initiation. Comprises Dial Time and Alert Time. Call Time call_time Double Seconds Duration of the call, i.e. the time the call is connected. Hang up Time Response Time hangup_time Double Seconds Time required for the hang up to finish. In terms of ISUP this is the time between REL and RLC. In terms of SIP it is the time between BYE and 200 OK. response_time Double Seconds Time elapsed between dialing started and call ended. In ISUP terms this is the time between IAM and RLC. In SIP terms the time between initial INVITE and final BYE/200 OK. It comprises Setup Time, Call Time and Hang Up Time. CLI Ok cli_ok Double 0 or 1 Flag indicating if the expected CLI has been sent to the B party (CdP). 1 means CLI matches expected value, 0 means a CLI mismatch. CLI Ko cli_ko Double 0 or 1 Flag indicating if the expected CLI has been sent to the B party (CdP). 0 means CLI matches expected value, 1 means a CLI mismatch. Inverse CLI Ok value, allows easier triggering of alerts in BAC. MOS CdP mos_cdp Double 0-5 Mean Opinion Score (Voice Quality) Calculated by the called party. Only if receiver is VoIP endpoint. Optional feature, requires separate license. RFC Jitter CdP Maximum Jitter CdP rfc_jitter_cdp Double Seconds Variance of the RTP data packet inter-arrival time according to RFC 3550 in ms for called party. Available for VoIP B tails only. max_jitter_cdp Double Seconds Maximum variance of the RTP data packet inter-arrival time according to RFC 3550 in ms for called party. Available for VoIP B tails only. loss_cdp Double Percent Packet loss in percent for the called party. Available for VoIP B tails only. rtt_cdp Double Seconds Round trip time for RTCP sender reports according to RFC 3550 in ms for called party Packet Loss CdP Round trip time CdP Delay CdP delay_cdp Double Seconds Packet delay measured on RTCP level according to RFC3550 for called party. Available for VoIP to VoIP calls only. MOS CgP mos_cgp Double 0-5 Mean Opinion Score (Voice Quality) Calculated by the calling party. Only if receiver is VoIP endpoint. Optional feature, requires separate license. ADVENAGE GmbH Page 10

11 4 Metrics RFC Jitter CgP Maximum Jitter CgP rfc_jitter_cgp Double Seconds Variance of the RTP data packet inter-arrival time according to RFC 3550 in ms for calling party. Available for VoIP B tails only. max_jitter_cgp Double Seconds Maximum variance of the RTP data packet inter-arrival time according to RFC 3550 in ms for calling party. Available for VoIP B tails only. loss_cgp Double Percent Packet loss in percent for the calling party. Available for VoIP B tails only. rtt_cgp Double Seconds Round trip time for RTCP sender reports according to RFC 3550 in ms for calling party Packet Loss CgP Round trip time CgP Delay CgP delay_cgp Double Seconds Packet delay measured on RTCP level according to RFC3550 for calling party. Available for VoIP to VoIP calls only. The diagram below (Figure 1: Sequence Diagram of Measurement) depicts the metrics in the context of the sequence diagram of a VoIP probe measurement: Figure 1: Sequence Diagram of Measurement The diagram below (Figure 2: Sequence Diagram for Registration) depicts registration of the calling party at the registrar: ADVENAGE GmbH Page 11

12 5 Advanced Topics Figure 2: Sequence Diagram for Registration 5 Advanced Topics 5.1 License VoIP probe requires a license from ADVENAGE to run. The license file can be requested via sales@advenage.com. VoIP Probe is searching for valid license files in the current directory, the directory from which the DLL is loaded (assuming default installation path, this C:\Program Files\VoIP Probe (Windows) or /opt/voipprobe/bin (Linux)), the installation directory of VoIP Probe, or in case of an OVIS installation - the OVIS probes directory. If no valid license could be found, measurements fail with the error information no valid license found and additional information is logged to the log file of VoIP Probe. 5.2 Logging VoIP Probe keeps its own log file supporting log rotation and varying log levels. Log files are written by default to the file C:\Program Files\VoIP Probe\log\voipprobe.log (Windows, assuming default installation paths) or /opt/voipprobe/var/voipprobe.log (Linux, assuming default installation paths). Default log-level is Info (6). It may be changed via the VoIP Probe options. 5.3 Tracing VoIP Probe maintains telco style traces for all calls reporting call events on a per call base. Trace files are created locally and may be transferred to a central repository using FTP or FTPS. Default filename conventions may be overridden by options. 5.4 SNMP Unavailability of the service monitored can be reported by VoIP Probe directly via SNMP as trap to one or several SNMP targets. This feature is enabled via VoIP Probe options. 5.5 PESQ/MOS PESQ/MOS analysis is an optional feature of VoIP Probe. To enable it, a special licenses is necessary. After the license has been installed, PESQ/MOS values are reported automatically. Until the license is installed, PESQ/MOS metrics are always 0.0. ADVENAGE GmbH Page 12

13 6 Examples 6 Examples 6.1 SIP call from and to one VoIP Probe This is one of the examples distributed with VoIP Probe. The VuGen source code for this example is part of the distribution and found in the examples directory Call Case Description This call case is a SIP call from a SIP user agent A to a SIP user agent B over an IP network via a SIP registrar and SIP proxy server. The call case is depicted (in parts) by the figure below: A HP Business Process Monitor is running on a computer system linked to a HP BAC system. The HP BPM runs VoIP Probe with two user agents A and B. First step of the probe operation is to register both user agents with the registrar over an IP network. After the registration completed, A invites B to a call and the call is proceeding until the call duration is exceeded. Afterwards, the call is released, metrics are calculated and reported via BPM to BAC Implementation Typical BPM test-case implementations depend on HP VuGen scripts. The figure below depicts the implementation o this scenario as VuGen script comprising the sections vuser_init, Action and vuser_end. #include "C:/Programme/VoIP Probe/adv_voipprobe.h" vuser_init() { lr_load_dll ("C:/Programme/VoIP Probe/adv_voipprobe.dll"); return 0; } Action() { void * probe; void *options; options = adv_voipprobe_options_init ("loglevel","11"); /* set log level to tracing */ probe = adv_voipprobe_init ( "sip://a:secret@ :5060", /* calling party */ "sip://b:secret@ :5060/bind=:5080", /* called party */ "21", /* phoneno to dial */ 15, /* requested call duration in seconds */ "", /* Answer call?*/ "", /* CLI to check */ 60, /* probe timeout in seconds */ options); if (probe) { adv_voipprobe_run (probe); if (adv_voipprobe_has_metrics(probe) && adv_voipprobe_get_metric (probe,"availability") > 0.0) { lr_set_transaction ("voip_registration_time", adv_voipprobe_get_metric (probe,"registration_time"), LR_PASS); lr_set_transaction ("voip_dial_time", adv_voipprobe_get_metric (probe,"dial_time"), LR_PASS); ADVENAGE GmbH Page 13

14 6 Examples lr_set_transaction ("voip_alert_time", adv_voipprobe_get_metric (probe,"alert_time"), LR_PASS); lr_set_transaction ("voip_setup_time", adv_voipprobe_get_metric (probe,"setup_time"), LR_PASS); lr_set_transaction ("voip_call_time", adv_voipprobe_get_metric (probe,"call_time"), LR_PASS); lr_set_transaction ("voip_hangup_time", adv_voipprobe_get_metric (probe,"hangup_time"), LR_PASS); lr_set_transaction ("voip_response_time", adv_voipprobe_get_metric (probe,"response_time"), LR_PASS); lr_set_transaction ("voip_cli_ko", adv_voipprobe_get_metric (probe,"cli_ko"), LR_PASS); lr_set_transaction ("voip_mos_cdp", adv_voipprobe_get_metric (probe,"mos_cdp"), LR_PASS); lr_set_transaction ("voip_rfc_jitter_cdp", adv_voipprobe_get_metric (probe,"rfc_jitter_cdp"), LR_PASS); lr_set_transaction ("voip_max_jitter_cdp", adv_voipprobe_get_metric (probe,"max_jitter_cdp"), LR_PASS); lr_set_transaction ("voip_loss_cdp", adv_voipprobe_get_metric (probe,"loss_cdp"), LR_PASS); lr_set_transaction ("voip_rtt_cdp", adv_voipprobe_get_metric (probe,"rtt_cdp"), LR_PASS); lr_set_transaction ("voip_delay_cdp", adv_voipprobe_get_metric (probe,"delay_cdp"), LR_PASS); lr_set_transaction ("voip_mos_cgp", adv_voipprobe_get_metric (probe,"mos_cgp"), LR_PASS); lr_set_transaction ("voip_rfc_jitter_cgp", adv_voipprobe_get_metric (probe,"rfc_jitter_cgp"), LR_PASS); lr_set_transaction ("voip_max_jitter_cgp", adv_voipprobe_get_metric (probe,"max_jitter_cgp"), LR_PASS); lr_set_transaction ("voip_loss_cgp", adv_voipprobe_get_metric (probe,"loss_cgp"), LR_PASS); lr_set_transaction ("voip_rtt_cgp", adv_voipprobe_get_metric (probe,"rtt_cgp"), LR_PASS); lr_set_transaction ("voip_delay_cgp", adv_voipprobe_get_metric (probe,"delay_cgp"), LR_PASS); } else { lr_fail_trans_with_error ("VoIP Probe failed: %s", adv_voipprobe_get_error_info (probe)); lr_set_transaction ("voip_response", adv_voipprobe_get_metric (probe,"response_time"), LR_FAIL); } } adv_voipprobe_end (probe); adv_voipprobe_options_end(options); return 0; } vuser_end() { return 0; } This example transfers almost any metrics to BAC. In real-world applications, you will probably focus on a few metric values. ADVENAGE GmbH Page 14

Voice over IP Probe! for Network Operators and! Internet Service Providers

Voice over IP Probe! for Network Operators and! Internet Service Providers Voice over IP Probe! for Network Operators and! Internet Service Providers Product Presentation September 2011 2011 ADVENAGE GmbH Agenda Voice over IP Probe Key Facts VoIP Probe in a Nutshell Use Cases

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

Chapter 10 Session Initiation Protocol. Prof. Yuh-Shyan Chen Department of Computer Science and Information Engineering National Taipei University

Chapter 10 Session Initiation Protocol. Prof. Yuh-Shyan Chen Department of Computer Science and Information Engineering National Taipei University Chapter 10 Session Initiation Protocol Prof. Yuh-Shyan Chen Department of Computer Science and Information Engineering National Taipei University Outline 12.1 An Overview of SIP 12.2 SIP-based GPRS Push

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

IxLoad: Advanced VoIP

IxLoad: Advanced VoIP IxLoad: Advanced VoIP IxLoad in a typical configuration simulating SIP endpoints Aptixia IxLoad VoIP is the perfect tool for functional, performance, and stability testing of SIPbased voice over IP (VoIP)

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

Technical Configuration Notes

Technical Configuration Notes MITEL SIPCoE Technical Configuration Notes Configure Inn-Phone SIP Phone for use with MCD SIP CoE NOTICE The information contained in this document is believed to be accurate in all respects but is not

More information

Creating your own service profile for SJphone

Creating your own service profile for SJphone SJ Labs, Inc. 2005 All rights reserved SJphone is a registered trademark. No part of this document may be copied, altered, or transferred to, any other media without written, explicit consent from SJ Labs

More information

Interoperability Test Plan for International Voice services (Release 6) May 2014

Interoperability Test Plan for International Voice services (Release 6) May 2014 INTERNATIONAL INTERCONNECTION FORUM FOR SERVICES OVER IP (i3 FORUM) Workstream Technical Aspects Workstream Operations Interoperability Test Plan for International Voice services (Release 6) May 2014 Interoperability

More information

Feature and Technical

Feature and Technical BlackBerry Mobile Voice System for SIP Gateways and the Avaya Aura Session Manager Version: 5.3 Feature and Technical Overview Published: 2013-06-19 SWD-20130619135120555 Contents 1 Overview...4 2 Features...5

More information

SIP : Session Initiation Protocol

SIP : Session Initiation Protocol : Session Initiation Protocol EFORT http://www.efort.com (Session Initiation Protocol) as defined in IETF RFC 3261 is a multimedia signaling protocol used for multimedia session establishment, modification

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

NAT TCP SIP ALG Support

NAT TCP SIP ALG Support The feature allows embedded messages of the Session Initiation Protocol (SIP) passing through a device that is configured with Network Address Translation (NAT) to be translated and encoded back to the

More information

Technical Configuration Notes

Technical Configuration Notes MITEL SIP CoE Technical Configuration Notes Configure MCD for use with OpenIP SIP Trunking service SIP CoE 11-4940-00186 NOTICE The information contained in this document is believed to be accurate in

More information

Thank you for purchasing this Panasonic product. Please read this manual carefully before using this product and save this manual for future use.

Thank you for purchasing this Panasonic product. Please read this manual carefully before using this product and save this manual for future use. Smart Desk Phone Model No. KX-UT670 Thank you for purchasing this Panasonic product. Please read this manual carefully before using this product and save this manual for future use. KX-UT670: Software

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

This guide provides detailed information on how to configure and use server redundancy on Yealink IP phones.

This guide provides detailed information on how to configure and use server redundancy on Yealink IP phones. This guide provides detailed information on how to configure and use server redundancy on Yealink IP phones. The information applies to Yealink SIP-T28P, SIP-T26P, SIP-T22P, SIP-T20P, SIP-T21P, SIP-T19P,

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

P160S SIP Phone Quick User Guide

P160S SIP Phone Quick User Guide P160S SIP Phone Quick User Guide Version 2.2 TABLE OF CONTENTS 1.0 INTRODUCTION... 1 2.0 PACKAGE CONTENT... 1 3.0 LIST OF FIGURES... 2 4.0 SUMMARY OF KEY FUNCTIONS... 3 5.0 CONNECTING THE IP PHONE... 4

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

VOIP-211RS/210RS/220RS/440S. SIP VoIP Router. User s Guide

VOIP-211RS/210RS/220RS/440S. SIP VoIP Router. User s Guide VOIP-211RS/210RS/220RS/440S SIP VoIP Router User s Guide Trademarks Contents are subject to revise without prior notice. All trademarks belong to their respective owners. FCC Warning This equipment has

More information

Provisioning and configuring the SIP Spider

Provisioning and configuring the SIP Spider Provisioning and configuring the SIP Spider Administrator Guide Table of Contents 1. Introduction... 3 2. Manual Provisioning... 4 3. Automatic Provisioning... 5 3.1 Concept... 5 3.2 Preparing the configuration

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

NetComm V90 VoIP Phone Quick Start Guide Draft Release 0.1

NetComm V90 VoIP Phone Quick Start Guide Draft Release 0.1 NetComm V90 VoIP Phone Quick Start Guide Draft Release 0.1 Copyright NetComm Ltd Overview NetComm V90 SIP VoIP Phone User Guide Table of Contents Overview... 3 V90 VoIP Phone Specification...4 Shipping

More information

Configuring SIP Trunk Failover in AOS

Configuring SIP Trunk Failover in AOS 6AOSCG0023-29A October 2011 Configuration Guide Configuring SIP Trunk Failover in AOS This configuration guide describes the configuration and implementation of Session Initiation Protocol (SIP) trunk

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

Technical Bulletin 43565 Using Polycom SoundPoint IP and Polycom SoundStation IP Phones with Asterisk

Technical Bulletin 43565 Using Polycom SoundPoint IP and Polycom SoundStation IP Phones with Asterisk Technical Bulletin 43565 Using Polycom SoundPoint IP and Polycom SoundStation IP Phones with Asterisk Introduction This document provides introductory information on how to use Polycom SoundPoint IP phones

More information

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

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

More information

MITEL SIP CoE. Technical. Configuration Notes. Configure the Mitel 3300 MCD 4.1 for use with Paetec Broadworks Softswitch. SIP CoE 08-4940-00035

MITEL SIP CoE. Technical. Configuration Notes. Configure the Mitel 3300 MCD 4.1 for use with Paetec Broadworks Softswitch. SIP CoE 08-4940-00035 MITEL SIP CoE Technical Configuration Notes Configure the Mitel 3300 MCD 4.1 for use with Broadworks Softswitch SIP CoE 08-4940-00035 NOTICE The information contained in this document is believed to be

More information

Configuration Notes 0215

Configuration Notes 0215 Mediatrix Digital and Analog VoIP Gateways DNS SRV Configuration for a Redundant Server Solution (SIP) Introduction... 2 Deployment Scenario... 2 DNS SRV (RFC 2782)... 3 Microsoft Server Configuration...

More information

159.334 Computer Networks. Voice over IP (VoIP) Professor Richard Harris School of Engineering and Advanced Technology (SEAT)

159.334 Computer Networks. Voice over IP (VoIP) Professor Richard Harris School of Engineering and Advanced Technology (SEAT) Voice over IP (VoIP) Professor Richard Harris School of Engineering and Advanced Technology (SEAT) Presentation Outline Basic IP phone set up The SIP protocol Computer Networks - 1/2 Learning Objectives

More information

International Telecommunication Union. Common VoIP Metrics. Alan Clark. CEO, Telchemy

International Telecommunication Union. Common VoIP Metrics. Alan Clark. CEO, Telchemy International Telecommunication Union Common VoIP Metrics Alan Clark CEO, Telchemy Workshop on End-to-End Quality of Service.What is it? How do we get it? Geneva, 1-3 October 2003 Summary ITU-T o Typical

More information

DPH-140S SIP Phone Quick User Guide

DPH-140S SIP Phone Quick User Guide DPH-140S SIP Phone Quick User Guide Version 1.0 TABLE OF CONTENTS 1.0 INTRODUCTION... 1 2.0 PACKAGE CONTENT... 1 3.0 LIST OF FIGURES... 2 4.0 SUMMARY OF KEY FUNCTIONS... 3 5.0 CONNECTING THE IP PHONE...

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

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

CiscoWorks Internetwork Performance Monitor 4.0

CiscoWorks Internetwork Performance Monitor 4.0 CiscoWorks Internetwork Performance Monitor 4.0 Product Overview The CiscoWorks Internetwork Performance Monitor (IPM) is a network response-time and availability troubleshooting application. Included

More information

KX-UT113/KX-UT123 KX-UT133/KX-UT136 KX-UT248

KX-UT113/KX-UT123 KX-UT133/KX-UT136 KX-UT248 Model No. SIP Phone KX-UT113/KX-UT123 KX-UT133/KX-UT136 KX-UT248 Thank you for purchasing this Panasonic product. Please read this manual carefully before using this product and save this manual

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

MITEL SIP CoE. Technical. Configuration Notes. Configure Ascom i62 phones for use with MiVoice Office. SIP CoE 14-4940-00310

MITEL SIP CoE. Technical. Configuration Notes. Configure Ascom i62 phones for use with MiVoice Office. SIP CoE 14-4940-00310 MITEL SIP CoE Technical Configuration Notes Configure Ascom i62 phones for use with MiVoice Office SIP CoE 14-4940-00310 NOTICE The information contained in this document is believed to be accurate in

More information

This guide provides detailed information on how to configure and use server redundancy on Yealink IP phones.

This guide provides detailed information on how to configure and use server redundancy on Yealink IP phones. This guide provides detailed information on how to configure and use server redundancy on Yealink IP phones. The information applies to Yealink IP phones running firmware version 71 or later. Server redundancy

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 IPM to Measure Network Performance

Using IPM to Measure Network Performance CHAPTER 3 Using IPM to Measure Network Performance This chapter provides details on using IPM to measure latency, jitter, availability, packet loss, and errors. It includes the following sections: Measuring

More information

SIP SOFTPHONE SDK Apple MAC Desktop OS

SIP SOFTPHONE SDK Apple MAC Desktop OS SIP SOFTPHONE SDK Apple MAC Desktop OS TECHNICAL DOCUMENTATION VERSION 1.4 November 2014 Page 1 of 69 CONTENTS INTRODUCTION AND QUICK START... 4 EXPORTED FUNCTIONS... 5 InitializeEx()... 5 RegisterToProxy()...

More information

Session Initiation Protocol Gateway Call Flows and Compliance Information

Session Initiation Protocol Gateway Call Flows and Compliance Information Session Initiation Protocol Gateway Call Flows and Compliance Information Corporate Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000

More information

TALKSWITCH VOIP NETWORK TROUBLESHOOTING GUIDE

TALKSWITCH VOIP NETWORK TROUBLESHOOTING GUIDE TALKSWITCH DOCUMENTATION TALKSWITCH VOIP NETWORK TROUBLESHOOTING GUIDE RELEASE 3.24 CT.TS005.008001 ANSWERS WITH INTELLIGENCE COPYRIGHT INFORMATION TalkSwitch. Copyright 2006. All Rights Reserved. Reproduction,

More information

NQA Technology White Paper

NQA Technology White Paper NQA Technology White Paper Keywords: NQA, test, probe, collaboration, scheduling Abstract: Network Quality Analyzer (NQA) is a network performance probe and statistics technology used to collect statistics

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

VoIP Interkonnektion Test Specification

VoIP Interkonnektion Test Specification VoIP Interkonnektion Specification Ausgabedatum 310.2015 Ersetzt Version - Gültig ab 012015 Vertrag Vertrag betreffend Verbindung von VoIP Fernmeldeanlagen und -diensten Gültig ab 012015 1/21 Table of

More information

VoIP Router TA G81022MS User Guide

VoIP Router TA G81022MS User Guide VoIP Router TA G81022MS User Guide V. 1.0 TABLE OF CONTENTS TABLE OF CONTENTS...2 1.0 INTRODUCTION...1 2.0 PACKAGE CONTENT...1 3.0 SUMMARY OF LED & CONNECTOR DESCRIPTION...2 3.1 THE FRONT LEDS...2 3.2

More information

Application Notes for Configuring Broadvox SIPTrunking with Avaya IP Office R9.0 - Issue 1.0

Application Notes for Configuring Broadvox SIPTrunking with Avaya IP Office R9.0 - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Broadvox SIPTrunking with Avaya IP Office R9.0 - Issue 1.0 Abstract These Application Notes describe the procedures for configuring

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

Automated Load Testing for SIP Applications

Automated Load Testing for SIP Applications Automated Load Testing for SIP Applications Serge Kruppa Director of Engineering Astricon 2008, Glendale AZ About LiveVox Leading provider of hosted VoIP dialing solutions, with integrated ACD and IVR,

More information

Managing ^ VoIP Quality and Performance

Managing ^ VoIP Quality and Performance Unified, Cloud Based, Virtualized, Hosted Managing ^ VoIP Quality and Performance Alan Clark, CEO Telchemy alan.d.clark@telchemy.com 1 Outline VoIP Performance Issues Current state of the art VoIP performance

More information

Administrator Guide KX-TGP550. SIP Cordless Phone. www.voicesonic.com Phone: 877.289.2829. Model No. KX-TGP500

Administrator Guide KX-TGP550. SIP Cordless Phone. www.voicesonic.com Phone: 877.289.2829. Model No. KX-TGP500 www.voicesonic.com Phone: 877.289.2829 Administrator Guide SIP Cordless Phone Model No. KX-TGP500 KX-TGP550 Thank you for purchasing a Panasonic product. Please read this guide before using the unit and

More information

SMTP-32 Library. Simple Mail Transfer Protocol Dynamic Link Library for Microsoft Windows. Version 5.2

SMTP-32 Library. Simple Mail Transfer Protocol Dynamic Link Library for Microsoft Windows. Version 5.2 SMTP-32 Library Simple Mail Transfer Protocol Dynamic Link Library for Microsoft Windows Version 5.2 Copyright 1994-2003 by Distinct Corporation All rights reserved Table of Contents 1 Overview... 5 1.1

More information

Mediatrix 3000 with Asterisk June 22, 2011

Mediatrix 3000 with Asterisk June 22, 2011 Mediatrix 3000 with Asterisk June 22, 2011 Proprietary 2011 Media5 Corporation Table of Contents Introduction... 3 Network Topology... 3 Equipment Detail... 3 Configuration of the Fax Extension... 4 Configuration

More information

Chapter 2 PSTN and VoIP Services Context

Chapter 2 PSTN and VoIP Services Context Chapter 2 PSTN and VoIP Services Context 2.1 SS7 and PSTN Services Context 2.1.1 PSTN Architecture During the 1990s, the telecommunication industries provided various PSTN services to the subscribers using

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

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

Wave SIP Trunk Configuration Guide FOR BROADVOX

Wave SIP Trunk Configuration Guide FOR BROADVOX Wave SIP Trunk Configuration Guide FOR BROADVOX Last updated 1/7/2014 Contents Overview... 1 Special Notes... 1 Before you begin... 1 Required SIP trunk provisioning and configuration information... 1

More information

VoIP Server Reference

VoIP Server Reference IceWarp Server VoIP Server Reference Version 10 Printed on 12 August, 2009 i Contents VoIP Service 1 Introduction... 1 V10 New Features... 3 SIP REFER... 3 SIP Call Transfer Agent Settings... 3 NAT traversal

More information

Programming Manual for Virtual SIP Trunk Card

Programming Manual for Virtual SIP Trunk Card Pure IP-PBX Programming Manual for Virtual SIP Trunk Card Model No. KX-TDE100/KX-TDE200 Thank you for purchasing a Panasonic Pure IP-PBX. Please read this manual carefully before using this product and

More information

Aastra480i SIP Phone Distributor's Guide

Aastra480i SIP Phone Distributor's Guide Aastra480i SIP Phone Distributor's Guide Revision Revised By Date Initial Artashes Ter-Vardanyan 16 Mar 2005 Quadro variants: valid for SW-version: tested with SW version: Filename: Aastra480iSIPDistributorGuide.doc

More information

VOP1224-61. Support Notes. 24-port POTS/VOIP module for IES-1000. Version V3.53(BBT.0) July 2008 Edition 1

VOP1224-61. Support Notes. 24-port POTS/VOIP module for IES-1000. Version V3.53(BBT.0) July 2008 Edition 1 VOP1224-61 24-port POTS/VOIP module for IES-1000 Support Notes Version V3.53(BBT.0) July 2008 Edition 1 Index INTRODUCTION... 1 WHAT IS VOIP... 1 WHAT IS SIP... 1 SIP User Agent:... 1 SIP Server:... 1

More information

IP Office 7.0 and BCM 6.0 SIP Interoperability Configuration Notes

IP Office 7.0 and BCM 6.0 SIP Interoperability Configuration Notes IP Office 7.0 and BCM 6.0 SIP Interoperability Configuration Notes Abstract: This document provides information on how to configure a network solution with IP Office 7.0 and BCM 6.0 using SIP trunks. 2011

More information

Hosted VoIP Phone System. Admin Portal User Guide for. Call Center Administration

Hosted VoIP Phone System. Admin Portal User Guide for. Call Center Administration Hosted VoIP Phone System Admin Portal User Guide for Call Center Administration Contents Table of Figures... 4 1 About this Guide... 6 2 Accessing the Hosted VoIP Phone System Administration Portal...

More information

Technical Manual 3CX Phone System for Windows

Technical Manual 3CX Phone System for Windows Technical Manual 3CX Phone System for Windows This technical manual is intended for those who wish to troubleshoot issues encountered with implementing 3CX Phone System. It is not intended to replace the

More information

MITEL SIP CoE. Technical. Configuration Notes. Configure MCD 6.X for use with babytel SIP trunks. SIP CoE 13-4940-00266

MITEL SIP CoE. Technical. Configuration Notes. Configure MCD 6.X for use with babytel SIP trunks. SIP CoE 13-4940-00266 MITEL SIP CoE Technical Configuration Notes Configure MCD 6.X for use with babytel SIP trunks SIP CoE 13-4940-00266 NOTICE The information contained in this document is believed to be accurate in all respects

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

MITEL SIP CoE Technical. Configuration Note. Configure MCD for use with Thinktel SIP Trunking Service. SIP CoE 12-4940-00197

MITEL SIP CoE Technical. Configuration Note. Configure MCD for use with Thinktel SIP Trunking Service. SIP CoE 12-4940-00197 MITEL SIP CoE Technical Configuration Note Configure MCD for use with SIP Trunking Service SIP CoE NOTICE The information contained in this document is believed to be accurate in all respects but is not

More information

Configuring Interoperability between Avaya IP Office and Avaya Business Communication Manager

Configuring Interoperability between Avaya IP Office and Avaya Business Communication Manager Configuring Interoperability between Avaya IP Office and Avaya Business Issue 01.01 Contents 1.0 Introduction... 3 1.1 Supported Features... 3 1.2 Network Diagram... 6 1.3 Supported Phones... 6 1.4 Software

More information

Note: these functions are available if service provider supports them.

Note: these functions are available if service provider supports them. Key Feature New Feature Remote Maintenance: phone can be diagnosed and configured by remote. Zero Config: automated provisioning and software upgrading even through firewall/nat. Centralized Management:

More information

Installation Manual for Zoom V3 Hardware and Vontronix VoIP Phone Service

Installation Manual for Zoom V3 Hardware and Vontronix VoIP Phone Service Installation Manual for Zoom V3 Hardware and Vontronix VoIP Phone Service Step 1 Go to www.vontronix.com and click on the link to sign up a new VoIP customer. This will send you to a form to fill out.

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

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

Communication Manager configuration for BLU-103

Communication Manager configuration for BLU-103 Avaya Aura Communication Manager configuration for BLU-103 Application Notes for Configuring BLU-103 VoIP Solution with Avaya Aura Session Manager 6.3 and Avaya Aura Communication Manager 6.3 10653 South

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

NF1Adv VOIP Setup Guide (for Pennytel)

NF1Adv VOIP Setup Guide (for Pennytel) NF1Adv VOIP Setup Guide (for Pennytel) Configuring your NF1Adv for VOIP Service The following steps will take you through the process of setting up your VOIP connection. Step 1: Checking Computer Network

More information

SIP Trunking Application Notes V1.3

SIP Trunking Application Notes V1.3 SIP Trunking Application Notes V1.3 Publication Information SAMSUNG TELECOMMUNICATIONS AMERICA reserves the right without prior notice to revise information in this publication for any reason. SAMSUNG

More information

Application Notes for Revolabs FLX UC 1000 with Avaya IP Office - Issue 0.1

Application Notes for Revolabs FLX UC 1000 with Avaya IP Office - Issue 0.1 Avaya Solution & Interoperability Test Lab Application Notes for Revolabs FLX UC 1000 with Avaya IP Office - Issue 0.1 Abstract These Application Notes describe the configuration steps required to integrate

More information

Troubleshooting Tools to Diagnose or Report a Problem February 23, 2012

Troubleshooting Tools to Diagnose or Report a Problem February 23, 2012 Troubleshooting Tools to Diagnose or Report a Problem February 23, 2012 Proprietary 2012 Media5 Corporation Scope of this Document This Technical Bulletin aims to inform the reader on the troubleshooting

More information

How To Use Wineyeq Vip Call Monitor And Protocol Analyzer

How To Use Wineyeq Vip Call Monitor And Protocol Analyzer WinEyeQ User s Guide Copyright 2002-2011 Touchstone Technologies, Inc. 1500 Industry Road, Suite H Hatfield, PA 19440 Tel: 267-222-8687 Fax: 267-222-8697 www.touchstone-inc.com Table of Contents Introduction...

More information

This specification this document to get an official version of this User Network Interface Specification

This specification this document to get an official version of this User Network Interface Specification This specification describes the situation of the Proximus network and services. It will be subject to modifications for corrections or when the network or the services will be modified. Please take into

More information

How to Configure the NEC SV8100 for use with Integra Telecom SIP Solutions

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

More information

WEB CONFIGURATION. Configuring and monitoring your VIP-101T from web browser. PLANET VIP-101T Web Configuration Guide

WEB CONFIGURATION. Configuring and monitoring your VIP-101T from web browser. PLANET VIP-101T Web Configuration Guide WEB CONFIGURATION Configuring and monitoring your VIP-101T from web browser The VIP-101T integrates a web-based graphical user interface that can cover most configurations and machine status monitoring.

More information

ZULTYS. Optimum Business Trunking and the Zultys MX250 IP PBX Configuration Guide

ZULTYS. Optimum Business Trunking and the Zultys MX250 IP PBX Configuration Guide ZULTYS Optimum Business Trunking and the Zultys MX250 IP PBX Configuration Guide ZULTYS Table of Contents 1. Overview 2. SIP Trunk Adaptor Set-up Instructions 3. Additional Set-up Information 4. International

More information

Session Initiation Protocol (SIP)

Session Initiation Protocol (SIP) Session Initiation Protocol (SIP) Introduction A powerful alternative to H.323 More flexible, simpler Easier to implement Advanced features Better suited to the support of intelligent user devices A part

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

V101 SIP VoIP Telephone Adaptor User Manual V1.1m

V101 SIP VoIP Telephone Adaptor User Manual V1.1m V101 SIP VoIP Telephone Adaptor User Manual V1.1m Quick Guide Step 1: Broadband (ADSL/Cable Modem) Connections for V101 A. Connect V101 LAN port to ADSL NAT Router as the following connection. B. Connect

More information

White paper. SIP An introduction

White paper. SIP An introduction White paper An introduction Table of contents 1 Introducing 3 2 How does it work? 3 3 Inside a normal call 4 4 DTMF sending commands in sip calls 6 5 Complex environments and higher security 6 6 Summary

More information

MITEL SIP CoE. Technical. Configuration Note. Configure MCD for use with Intelepeer Service provider SIP Trunking. SIP CoE 14-4940-00313

MITEL SIP CoE. Technical. Configuration Note. Configure MCD for use with Intelepeer Service provider SIP Trunking. SIP CoE 14-4940-00313 MITEL SIP CoE Technical Configuration Note Configure MCD for use with Intelepeer Service provider SIP Trunking SIP CoE 14-4940-00313 NOTICE The information contained in this document is believed to be

More information

Voice over IP. Demonstration 1: VoIP Protocols. Network Environment

Voice over IP. Demonstration 1: VoIP Protocols. Network Environment Voice over IP Demonstration 1: VoIP Protocols Network Environment We use two Windows workstations from the production network, both with OpenPhone application (figure 1). The OpenH.323 project has developed

More information

Session Initiation Protocol and Services

Session Initiation Protocol and Services Session Initiation Protocol and Services Harish Gokul Govindaraju School of Electrical Engineering, KTH Royal Institute of Technology, Haninge, Stockholm, Sweden Abstract This paper discusses about the

More information

Technical Configuration Notes

Technical Configuration Notes MITEL SIPCoE Technical Configuration Notes Configure the MCD 6.0 for use with the Commend SIP Doorphone SIP CoE 13-4940-00251 NOTICE The information contained in this document is believed to be accurate

More information

SIP Trunking Service Configuration Guide for Time Warner Cable Business Class

SIP Trunking Service Configuration Guide for Time Warner Cable Business Class SIP Trunking Service Configuration Guide for Time Warner Cable Business Class NDA-31669 Issue 1.0 NEC Corporation of America reserves the right to change the specifications, functions, or features at

More information

Application Notes for Configuring Broadvox SIP Trunking with Avaya IP Office Release 8.0 Issue 1.0

Application Notes for Configuring Broadvox SIP Trunking with Avaya IP Office Release 8.0 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Broadvox SIP Trunking with Avaya IP Office Release 8.0 Issue 1.0 Abstract These Application Notes describe the steps necessary

More information

IP101 VoIP Phone. User Manual

IP101 VoIP Phone. User Manual IP101 VoIP Phone User Manual 1 Introduction...3 1.1 Hardware Overview...3 1.2 Software Overview...4 2 Setup the IP Phone system by using keypad...4 2.1 Keypad Description...4 2.2 Keypad Function and Setting

More information

EE4607 Session Initiation Protocol

EE4607 Session Initiation Protocol EE4607 Session Initiation Protocol Michael Barry michael.barry@ul.ie william.kent@ul.ie Outline of Lecture IP Telephony the need for SIP Session Initiation Protocol Addressing SIP Methods/Responses Functional

More information

VoIP Overview for Operators. Gene Lew VP, Advanced Services NANOG 34 Seattle, Washington May 2005

VoIP Overview for Operators. Gene Lew VP, Advanced Services NANOG 34 Seattle, Washington May 2005 VoIP Overview for Operators Gene Lew VP, Advanced Services NANOG 34 Seattle, Washington May 2005 VoIP World IP networks enable creation of virtual phone companies Potential for anyone to be their own phone

More information