cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1291
Views
0
Helpful
4
Replies

how to monitor ACE connexions with SNMP ?

laurent55
Level 1
Level 1

Hi

I'm trying to monitor through MRTG the connections of my ACE : active connections, new connections per second, new SSL connections per second.

I tried making a custom MRTG script with OIDs but it doesn't seems to work

I'm really confused with OIDs to put : for example, finding current connections seems to be OID  1.3.6.1.4.1.9.9.161.1.4.2.1.6 (slbVServerNumberOfConnections, found in http://www.oidview.com/mibs/9/CISCO-SLB-MIB.html or the Cisco SNMP Navigator), and it seems to work with snmpwalk.

In the other hand, I've found a script with OID 1.3.6.1.4.1.9.9.109.1.1.1.1.7.1 but I can't find it with the Cisco SNMP Navigator ? But a snmpwalk responds with a Gauge32 = 13

I'm a little confused here, does anyone has a MRTG script or something to help ?

Thanks !

4 Replies 4

simionov.adrian
Level 1
Level 1

slbVServerNumberOfConnections seems to be the correct OID. Try to make a snmpwalk on this oid, most probably you will receive a reply like:

slbVServerNumberOfConnections.MagicNumber1 = XXX

slbVServerNumberOfConnections.MagicNumber2 = YYY

The MagicNumber should be an index of the rserver.

After that, try snmpget on:

slbVServerNumberOfConnections.MagicNumber1

snmpwalk should be used when testing, snmpget when you have the exact oid which works for your device.

It should work.

Absolutely, snmpwalk with this OID works

I so do have to look OIDs in CISCO-SLB-MIB, not in CISCO-SLB-EXT-MIB, that's one lesson from here

But is it normal that my 1.3.6.1.4.1.9.9.161.1.4.2.1 OID class stops at subindex .15 ?

The EstablishedConnections (interresting for me because I think this represents the number of simultaneous connections on the ACE) is on subindex .19 !

And the problem - for me - is that I can't find useful information here : there is a difference between established connections and new connections, and even new HTTP connections and HTTPS connections.

The other big problem is about the second OID I've found : it seems to work (at least I have something) but I can't find it in SLB_MID nor in SLB_EXT_MIB.

mgalazka
Level 1
Level 1

Another thing to consider for the ACE is that it has a flexible XML API interface with which you can query.  While many tools are set up for SNMP out of the box, if you can pass it a value from a script to your charting tool instead, you may be able to easily get the data you need from CLI commands via the XML interface.  If I end up struggling with getting the right OID's - or getting info not readily available through SNMP - I find this method to be quite helpful!

http://www.cisco.com/en/US/docs/interfaces_modules/services_modules/ace/vA4_2_0/configuration/administration/guide/xml.html

Good luck!

Matt

Thanks Matt, I'll take a look at that.

However, if someone has something for me within these OID or MRTG scripts, it would be great too

Laurent