TrippLite PDUVM5NET SNMP MIB for Current

snmp

Trying to monitor some TrippLite switched/metered vertical PDUs with PRTG using SNMP. I can't seem to find any MIB that would provide me with the output current.

Anyone have experiencing monitoring these TrippLite PDUs with SNMP? I've download both the TRIPPLITE-MIB and UPS-MIB from their website, but neither of these files contains an entry to current in amps.

EDIT:

  1. MIBS downloaded from here
  2. Running the following snmpwalk command snmpwalk -v2c -c tripplite 192.168.15.25 1.3.6.1.4.1.850.100.1.4 which is responding with SNMPv2-SMI::enterprises.850.100.1.4 = No Such Object available on this agent at this OID

Best Answer

Assuming this is the MIB that you're referring to, I see the following table:

tlUpsOutputCircuitTable

With each row in the table being:

tlUpsOutputCircuitIndex     PositiveInteger,
tlUpsOutputCircuitStatus    INTEGER,
tlUpsOutputCircuitLoadCurrent   NonNegativeInteger

Presumably tlUpsOutputCircuitLoadCurrent would be what you want, and represents the amps in tenths?

EDIT: Try telling Net-SNMP where to load the MIBs from when you run snmpwalk. Assuming you've saved those MIB files to /home/ethan/.snmp/mibs you would do the following:

snmpwalk -M +/home/ethan/.snmp/mibs -m +TRIPPLITE-MIB -v2c -c 'tripplite' 192.168.15.25 tlUpsOutputCircuitTable

If that still returns an error, the next step would be to just run a bulkwalk on the unit to see what OIDs are available, as the SNMP agent on the device may not export everything that's available in TRIPPLITE-MIB.

snmpbulkwalk -M +/home/ethan/.snmp/mibs -m +TRIPPLITE-MIB -v2c -c 'tripplite' 192.168.15.25
Related Topic