Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

snmp + zabbix + ipoffice

Status
Not open for further replies.

zabbixagent

Technical User
Sep 28, 2011
11
FR
Hi Everybody,

I configured a Server with the application Zabbix to monitor several IP Office through SNMP.
This server is actually monitoring some Avaya Communication Manager Servers and it work correctly.
To make it working, I copied all AVAYA'S MIB files to the directory /usr/share/snmp/mibs/.

For example, If I want to check which memory configuration (standard or large) is configured in one of my server, I use the Object Type "g3vintageCurMemory" from the MIB file G3-AVAYA-MIB like that :

root# snmptranslate -On G3-AVAYA-MIB::g3vintageCurMemory

I get the following OID : .1.3.6.1.4.1.6889.2.8.1.2.7

With this OID (Object ID), I can check the AVAYA Server like that :

root# snmpwalk -OX -v 1 -c public 10.0.45.99 .1.3.6.1.4.1.6889.2.8.1.2.7

I get the information about the memory configuration :
SNMPv2-SMI::enterprises.6889.2.8.1.2.7.0 = STRING: "Standard"

Thus Memory Configuration = Standard.

I want to do the same for the system IP Office on version 8.0 but it doesn't work.

For example, I wish to check the state of a PRI Trunk Group.
To do it, I have to use the Object Type "ipoGenTrunkFailureSvcEvent" :

root# snmptranslate -On IPO-MIB::ipoGenTrunkFailureSvcEvent
The result is : .1.3.6.1.4.1.6889.2.2.1.2.0.50
So, until now, everything work good.

And when I which to check the IP Office Trunk state with this OID, I get the message "END OF MIB" :
root# snmpwalk -OX -v 1 -c public 10.0.46.99 .1.3.6.1.4.1.6889.2.2.1.2.0.50
End Of MIB

Information about my test plateform :
IP Office 8.0(16)
Zabbix Server 1.8 on CENTOS 5.7
net-snmp-5.3.2.2-17.el5.x86_64

Anyone have an explanation ????
 
I didn't expect to have no answer about.
Nobody tried to monitor events on Avaya IP Office Systems ??

Since the 19th April, I found some additionnal informations about.
I configured the snmptrapd service in my server and the IP Office send effectivly some trap like that when I restart it:

2012-04-23 10:21:04 10.0.46.99(via UDP: [10.0.46.99]:4097) TRAP, SNMP v1, community public
SNMPv2-SMI::enterprises.6889.2.2.1.2 Enterprise Specific Trap (16) Uptime: 0:00:30.86
SNMPv2-SMI::enterprises.6889.2.2.1.2.1.9.0 = INTEGER: 4 SNMPv2-SMI::enterprises.6889.2.2.1.2.1.2.0 = Hex-STRING: 07 DC 04 17 0A 14 34 00
SNMPv2-SMI::enterprises.6889.2.2.1.2.1.10.0 = STRING: "192168431"
SNMPv2-MIB::sysDescr.0 = STRING: IP 500 V2 8.0(16)

So, it probably mean that we can't request the status from IP Office, we can only receive them through trap.
I probably just need to configure a trap handler to log the events with the zabbix server.

To make it, I will try to follow this :
If someone is interested to built up this kind of configuration in purpose to share it here, don't hesitate to contact me.
 
It works or it doesn't.
What other status do you need?

BAZINGA!

I'm not insane, my mother had me tested!

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top