Posts tagged AVAYA

Avaya VPN Client Release 10.04.109 for Windows 7

Avaya has released version 10.04.109 of their VPN client that supports both 32-bit and 64-bit versions of Windows 7. This single client supports the following operating systems (in both 32-bit and 64-bit versions);

  • Windows XP
  • Windows Vista
  • Windows 7

The following issues have been identified and resolved according the the release notes;

  • wi00875648 - Certificates with UTF-8 encoded issuer name can’t be selected.
  • wi00875671 - Sometimes users might get “Unhandled exception” error when trying to select a certificate or display its details.
  • wi00875676 - Pre-application launch command line not saved properly.

In the past I attempted to host the client files and I quickly ate through my 40 GB/monthly quota on my host. I’m going to attempt to-do this again however I will most likely change the URL from time to time to guarantee that people aren’t hot-linking to it.

I may also restrict access to only ARIN based IP addresses, again I’ll have to see how things go the second time around.

Cheers!

Updated Saturday May 7, 2011

I’ve added MD5 hashes for both the files.

Updated Tuesday September 20, 2011

Avaya has release version 10.05.100 which can be found here, I’m going to close comments on this post.

Where are all the Avaya technical configuration guides?

6

I get a lot of questions (actually two or three in just the past 20 posts on the forums) asking where people can find more technical information about a specific product or configuration concerning Avaya (formerly Nortel) data products such as the Ethernet Routing Switch or their telephony products and specifically the legacy Nortel IP phones.

Thankfully Avaya has done something that I truly applaud them for, something that Nortel always had issues with either allowing or executing (not completely sure which it was). What am I talking about you ask? Avaya allows Google to index their support website with all those juicy technical configuration guides. You only need to ask Google to show you the light;

http://www.google.com/search?q=technical%20configuration%20guide%20site%3Asupport.avaya.com&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a&source=hp&channel=np

You can either enter the following query or you can click on the link above;

technical configuration guide site:support.avaya.com

So while Greg over at Etherealmind is complaining about Cisco’s website I’ve found my way around Avaya’s website thanks in no small part to Google. I’m not sure why Greg doesn’t just use Google himself?

Cheers!

Cisco Router as a DHCP Server for Avaya IP Phones

4

Here’s a sample configuration detailing how to configure a Cisco router as a DHCP server for Avaya (formerly Nortel) IP phones including the Avaya/Nortel specific DHCP options 128 and 191. I thought I would share this information with the Nortel/Avaya users in case they are utilizing (or wish to utilize) the DHCP server functionality built-in to the Cisco IOS platform. The key is to configure the Cisco router to reply with the correct DHCP vendor options so the IP phone will boot properly.

!
no aaa new-model
!
ip routing
ip subnet-zero
no ip source-route
no ip finger
no ip domain-lookup
ip cef
!
!
!### 1) SET UP EXCLUSIONS FOR STATIC IP DEVICES ###
!### START ADDRESS (SPACE) END ADDRESS ###
!
!### VLAN2 DATA EXCLUSIONS ###
ip dhcp excluded-address 10.10.10.1 10.10.10.30
ip dhcp excluded-address 10.10.10.200 10.10.10.254
!
!### VLAN701 VOICE EXCLUSIONS ###
ip dhcp excluded-address 192.168.1.1 192.168.1.30
ip dhcp excluded-address 192.168.1.200 192.168.1.254
!
!### VLAN702 VOICE EXCLUSIONS ###
ip dhcp excluded-address 192.168.2.1 192.168.2.30
ip dhcp excluded-address 192.168.2.200 192.168.2.254
!
!
!### 2) SET UP DHCP FOR FOR DATA VLAN/SUBNET ###
!
ip dhcp pool Nortel_Data_VLAN2
network 10.10.10.0 255.255.255.0
default-router 10.10.10.1
option 128 ascii Nortel-i2004-A,192.168.1.21:4100,1,10.
option 191 ascii VLAN-A:701+702.
!
!
!### 3) SET UP DHCP FOR FOR VOIP-PHONES VLAN/SUBNET ###
!
!
ip dhcp pool Nortel_Voice_VLAN701
network 192.168.1.0 255.255.255.0
default-router 192.168.1.1
option 128 ascii Nortel-i2004-A,192.168.1.21:4100,1,10.
option 191 ascii VLAN-A:701+702.
!
!
ip dhcp pool Nortel_Voice_VLAN702
network 192.168.2.0 255.255.255.0
default-router 192.168.2.1
option 128 ascii Nortel-i2004-A,192.168.1.21:4100,1,10.
option 191 ascii VLAN-A:701+702.
!
!
!
!### 4) SET UP INTERFACES ###
!
!
interface fast 0/0
description ### VLAN TRUNK & ROUTE LINK TO LAN SWITCH ###
no ip address
speed 100
full-duplex
no shutdown
!
!
int fast 0/0.2
desc ### VLAN 2 DATA SUBNET ###
ip add 10.10.10.1 255.255.255.0
no ip red
no ip dir
no shut
!
int fast 0/0.701
desc ### VLAN 701 VOIP PHONES SUBNET ###
ip add 192.168.1.1 255.255.255.0
no ip red
no ip dir
no shut
!
!
int fast 0/0.702
desc ### VLAN 702 VOIP PHONES SUBNET ###
ip add 192.168.2.1 255.255.255.0
no ip dir
no ip red
no shut
!
ip route 0.0.0.0 0.0.0.0 10.10.10.254 name DEFAULT-ROUTE
!

Cheers!
Alex

-Editor, Thanks to Alex for writing this post and allowing me to re-post it here. -Michael

Go to Top