Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


As Avaya Messaging/IX Messaging run on Windows Server it is treated by VSM as a Microsoft Server. Follow these instructions to install the Virsae Machine Proxy Agent and add Avaya Messaging/IX Messaging to VSM as a Microsoft Server.

IX Messaging uses the Windows SNMP Service to send SNMP Traps. You will need to add the SNMP Service to the Windows OS if it is not already installed, and then set the Trap destination to the VSM Collector.

The SNMP Service is added via Windows Roles and Features:

...

Once this service is installed, run services.msc find the SNMP service and right click then select Properties. Select the Traps Tab.

...

In the Community name box, type the case-sensitive community name to which this computer will send trap messages, and then click Add to list.

...

Under Trap destinations, click Add.

you will need to run a command at the command prompt to set the destination for SNMP Traps.

Note

Avaya Messaging only integrates with SNMP version 3 and later.  Earlier versions are not supported.


Avaya Messaging needs to know where to send the alarms.  This is accomplished by executing a command line script that contains the routing information to the SNMP traps listener.  This script needs to be run once each time the server is restarted to reset the routing information.

Enter the following script at the command line on the voice server computer.  On an HA system, run it on each node.

Code Block
ucsnmpconfig.exe trap add --host=IPAddress --user=Username --authpass=authpwd --authtype=auth --privpass=privpwd --privtype=priv --engine=engID

This command adds the trap destination for the SNMP notification application.   Authentication values must match what is configured in the VSM location for SNMP V3 Traps.


Replace the variables as per the table below:

FieldDescription
IPAddressThe IP Address of the VSM Collector
UsernameThe SNMPV3 username administered in VSM
authpwdThe Authorisation Password for the SNMPV3 user administered in VSM
authThe Authorisation type for the SNMPV3 User:  MD5 or SHA
privpwdThe privacy password for the SNMPV3 user administered in VSM
privThe Privacy type for the SNMPV3 user: DES, AES128, AES192, AES256
engIDSNMP Engine ID - This is the code '0x80001ae903' followed by the AAM/IX server MAC address with hyphens removed e.g. if the MAC address is 00-FF-39-B4-A8-38, then the engine ID will be 0x80001ae90300FF39B4A838

For e.g. To set this for a VSM collector on 192168.10.1, with an SNMPV3 user account virsae with the password virsae123 using Authorisation type SHA and Privacy type DES and the AAM server MAC address is 00-FF-39-B4-A8-38 use the following script: 

Code Block
ucsnmpconfig.exe trap add --host=192.168.10.1 --user=virsae --authpass=virsae123 --authtype=SHA --privpass=virsae123 --privtype=DES --engine=0x80001ae90300FF39B4A838

The ucsnmpservice service must be restarted after executing the command line.


To issue a test trap from AAM/IX use the following command at the command prompt:

Code Block
UCSNMPConfig.exe trap test

...