Red Hat Linux 9 DHCP Server Configuration for Avaya 4600 Series IP Telephones - Issue 1.0

Size: px
Start display at page:

Download "Red Hat Linux 9 DHCP Server Configuration for Avaya 4600 Series IP Telephones - Issue 1.0"

Transcription

1 Avaya Solution and Interoperability Test Lab Red Hat Linux 9 DHCP Server Configuration for Avaya 4600 Series IP Telephones - Issue 1.0 Abstract These Application Notes describe how to configure a Red Hat Linux 9 DHCP Server for Avaya 4600 Series IP Telephones. Dynamic Host Configuration Protocol (DHCP) provides a means by which configuration parameters can be automatically assigned to 4600 Series IP Telephones on a TCP/IP network, thus removing the need to individually assign and maintain IP addresses and other parameters for each IP telephone on the network. These Application Notes were written at the request of the Avaya Hosted Solutions team. 1 of 10

2 1. Introduction These Application Notes describe how to configure a Red Hat Linux 9 DHCP Server for Avaya 4600 Series IP Telephones. DHCP is a network protocol that provides a means by which configuration parameters can be automatically assigned to 4600 Series IP Telephones on a TCP/IP network, thus removing the need to individually assign and maintain IP addresses and other parameters for each IP Telephone on the network. The sample configuration depicted in Figure 1 uses separate Virtual Local Area Networks (VLANs) for voice and data traffic. As a result, the DHCP configuration presented in these Application Notes supports scenarios where the switch ports may connect to a computer, an IP telephone, or an IP telephone with an attached computer. IEEE 802.1Q tagged VLAN ID 120 was used for the IP telephones, and untagged VLAN ID 130 was used for computers, whether standalone, or attached to an IP Telephone. Figure 1: Red Hat Linux DHCP Server Avaya IP Telephone Configuration 2 of 10

3 The following DHCP server parameters were configured for the endpoints on the native data VLAN: Data endpoints IP address Range ( ) Router IP address ( ) Subnet broadcast IP address ( ) Subnet Mask ( ) L2Q=1 - IEEE 802.1Q trunking L2QVLAN=120 - Voice VLAN The following DHCP server parameters were configured for the Avaya 4600 Series IP Telephones on the voice VLAN: Telephone IP address Range ( ) Router IP address ( ) Subnet broadcast IP address ( ) Subnet Mask ( ) IP address of C-LAN board MCIPADD ( ) Gatekeeper port - MCPORT (Default: 1719) TFTP server IP address TFTPSRVR ( ) The following occurs when an IP telephone is installed (or reset). The IP telephone will initially send an untagged DHCP request. The Avaya P333R switch port is configured with both an untagged VLAN and tagged VLAN for the port. The untagged DHCP request will be associated with the untagged VLAN on the port. The Avaya P333R router interface on that VLAN has IP address When the router interface relays the DHCP request to the configured DHCP server ( ), it will use as the source address. The DHCP server associates this request with the scope and returns a reply with Option 176 string set, instructing the requestor to enable 802.1Q tagging with voice VLAN ID 120. The IP telephone receiving this reply will release the supplied IP address and issue a new DHCP request with VLAN ID 120. This request will be associated with the tagged VLAN on the port. The Avaya P333R interface of this VLAN has IP address and will relay the DHCP request to the DHCP server with this address as the source. The DHCP server associates this address with scope and replies with an IP address from that scope as well as several parameters in the Option 176 string. Computers attached to the Avaya IP telephones issue untagged DHCP requests. These requests will be serviced the same as the initial request from the phone. However, the computer will ignore the Option 176 values specifying a new VLAN. Therefore, no new DHCP request is issued. Note: The Avaya P333R switch and TFTP server configurations are out of the scope of this document. Please consult the appropriate user guides for more information on how to configure these devices. 3 of 10

4 2. Equipment and Software Validated The following hardware and software versions were used for this configuration: Equipment Version Avaya S8700 Media Servers 2.0 Avaya G650 Media Gateway Avaya TN2312BP IPSI Circuit Packs HW03 FW006 Avaya TN799DP C-LAN Circuit Pack HW01 FW009 Avaya TN2302AP MEDPRO Circuit Pack HW03 FW055 Avaya 4620 IP Telephones 1.8 Avaya P333R Switch Internet Software Consortium DHCP Server: Red Hat Linux 9 3.0pl1 TFTP Server: Microsoft Windows 2000 Server (SP3) PCs: Microsoft Windows 2000 Professional (SP3) 4 of 10

5 3. Red Hat Linux 9 DHCP Server Configuration The following Red Hat Linux DHCP server configuration was done through the command line interface (CLI): Note: This configuration assumes that a DHCP server has been previously installed in the Red Hat Linux 9 server. Step Description 1. Log in to the Red Hat Linux 9 server using the username and password with administrative credentials. 2. Check if there is a dhcpd.conf file in the /etc directory. If the file doesn t exist, copy it from the /etc/log.d/conf/services directory to the /etc directory using the command cp /etc/log.d/conf/services/dhcpd.conf /etc. 3. Edit the dhcpd.conf file and comment out the bolded lines as shown below: # $Id: dhcpd.conf,v /10/12 02:08:09 kirk Exp $ ######################################################################## # You can put comments anywhere you want to. They are effective for the # rest of the line. # this is in the format of <name> = <value>. Whitespace at the beginning # and end of the lines is removed. Whitespace before and after the = sign # is removed. Everything is case *insensitive*. # Yes = True = On = 1 # No = False = Off = 0 # Title = "dhcpd" # Which logfile group... # LogFile = messages # Only give lines pertaining to the dhcpd service... # *OnlyService = dhcpd # *RemoveHeaders ######################################################## # This was written and is maintained by: # Kirk Bauer <kirk@kaybee.org> # # Please send all comments, suggestions, bug reports, # etc, to kirk@kaybee.org. ######################################################## 4. Configure the DHCP server to use the ad-hoc dynamic DNS update scheme by adding the command ddns-update-style ad-hoc; to the dhcpd.conf file. 5 of 10

6 Step Description 5. Add the scope information for the voice and data networks to the dhcpd.conf file. The scope information should follow the ad-hoc DNS update scheme command configured in Step 4: ddns-update-style ad-hoc; option option-176 code 176 = string; shared-network data { subnet netmask { option routers ; option broadcast-address ; option option-176 "L2Q=1,L2QVLAN=120"; range ; shared-network voice { subnet netmask { option routers ; option broadcast-address ; option option-176 "MCIPADD= ,MCPORT=1719,TFTPSRVR= "; range ; Save the dhcpd.conf file. 6. Check if there is a dhcpd.leases file in the /var/lib/dhcp directory. If the file doesn t exist, use the touch /var/lib/dhcp/dhcpd.leases command to create it. The DHCP server uses the dhcpd.leases file to store information about current leases. 7. If the Red Hat Linux server has more than one network interface attached to the system, the DHCP server can be configured to only start on one of the interfaces by adding the name of the interface to the list of DHCPDARGS in the /etc/sysconfig/dhcpd file. # Command line options here DHCPDARGS=eth0 Save the /etc/sysconfig/dhcpd file. 8. Use the chkconfig --level 5 dhcpd on command to configure the dhcpd service to run automatically at boot-up time. 9. Start the DHCP server by running the service dhcpd start command. #[root@cvlan1 root]# service dhcpd start Starting dhcpd: OK ] [root@cvlan1 root]# Note: The DHCP server can be started in debug mode using the dhcpd d -f command. 6 of 10

7 4. Verification Steps In the field, the following tests can be performed to verify the Linux DHCP server configuration is operating correctly. Step Description 1. From the Red Hat Linux server, issue the command service dhcpd status to find out if the Linux DHCP server is running. root]# service dhcpd status dhcpd (pid 3613) is running... root]# 2. Reset the Avaya 4600 Series IP Telephones by pressing MUTE (RESET) # while the phones are on-hook and idle. Press # when prompted to Reset Values?. 3. Verify the Avaya IP Telephones are able to obtain an IP address and scope options from the Red Hat Linux DHCP server. The IP telephones should display the following prompt after contacting the C-LAN card specified in the DHCP server scope. Extension= #=OK New= Enter an extension, ending with the # button. The following password prompt is displayed. Password= #=OK Enter the extension s password, ending with the # button. Verify successful registration to Avaya Communication Manager. While the telephones are on-hook and idle, use MUTE (ADDR) 2337 # to verify the Avaya IP Telephone DHCP parameters. 4. Connect PCs to the Avaya IP Telephones and the Avaya P333R switch. Use the ipconfig command to verify the PCs are able to obtain an IP address and scope options from the Red Hat Linux DHCP server. 7 of 10

8 5. From the Red Hat Linux server, issue the command more /var/lib/dhcp/dhcpd.leases to determine which IP addresses have been leased to the Avaya IP Telephones and PCs. The following screen shot shows the output of the dhcpd.leases file after the Avaya IP Telephones and PCs depicted in Figure 1 successfully obtained IP addresses. [root@cvlan1 root]# more /var/lib/dhcp/dhcpd.leases # All times in this file are in UTC (GMT), not your local timezone. This is # not a bug, so please don't ask about it. There is no portable way to # store leases in the local timezone, so please don't request this as a # feature. If this is inconvenient or confusing to you, we sincerely # apologize. Seriously, though - don't ask. # The format of this file is documented in the dhcpd.leases(5) manual page. # This lease file was written by isc-dhcp-v3.0pl1 lease { starts /02/03 15:25:40; ends /02/04 03:25:40; tstp /02/04 03:25:40; binding state active; next binding state free; hardware ethernet 00:04:0d:00:34:c1; lease { starts /02/03 15:30:40; ends /02/04 03:30:40; tstp /02/04 03:30:40; binding state active; next binding state free; hardware ethernet 00:04:0d:00:33:d2; lease { starts /02/03 22:52:07; ends /02/04 10:52:07; binding state active; next binding state free; hardware ethernet 00:06:5b:31:e5:36; uid "\001\000\006[1\3456"; client-hostname "PC1"; lease { starts /02/03 22:54:00; ends /02/04 10:54:00; binding state active; next binding state free; hardware ethernet 00:06:5b:31:d5:9c; uid "\001\000\006[1\325\234"; client-hostname "PC2"; lease { starts /02/03 22:56:00; ends /02/04 10:56:00; binding state active; next binding state free; hardware ethernet 00:06:5b:31:f8:e6; uid "\001\000\006[1\324\223"; client-hostname "PC3"; 8 of 10

9 5. Conclusion These Application Notes provide administrators with the basic steps necessary to configure a Red Hat Linux 9 DHCP Server for Avaya 4600 Series IP Telephones. The steps provided should be helpful for implementing most deployments, but they do not address all possible configuration scenarios. 9 of 10

10 Avaya and the Avaya Logo are trademarks of Avaya Inc. All trademarks identified by and are registered trademarks or trademarks, respectively, of Avaya Inc. All other trademarks are the property of their respective owners. The information provided in these Application Notes is subject to change without notice. The configurations, technical data, and recommendations provided in these Application Notes are believed to be accurate and dependable, but are presented without express or implied warranty. Users are responsible for their application of any products specified in these Application Notes. Please any questions or comments pertaining to these Application Notes along with the full title and filename, located in the lower right corner, directly to the Avaya Solution & Interoperability Test Lab at 10 of 10

Configuring H.323 over Port Network Address Translation (PNAT) for Avaya IP Endpoints using the Avaya SG200 Security Gateway - Issue 1.

Configuring H.323 over Port Network Address Translation (PNAT) for Avaya IP Endpoints using the Avaya SG200 Security Gateway - Issue 1. Configuring H.323 over Port Network Address Translation (PNAT) for Avaya IP Endpoints using the Avaya SG200 Security Gateway - Issue 1.0 Abstract These Application Notes describe how to configure the Avaya

More information

Application Notes for Lucent Technologies VitalQIP DHCP/DNS Management with Avaya IP Telephones and Avaya Communication Manager Issue 1.

Application Notes for Lucent Technologies VitalQIP DHCP/DNS Management with Avaya IP Telephones and Avaya Communication Manager Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for Lucent Technologies VitalQIP DHCP/DNS Management with Avaya IP Telephones and Avaya Communication Manager Issue 1.0 Abstract These Application

More information

How to Configure the Juniper NetScreen 5GT to Support Avaya H.323 IP Telephony Issue 1.0

How to Configure the Juniper NetScreen 5GT to Support Avaya H.323 IP Telephony Issue 1.0 Avaya Solution and Interoperability Test Lab How to Configure the Juniper NetScreen 5GT to Support Avaya H.323 IP Telephony Issue 1.0 Abstract These Application Notes describe how to configure the Juniper

More information

Abstract. MEP; Reviewed: GAK 10/17/2005. Solution & Interoperability Test Lab Application Notes 2005 Avaya Inc. All Rights Reserved.

Abstract. MEP; Reviewed: GAK 10/17/2005. Solution & Interoperability Test Lab Application Notes 2005 Avaya Inc. All Rights Reserved. Configuring Single Instance Rapid Spanning Tree Protocol (RSTP) between an Avaya C360 Converged Switch and HP ProCurve Networking Switches to support Avaya IP Telephony Issue 1.0 Abstract These Application

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Configuring NETGEAR PROSAFE 8-port, 16-port and 24-port switches Supporting Power over Ethernet with Avaya Communication Manager, Avaya one-x Quick Edition G10

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Sample Configuration for using Link Layer Discovery Protocol (LLDP) with Cisco Catalyst 4500 or 3750 Switches for VLAN Assignment for Avaya 9600 and 1600 Series

More information

Application Notes for Integrated Research PROGNOSIS IP Telephony Manager with Avaya Communication Manager - Issue 1.0

Application Notes for Integrated Research PROGNOSIS IP Telephony Manager with Avaya Communication Manager - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Integrated Research PROGNOSIS IP Telephony Manager with Avaya Communication Manager - Issue 1.0 Abstract These Application Notes describe

More information

Configuring the Juniper NetScreen Firewall Security Policies to support Avaya IP Telephony Issue 1.0

Configuring the Juniper NetScreen Firewall Security Policies to support Avaya IP Telephony Issue 1.0 Avaya Solution & Interoperability Test Lab Configuring the Juniper NetScreen Firewall Security Policies to support Avaya IP Telephony Issue 1.0 Abstract These Application Notes describes a procedure for

More information

Configuring Check Point VPN-1/FireWall-1 and SecuRemote Client with Avaya IP Softphone via NAT - Issue 1.0

Configuring Check Point VPN-1/FireWall-1 and SecuRemote Client with Avaya IP Softphone via NAT - Issue 1.0 Configuring Check Point VPN-1/FireWall-1 and SecuRemote Client with Avaya IP Softphone via NAT - Issue 1.0 Abstract Avaya IP Softphone R3 V2.1 now supports H.323 VoIP applications running over different

More information

Application Notes for Codima autoasset with an Avaya Infrastructure - Issue 1.0

Application Notes for Codima autoasset with an Avaya Infrastructure - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Codima autoasset with an Avaya Infrastructure - Issue 1.0 Abstract These Application Notes describe the configuration steps required for

More information

Application Notes for Configuring Alternate Methods of Domain Based Routing for Outbound SIP Calls with the Avaya SIP Trunk Architecture Issue 1.

Application Notes for Configuring Alternate Methods of Domain Based Routing for Outbound SIP Calls with the Avaya SIP Trunk Architecture Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for Configuring Alternate Methods of Domain Based Routing for Outbound SIP Calls with the Avaya SIP Trunk Architecture Issue 1.0 Abstract These

More information

Sample Configuration for Microsoft Firewall and McAfee Desktop Firewall 8.5 to Support Avaya IP Softphone Issue 1.0

Sample Configuration for Microsoft Firewall and McAfee Desktop Firewall 8.5 to Support Avaya IP Softphone Issue 1.0 Avaya Solution & Interoperability Test Lab Sample Configuration for Microsoft Firewall and McAfee Desktop Firewall 8.5 to Support Avaya IP Softphone Issue 1.0 Abstract These Application Notes describe

More information

Application Notes for Configuring Yealink T-22 SIP Phones to interoperate with Avaya IP Office - Issue 1.0

Application Notes for Configuring Yealink T-22 SIP Phones to interoperate with Avaya IP Office - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Yealink T-22 SIP Phones to interoperate with Avaya IP Office - Issue 1.0 Abstract These Application Notes describe the configuration

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Sample Configuration for using Link Layer Discovery Protocol (LLDP) with Cisco Catalyst 4500 or 3750 Switches for VLAN assignment to Avaya 4600 Series IP Telephones

More information

Configuring the Avaya B179 SIP Conference Phone with Avaya Aura Communication Manager and Avaya Aura Session Manager Issue 1.0

Configuring the Avaya B179 SIP Conference Phone with Avaya Aura Communication Manager and Avaya Aura Session Manager Issue 1.0 Avaya Solution & Interoperability Test Lab Configuring the Avaya B179 SIP Conference Phone with Avaya Aura Communication Manager and Avaya Aura Session Manager Issue 1.0 Abstract These Application Notes

More information

Configuring Avaya 1120E, 1140E, 1220 and 1230 IP Deskphones with Avaya IP Office Release 6.1 Issue 1.0

Configuring Avaya 1120E, 1140E, 1220 and 1230 IP Deskphones with Avaya IP Office Release 6.1 Issue 1.0 Avaya Solution & Interoperability Test Lab Configuring Avaya 1120E, 1140E, 1220 and 1230 IP Deskphones with Avaya IP Office Release 6.1 Issue 1.0 Abstract These Application Notes describe a solution comprised

More information

Application Notes for AudioCodes MP-202 Telephone Adaptor with Avaya SIP Enablement Services and Avaya Communication Manager - Issue 1.

Application Notes for AudioCodes MP-202 Telephone Adaptor with Avaya SIP Enablement Services and Avaya Communication Manager - Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for AudioCodes MP-202 Telephone Adaptor with Avaya SIP Enablement Services and Avaya Communication Manager - Issue 1.0 Abstract These Application

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Configuring a Virtual Private Network (VPN) for Avaya IP Office using the Edgewater Networks EdgeMarc 4500 VoIP VPN Appliance - Issue 1.0

More information

Configuring Avaya Aura Messaging R6.1 connectivity with IBM Lotus Notes R8.5 IMAP4 based Email Client using SSL Issue 1.0

Configuring Avaya Aura Messaging R6.1 connectivity with IBM Lotus Notes R8.5 IMAP4 based Email Client using SSL Issue 1.0 Avaya Solution & Interoperability Test Lab Configuring Avaya Aura Messaging R6.1 connectivity with IBM Lotus Notes R8.5 IMAP4 based Email Client using SSL Issue 1.0 Abstract These Application Notes present

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Configuring Voice Message Networking Between Avaya Modular Messaging, Avaya Intuity Audi, and Nortel CallPilot using Avaya Message Networking - Issue 1.0 Abstract

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Configuring a Small to Medium Size Business VoIP and Data Network Solution Consisting of HP ProCurve Networking Switches and an Avaya Telephony

More information

Application Notes for Invision Interaction Recording System Version 5.0 with Avaya Aura Communication Manager Release 6.3 Issue 1.

Application Notes for Invision Interaction Recording System Version 5.0 with Avaya Aura Communication Manager Release 6.3 Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for Invision Interaction Recording System Version 5.0 with Avaya Aura Communication Manager Release 6.3 Issue 1.0 Abstract These Application

More information

Cisco - Configure the 1721 Router for VLANs Using a Switch Module (WIC-4ESW)

Cisco - Configure the 1721 Router for VLANs Using a Switch Module (WIC-4ESW) Page 1 of 20 Configure the 1721 Router for VLANs Using a Switch Module (WIC-4ESW) Document ID: 50036 Contents Introduction Prerequisites Requirements Components Used Network Diagram The Role of Switched

More information

Topic 7 DHCP and NAT. Networking BAsics.

Topic 7 DHCP and NAT. Networking BAsics. Topic 7 DHCP and NAT Networking BAsics. 1 Dynamic Host Configuration Protocol (DHCP) IP address assignment Default Gateway assignment Network services discovery I just booted. What network is this? What

More information

Abstract. These Application Notes provide information for the setup, configuration, and verification of this solution.

Abstract. These Application Notes provide information for the setup, configuration, and verification of this solution. Avaya Solution Interoperability Test Lab Configuring DHCP server Site Specific Option Number for Avaya one-x IP Deskphone Firmware Distribution with Avaya File Server Application MV_IPTel Issue 1.0 Abstract

More information

Application Notes for Microsoft Office Communicator R2 Client integration with Avaya one-x Portal and Intelligent Presence Server - Issue 1.

Application Notes for Microsoft Office Communicator R2 Client integration with Avaya one-x Portal and Intelligent Presence Server - Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for Microsoft Office Communicator R2 Client integration with Avaya one-x Portal and Intelligent Presence Server - Issue 1.0 Abstract These Application

More information

Application Notes for CVT Periscope 3L Call Reporting with Avaya Communication Manager - Issue 1.0

Application Notes for CVT Periscope 3L Call Reporting with Avaya Communication Manager - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for CVT Periscope 3L Call Reporting with Avaya Communication Manager - Issue 1.0 Abstract These Application Notes describe the configuration

More information

Application Notes for Integrating Verint ULTRA9 VoIP Call Recording Service With Avaya Interaction Center - Issue 1.1

Application Notes for Integrating Verint ULTRA9 VoIP Call Recording Service With Avaya Interaction Center - Issue 1.1 Avaya Solution & Interoperability Test Lab Application Notes for Integrating Verint ULTRA9 VoIP Call Recording Service With Avaya Interaction Center - Issue 1.1 Abstract Verint Ultra Intelligent Recording

More information

Configuring Sample Screen Pop Applications with Avaya IP Agent Passing Caller Number, Prompted Digits or User to User Information - Issue 1.

Configuring Sample Screen Pop Applications with Avaya IP Agent Passing Caller Number, Prompted Digits or User to User Information - Issue 1. Avaya Solution & Interoperability Test Lab Configuring Sample Screen Pop Applications with Avaya IP Agent Passing Caller Number, Prompted Digits or User to User Information - Issue 1.0 Abstract Screen

More information

Application Notes for Verint Work Force Management with Avaya IQ Issue 1.0

Application Notes for Verint Work Force Management with Avaya IQ Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Verint Work Force Management with Avaya IQ Issue 1.0 Abstract These Application Notes describe the configuration steps required for Verint

More information

Intel Active Management Technology with System Defense Feature Quick Start Guide

Intel Active Management Technology with System Defense Feature Quick Start Guide Intel Active Management Technology with System Defense Feature Quick Start Guide Introduction...3 Basic Functions... 3 System Requirements... 3 Configuring the Client System...4 Intel Management Engine

More information

Synchronizing Call Center Moves, Adds and Changes between two Avaya Communication Manager ACDs using Consistacom Multi-System Synchronizer - Issue 1.

Synchronizing Call Center Moves, Adds and Changes between two Avaya Communication Manager ACDs using Consistacom Multi-System Synchronizer - Issue 1. Avaya Solution & Interoperability Test Lab Synchronizing Call Center Moves, Adds and Changes between two Avaya Communication Manager ACDs using Consistacom Multi-System Synchronizer - Issue 1.0 Abstract

More information

Configuring Instant Messaging and Presence capability for Avaya IP Agent using Avaya SIP Enablement Services - Issue 1.0

Configuring Instant Messaging and Presence capability for Avaya IP Agent using Avaya SIP Enablement Services - Issue 1.0 Avaya Solution & Interoperability Test Lab Configuring Instant Messaging and Presence capability for Avaya IP Agent using Avaya SIP Enablement Services - Issue 1.0 Abstract These Application Notes describe

More information

802.1X Authentication, Link Layer Discovery Protocol (LLDP), and Avaya IP Telephones

802.1X Authentication, Link Layer Discovery Protocol (LLDP), and Avaya IP Telephones 802.1X Authentication, Link Layer Discovery Protocol (LLDP), and Avaya IP Telephones Abstract The purpose of this document is to discuss 802.1X Authentication and Link Layer Discovery Protocol (LLDP) in

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

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Configuring Enterasys Wireless Access Point 3000 (RBT3K-AG) to Support Avaya IP Office, Avaya IP Wireless Telephones and Avaya Phone Manager

More information

What is VLAN Routing?

What is VLAN Routing? Application Note #38 February 2004 What is VLAN Routing? This Application Notes relates to the following Dell product(s): 6024 and 6024F 33xx Abstract Virtual LANs (VLANs) offer a method of dividing one

More information

Easy Setup Guide for the Sony Network Camera

Easy Setup Guide for the Sony Network Camera -878-191-11 (1) Easy Setup Guide for the Sony Network Camera For setup, a computer running the Microsoft Windows Operating System is required. For monitoring camera images, Microsoft Internet Explorer

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Configuring Tone Software ReliaTel SNMP Management Application with Avaya Communication Manager and Avaya SIP Enablement Services - Issue

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for HP ProCurve Networking Switches connected to an Avaya Telephony Infrastructure in a Multi-Site VoIP and Data Network solution using Avaya

More information

Application Notes for the GN Netcom GN 8120 USB Headset Adapter with Avaya IP Softphone Issue 1.0

Application Notes for the GN Netcom GN 8120 USB Headset Adapter with Avaya IP Softphone Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for the GN Netcom GN 8120 USB Headset Adapter with Avaya IP Softphone Issue 1.0 Abstract These Application Notes describe a compliance-tested

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Extreme Networks Summit X450e-24p Switch with Avaya Communication Manager and Avaya IP Telephones in a Converged VoIP and Data Network -

More information

Networking Guide Redwood Manager 3.0 August 2013

Networking Guide Redwood Manager 3.0 August 2013 Networking Guide Redwood Manager 3.0 August 2013 Table of Contents 1 Introduction... 3 1.1 IP Addresses... 3 1.1.1 Static vs. DHCP... 3 1.2 Required Ports... 4 2 Adding the Redwood Engine to the Network...

More information

TotalCloud Phone System

TotalCloud Phone System TotalCloud Phone System Cisco SF 302-08P PoE VLAN Configuration Guide Note: The below information and configuration is for deployment of the Cbeyond managed switch solution using the Cisco 302 8 port Power

More information

Application Notes for Configuring a SonicWALL Continuous Data Protection (CDP) backup solution with Avaya VoiceMail Pro - Issue 1.

Application Notes for Configuring a SonicWALL Continuous Data Protection (CDP) backup solution with Avaya VoiceMail Pro - Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for Configuring a SonicWALL Continuous Data Protection (CDP) backup solution with Avaya VoiceMail Pro - Issue 1.0 Abstract These Application

More information

VLAN 802.1Q. 1. VLAN Overview. 1. VLAN Overview. 2. VLAN Trunk. 3. Why use VLANs? 4. LAN to LAN communication. 5. Management port

VLAN 802.1Q. 1. VLAN Overview. 1. VLAN Overview. 2. VLAN Trunk. 3. Why use VLANs? 4. LAN to LAN communication. 5. Management port 1. VLAN Overview 2. VLAN Trunk 3. Why use VLANs? 4. LAN to LAN communication 5. Management port 6. Applications 6.1. Application 1 6.2. Application 2 6.3. Application 3 6.4. Application 4 6.5. Application

More information

Application Notes for the Trisys Tapit EX Call Accounting Software with Avaya Communication Manager Issue 1.0

Application Notes for the Trisys Tapit EX Call Accounting Software with Avaya Communication Manager Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for the Trisys Tapit EX Call Accounting Software with Avaya Communication Manager Issue 1.0 Abstract These application notes describe the configuration

More information

Application Notes for Configuring Microsoft Office Communications Server 2007 R2 and Avaya IP Office PSTN Call Routing - Issue 1.0

Application Notes for Configuring Microsoft Office Communications Server 2007 R2 and Avaya IP Office PSTN Call Routing - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Microsoft Office Communications Server 2007 R2 and Avaya IP Office PSTN Call Routing - Issue 1.0 Abstract These Application

More information

Lab 8.5.3 Configuring the PIX Firewall as a DHCP Server

Lab 8.5.3 Configuring the PIX Firewall as a DHCP Server Lab 8.5.3 Configuring the PIX Firewall as a DHCP Server Objective Scenario Estimated Time: 15 minutes Number of Team Members: Two teams with four students per team. In this lab, students will learn the

More information

Using Cisco UC320W with Windows Small Business Server

Using Cisco UC320W with Windows Small Business Server Using Cisco UC320W with Windows Small Business Server This application note explains how to deploy the Cisco UC320W in a Windows Small Business Server environment. Contents This document includes the following

More information

Computer Networks I Laboratory Exercise 1

Computer Networks I Laboratory Exercise 1 Computer Networks I Laboratory Exercise 1 The lab is divided into two parts where the first part is a basic PC network TCP/IP configuration and connection to the Internet. The second part is building a

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for HP ProCurve Switches connected to an Avaya Telephony Infrastructure using Avaya IP Office in a Converged VoIP and Data Network - Issue 1.0

More information

Deployment Guide: Transparent Mode

Deployment Guide: Transparent Mode Deployment Guide: Transparent Mode March 15, 2007 Deployment and Task Overview Description Follow the tasks in this guide to deploy the appliance as a transparent-firewall device on your network. This

More information

Application Notes for Configuring QuesCom 400 IP/GSM Gateway with Avaya IP Office using H.323 trunks Issue 1.0

Application Notes for Configuring QuesCom 400 IP/GSM Gateway with Avaya IP Office using H.323 trunks Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring QuesCom 400 IP/GSM Gateway with Avaya IP Office using H.323 trunks Issue 1.0 Abstract These Application Notes describe the configuration

More information

ProSafe Plus Switch Utility

ProSafe Plus Switch Utility ProSafe Plus Switch Utility User Guide 350 East Plumeria Drive San Jose, CA 95134 USA December 2012 202-10524-05 NETGEAR, Inc. All rights reserved No part of this publication maybe reproduced, transmitted,

More information

Lab 9.1.1 Organizing CCENT Objectives by OSI Layer

Lab 9.1.1 Organizing CCENT Objectives by OSI Layer Lab 9.1.1 Organizing CCENT Objectives by OSI Layer Objectives Organize the CCENT objectives by which layer or layers they address. Background / Preparation In this lab, you associate the objectives of

More information

Setting up VPN Access for Remote Diagnostics Support

Setting up VPN Access for Remote Diagnostics Support Setting up VPN Access for Remote Diagnostics Support D. R. Joseph, Inc. supports both dial-up and Internet access for remote support of 3GIBC1 and LF-Sizer control systems. This document describes how

More information

Application Notes for GN Netcom Jabra GN 9330 USB Headset and Jabra PC Suite with Avaya one-x Communicator and Avaya one-x Agent - Issue 1.

Application Notes for GN Netcom Jabra GN 9330 USB Headset and Jabra PC Suite with Avaya one-x Communicator and Avaya one-x Agent - Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for GN Netcom Jabra GN 9330 USB Headset and Jabra PC Suite with Avaya one-x Communicator and Avaya one-x Agent - Issue 1.0 Abstract These Application

More information

LevelOne VOI-9000. H.323 VoIP Gatekeeper. User Manual

LevelOne VOI-9000. H.323 VoIP Gatekeeper. User Manual LevelOne VOI-9000 H.323 VoIP Gatekeeper User Manual Quick Guide Step 1: Broadband (ADSL/Cable Modem) Connections For VOI-9000 A. Connect VOI-9000 RJ45 LAN port to Router/ADSL as one of the following connections.

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for IPC Unigy with Avaya Modular Messaging 5.2 and Avaya Aura SIP Enablement Services 5.2.1 in a Centralized Messaging Environment using QSIG

More information

Application Notes for Resource Software International Revolution Web Call Accounting with Avaya Quick Edition Issue 1.0

Application Notes for Resource Software International Revolution Web Call Accounting with Avaya Quick Edition Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Resource Software International Revolution Web Call Accounting with Avaya Quick Edition Issue 1.0 Abstract These Application Notes describe

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

Lab - Using IOS CLI with Switch MAC Address Tables

Lab - Using IOS CLI with Switch MAC Address Tables Topology Addressing Table Objectives Device Interface IP Address Subnet Mask Default Gateway R1 G0/1 192.168.1.1 255.255.255.0 N/A S1 VLAN 1 192.168.1.11 255.255.255.0 192.168.1.1 S2 VLAN 1 192.168.1.12

More information

Configuring an IPSec Tunnel between a Cisco 3825 Router and the Cisco VPN Client to Support Avaya IP Softphone Issue 1.0

Configuring an IPSec Tunnel between a Cisco 3825 Router and the Cisco VPN Client to Support Avaya IP Softphone Issue 1.0 Avaya Solution & Interoperability Test Lab Configuring an IPSec Tunnel between a Cisco 3825 Router and the Cisco VPN Client to Support Avaya IP Softphone Issue 1.0 Abstract These Application Notes describe

More information

Application Notes for Avaya Aura Conferencing 7.2 and Radvision SCOPIA Elite MCU Issue 1.0

Application Notes for Avaya Aura Conferencing 7.2 and Radvision SCOPIA Elite MCU Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Avaya Aura Conferencing 7.2 and Radvision SCOPIA Elite MCU Issue 1.0 Abstract These Application Notes describe the configuration of Avaya

More information

How to add a SIP server How to register a handset

How to add a SIP server How to register a handset How to add a SIP server How to register a handset Contents Contents... 1 Hardware required equipment... 2 Software required equipment... 3 Add server... 3 Register handset to base... 7 1 of 12 Hardware

More information

SUSE Linux Enterprise Server 11 SP2 for UEFI Clients

SUSE Linux Enterprise Server 11 SP2 for UEFI Clients Best Practices White Paper Enterprise Linux SUSE Linux Enterprise Server 11 SP2 for UEFI Clients Table of Contents page SUSE Linux Enterprise Server 11 SP2 and PXE Boot for UEFI Clients... 2 UEFI IPv4

More information

Application Notes for the Ingate SIParator with Avaya Converged Communication Server (CCS) - Issue 1.0

Application Notes for the Ingate SIParator with Avaya Converged Communication Server (CCS) - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for the Ingate SIParator with Avaya Converged Communication Server (CCS) - Issue 1.0 Abstract These Application Notes describe the configuration

More information

Cisco Configuration Professional Quick Start Guide

Cisco Configuration Professional Quick Start Guide Cisco Configuration Professional Quick Start Guide April 29, 2011 This document explains how to start using Cisco Configuration Professional Express (Cisco CP Express) and Cisco Configuration Professional

More information

Interoperability between Avaya IP phones and ProCurve switches

Interoperability between Avaya IP phones and ProCurve switches An HP ProCurve Networking Application Note Interoperability between Avaya IP phones and ProCurve switches Contents 1. Introduction... 3 2. Architecture... 3 3. Checking PoE compatibility... 3 4. Configuring

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Configuring Cisco 3020 VPN Concentrator to Provide WebVPN Access by Using Cisco Secure Socket Layer (SSL) VPN Client to Support Avaya IP Softphone Issue 1.0 Abstract

More information

Application Notes for Spectralink 84-Series Wireless Telephones and Avaya Aura Communication Manager and Avaya Aura Session Manager Issue 1.

Application Notes for Spectralink 84-Series Wireless Telephones and Avaya Aura Communication Manager and Avaya Aura Session Manager Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for Spectralink 84-Series Wireless Telephones and Avaya Aura Communication Manager and Avaya Aura Session Manager Issue 1.0 Abstract These Application

More information

PC/POLL SYSTEMS Version 7 Polling SPS2000 Cash Register TCP/IP Communications

PC/POLL SYSTEMS Version 7 Polling SPS2000 Cash Register TCP/IP Communications PC/POLL SYSTEMS Version 7 Polling SPS2000 Cash Register TCP/IP Communications PC/POLL SYSTEMS supports native TCP/IP polling for the SPS2000 cash register. It is recommended users have the register updated

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for GN Netcom Jabra GO 6430 and LINK 350 USB Bluetooth Adapter with Jabra PC Suite, Avaya one-x Communicator and Avaya one-x Agent - Issue 1.0

More information

Application Notes for TANDBERG Video Conference Solution with Avaya Meeting Exchange - Issue 1.0

Application Notes for TANDBERG Video Conference Solution with Avaya Meeting Exchange - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for TANDBERG Video Conference Solution with Avaya Meeting Exchange - Issue 1.0 Abstract These Application Notes describe the configuration steps

More information

Application Notes for Jabra PC Suite and Jabra Evolve 65 Headset with Avaya one-x Agent - Issue 1.0

Application Notes for Jabra PC Suite and Jabra Evolve 65 Headset with Avaya one-x Agent - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Jabra PC Suite and Jabra Evolve 65 Headset with Avaya one-x Agent - Issue 1.0 Abstract These Application Notes describe the configuration

More information

Application Notes for Resource Software International Shadow Real-Time Dashboard 2.3 with Avaya IP Office Server Edition 9.1 Issue 1.

Application Notes for Resource Software International Shadow Real-Time Dashboard 2.3 with Avaya IP Office Server Edition 9.1 Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for Resource Software International Shadow Real-Time Dashboard 2.3 with Avaya IP Office Server Edition 9.1 Issue 1.0 Abstract These Application

More information

Application Notes for configuring NICE IEX Workforce Management R4.6 with Avaya Proactive Contact R5.0.1 Issue 1.0

Application Notes for configuring NICE IEX Workforce Management R4.6 with Avaya Proactive Contact R5.0.1 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for configuring NICE IEX Workforce Management R4.6 with Avaya Proactive Contact R5.0.1 Issue 1.0 Abstract These Application Notes describe the

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

Application Notes for GN Netcom Jabra LINK 280 USB Adapter and Jabra PC Suite with Avaya one-x Communicator and Avaya one-x Agent - Issue 1.

Application Notes for GN Netcom Jabra LINK 280 USB Adapter and Jabra PC Suite with Avaya one-x Communicator and Avaya one-x Agent - Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for GN Netcom Jabra LINK 280 USB Adapter and Jabra PC Suite with Avaya one-x Communicator and Avaya one-x Agent - Issue 1.0 Abstract These Application

More information

Application Notes for GN Netcom Jabra PRO 9470 headset and Jabra PC Suite with Avaya one-x Communicator and Avaya one-x Agent - Issue 1.

Application Notes for GN Netcom Jabra PRO 9470 headset and Jabra PC Suite with Avaya one-x Communicator and Avaya one-x Agent - Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for GN Netcom Jabra PRO 9470 headset and Jabra PC Suite with Avaya one-x Communicator and Avaya one-x Agent - Issue 1.0 Abstract These Application

More information

Application Notes for Calabrio Workforce Management Release 9.2(1) SR3 with Avaya Aura Contact Center Release 6.4 Issue 1.0

Application Notes for Calabrio Workforce Management Release 9.2(1) SR3 with Avaya Aura Contact Center Release 6.4 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Calabrio Workforce Management Release 9.2(1) SR3 with Avaya Aura Contact Center Release 6.4 Issue 1.0 Abstract These Application Notes describe

More information

DHCP Server. Heng Sovannarith heng_sovannarith@yahoo.com

DHCP Server. Heng Sovannarith heng_sovannarith@yahoo.com DHCP Server Heng Sovannarith heng_sovannarith@yahoo.com Introduction Dynamic Host Configuration Protocol (DHCP) automatically assigns IP addresses and other network configuration information to computers

More information

Configuring the Edgewater 4550 for use with the Bluestone Hosted PBX

Configuring the Edgewater 4550 for use with the Bluestone Hosted PBX Configuring the Edgewater 4550 for use with the Bluestone Hosted PBX NOTE: This is an advisory document to be used as an aid to resellers and IT staff looking to use the Edgewater 4550 in conjunction with

More information

Management Software. User s Guide AT-S84. For the AT-9000/24 Layer 2 Gigabit Ethernet Switch. Version 1.1. 613-000368 Rev. B

Management Software. User s Guide AT-S84. For the AT-9000/24 Layer 2 Gigabit Ethernet Switch. Version 1.1. 613-000368 Rev. B Management Software AT-S84 User s Guide For the AT-9000/24 Layer 2 Gigabit Ethernet Switch Version 1.1 613-000368 Rev. B Copyright 2006 Allied Telesyn, Inc. All rights reserved. No part of this publication

More information

Application Notes for Configuring Dorado Software Redcell Enterprise Bundle using SNMP with Avaya Communication Manager - Issue 1.

Application Notes for Configuring Dorado Software Redcell Enterprise Bundle using SNMP with Avaya Communication Manager - Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for Configuring Dorado Software Redcell Enterprise Bundle using SNMP with Avaya Communication Manager - Issue 1.0 Abstract These Application

More information

Configuring Switch Ports and VLAN Interfaces for the Cisco ASA 5505 Adaptive Security Appliance

Configuring Switch Ports and VLAN Interfaces for the Cisco ASA 5505 Adaptive Security Appliance CHAPTER 5 Configuring Switch Ports and VLAN Interfaces for the Cisco ASA 5505 Adaptive Security Appliance This chapter describes how to configure the switch ports and VLAN interfaces of the ASA 5505 adaptive

More information

Configuring Avaya Aura Communication Manager and Avaya Call Management System Release 16.3 with Avaya Contact Center Control Manager Issue 1.

Configuring Avaya Aura Communication Manager and Avaya Call Management System Release 16.3 with Avaya Contact Center Control Manager Issue 1. Avaya Solution Interoperability Test Lab Configuring Avaya Aura Communication Manager and Avaya Call Management System Release 16.3 with Avaya Contact Center Control Manager Issue 1.0 Abstract These Application

More information

Manual. IP Sensor and Watchdog IPSW2210. I P S W 2 2 1 0 M a n u a l P a g e 1. Relay Output. Power input. 12VDC adapter LED Indicators. 2 Dry.

Manual. IP Sensor and Watchdog IPSW2210. I P S W 2 2 1 0 M a n u a l P a g e 1. Relay Output. Power input. 12VDC adapter LED Indicators. 2 Dry. IP Sensor and Watchdog IPSW2210 Manual Relay Output Power input 12VDC adapter LED Indicators 1 wire 2 Dry Output Green : Power Yellow: Link temperature & humidity contact inputs LED indicator sensor input

More information

Application Notes for snom 3x0 VoIP Phones with Avaya IP Office Issue 1.0

Application Notes for snom 3x0 VoIP Phones with Avaya IP Office Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for snom 3x0 VoIP Phones with Avaya IP Office Issue 1.0 Abstract These Application Notes describe the configuration steps required for snom

More information

BASIC ANALYSIS OF TCP/IP NETWORKS

BASIC ANALYSIS OF TCP/IP NETWORKS BASIC ANALYSIS OF TCP/IP NETWORKS INTRODUCTION Communication analysis provides powerful tool for maintenance, performance monitoring, attack detection, and problems fixing in computer networks. Today networks

More information

MS Windows DHCP Server Configuration

MS Windows DHCP Server Configuration MS Windows DHCP Server Configuration Abstract This document describes how to configure option 43 on a Microsoft Windows 2000/2003 DHCP server. This information may be used in an Aruba Networks solution

More information

Application Notes for Biamp AudiaFLEX VoIP-2 with Avaya Aura Communication Manager Using Avaya Aura SIP Enablement Services Issue 1.

Application Notes for Biamp AudiaFLEX VoIP-2 with Avaya Aura Communication Manager Using Avaya Aura SIP Enablement Services Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for Biamp AudiaFLEX VoIP-2 with Avaya Aura Communication Manager Using Avaya Aura SIP Enablement Services Issue 1.0 Abstract These Application

More information

Quick Start for Network Agent. 5-Step Quick Start. What is Network Agent?

Quick Start for Network Agent. 5-Step Quick Start. What is Network Agent? What is Network Agent? Websense Network Agent software monitors all internet traffic on the machines that you assign to it. Network Agent filters HTTP traffic and more than 70 other popular internet protocols,

More information

Abstract. SZ; Reviewed: WCH 6/18/2003. Solution & Interoperability Test Lab Application Notes 2003 Avaya Inc. All Rights Reserved.

Abstract. SZ; Reviewed: WCH 6/18/2003. Solution & Interoperability Test Lab Application Notes 2003 Avaya Inc. All Rights Reserved. A Sample VPN Tunnel Configuration Using Cisco 3640 and 7100 Routers for Avaya Media Servers and Media Gateways running Avaya MultiVantage Software - Issue 1.1 Abstract These Application Notes outline the

More information

CCT vs. CCENT Skill Set Comparison

CCT vs. CCENT Skill Set Comparison Operation of IP Data Networks Recognize the purpose and functions of various network devices such as Routers, Switches, Bridges and Hubs Select the components required to meet a given network specification

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

1 PC to WX64 direction connection with crossover cable or hub/switch

1 PC to WX64 direction connection with crossover cable or hub/switch 1 PC to WX64 direction connection with crossover cable or hub/switch If a network is not available, or if it is desired to keep the WX64 and PC(s) completely separated from other computers, a simple network

More information

Application Notes for P&W Solutions Sweet Series with Avaya Call Management System using Open Database Connectivity (ODBC) Interface Issue 1.

Application Notes for P&W Solutions Sweet Series with Avaya Call Management System using Open Database Connectivity (ODBC) Interface Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for P&W Solutions Sweet Series with Avaya Call Management System using Open Database Connectivity (ODBC) Interface Issue 1.0 Abstract These

More information

Sample Configuration for H.323 Trunk between Avaya IP Office and Cisco Unified Communications Manager 7.0 Issue 1.0

Sample Configuration for H.323 Trunk between Avaya IP Office and Cisco Unified Communications Manager 7.0 Issue 1.0 Avaya Solution & Interoperability Test Lab Sample Configuration for H.323 Trunk between Avaya IP Office and Cisco Unified Communications Manager 7.0 Issue 1.0 Abstract These Application Notes describe

More information