Device: EATON-MGEUPS: Added sensors for temperature and humidity from … (#9647)

* Device: EATON-MGEUPS: Added sensors for temperature and humidity for external environment sensor

* Create eaton-mgeups.json

* Update eaton-mgeups_5px.snmprec

* Rename eaton-mgeups.json to eaton-mgeups_5px.json

* Update eaton-mgeups_5px.snmprec

* Update eaton-mgeups_5px.snmprec

* Update eaton-mgeups_5px.json

* Update eaton-mgeups_5px.json
This commit is contained in:
Kal42
2019-01-12 07:59:17 -06:00
committed by Tony Murray
co-authored by Tony Murray
parent 0c188c5995
commit 6fc8173f84
5 changed files with 2993 additions and 2 deletions
@@ -1,4 +1,4 @@
mib: MG-SNMP-UPS-MIB
mib: MG-SNMP-UPS-MIB:EATON-OIDS:EATON-EMP-MIB
modules:
sensors:
power:
@@ -41,6 +41,20 @@ modules:
num_oid: '.1.3.6.1.4.1.705.1.5.7.{{ $index }}'
descr: 'Battery'
index: 'upsmgBatteryTemperature.{{ $index }}'
-
oid: xupsEnvironment
value: xupsEnvRemoteTemp
num_oid: '.1.3.6.1.4.1.534.1.6.5.{{ $index }}'
descr: 'Environment'
index: 'xupsEnvRemoteTemp.{{ $index }}'
humidity:
data:
-
oid: xupsEnvironment
value: xupsEnvRemoteHumidity
num_oid: '.1.3.6.1.4.1.534.1.6.6.{{ $index }}'
descr: 'Environment'
index: 'xupsEnvRemoteHumidity.{{ $index }}'
frequency:
data:
-
+272
View File
@@ -0,0 +1,272 @@
EATON-EMP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32
FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
xupsEnvironment
FROM EATON-OIDS;
eatonEMPMIB MODULE-IDENTITY
LAST-UPDATED "200703120000Z"
ORGANIZATION "Eaton Corporation"
CONTACT-INFO
"Eaton Power Quality Technical Support (PQTS) group
www.eaton.com/powerxpert
Technical Resource Center phone numbers
United States: 1.800.843.9433 or 919.870.3028
Canada: 1.800.461.9166 ext. 260
All other countries: Call your local service representative."
DESCRIPTION
"The MIB module for Eaton Environment Monitoring Probes (EMP).
The elements of this MIB have been extracted from the
Eaton PowerMIB and placed in this separate MIB file for convenience.
Copyright (C) Eaton Corporation (2007)."
REVISION "200703120000Z"
DESCRIPTION
"Initial Version of eatonEMPMIB."
::= { xupsEnvironment 0 }
-- ::= { enterprises 534 8 1 }
-- eatonEMPMIB { iso org(3) dod(6) internet(1) private(4)
-- enterprises(1) eaton(534) xupsMIB(1) xupsEnvironment(6) (0) }
--
-- EMP group
--
-- The objects defined in this group are provided by the EMP.
-- They are Temperature and Humidity readings and alarming limits,
-- and the (two) contacts readings and setup information.
-- These objects are considered "Remote" since the EMP is a
-- separate probe from the Eaton device or gateway it is connected to.
--
-- Notices/Traps: two different types of traps may be sent in response
-- to EMP changes, depending upon the type of device the EMP is attached to.
-- If connected to a UPS device, normally the PowerMIB traps are sent:
-- xupstdRemoteTempBad
-- xupstdRemoteHumidityBad
-- xupstdContactActiveNotice
-- xupstdContactInactiveNotice
-- If connected to a Toolkit-enabled PowerXpert Gateway, Toolkit traps are sent:
-- powerChainCriticalAlarm
-- powerChainCautionaryAlarm
-- powerChainAlarmAcknowledged
-- powerChainAlarmCleared
-- Both sets of traps are defined in their respective MIB files.
xupsEnvRemoteTemp OBJECT-TYPE
SYNTAX Integer32 (-100..200)
UNITS "degrees Centigrade"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The reading of an EMP's temperature sensor."
::= { xupsEnvironment 5 }
xupsEnvRemoteHumidity OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The reading of an EMP's humidity sensor."
::= { xupsEnvironment 6 }
--
-- The Environmental Contact Sensing Table
-- Contains the table for monitoring all contacts (digital
-- inputs, normally 2 in an EMP).
--
xupsEnvNumContacts OBJECT-TYPE
SYNTAX Integer32 (1..1024)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Contacts in the xupsContactSenseTable.
This object indicates the number of rows in the
xupsContactSenseTable."
::= { xupsEnvironment 7 }
xupsContactSenseTable OBJECT-TYPE
SYNTAX SEQUENCE OF XupsContactsTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Contact Sensing table entries.
The number of entries is given by the value of
xupsEnvNumContacts."
::= { xupsEnvironment 8 }
xupsContactsTableEntry OBJECT-TYPE
SYNTAX XupsContactsTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information applicable
to a particular Contact input."
INDEX { xupsContactIndex }
::= { xupsContactSenseTable 1 }
XupsContactsTableEntry ::= SEQUENCE {
xupsContactIndex Integer32,
xupsContactType INTEGER,
xupsContactState INTEGER,
xupsContactDescr DisplayString
}
xupsContactIndex OBJECT-TYPE
SYNTAX Integer32 (1..1024)
MAX-ACCESS read-only -- actually not-accessible
STATUS current
DESCRIPTION
"The Contact identifier; identical to the Contact Number.
This object is not-accessible to MIB browsers, but had to be changed to
read-only to satisfy SMIv2 syntax checkers if it is included in traps."
::= { xupsContactsTableEntry 1 }
xupsContactType OBJECT-TYPE
SYNTAX INTEGER {
normallyOpen(1), -- or Input Normally High
normallyClosed(2), -- or Input Normally Low
anyChange(3), -- No normal Open/Closed state
notUsed(4) -- Contact not in service or not alarming
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The normal state for this contact. The 'other' (not 'Normally')
state is the Active state for generating the xupstdContactActiveNotice
trap. If anyChange(3) is selected, then this trap is sent
any time the contact changes to either Open or Closed.
No traps are sent if the Contact is set to notUsed(4).
In many cases, the configuration for Contacts may be done by other
means, so this object may be read-only."
::= { xupsContactsTableEntry 2 }
xupsContactState OBJECT-TYPE
SYNTAX INTEGER {
open(1),
closed(2),
openWithNotice(3),
closedWithNotice(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the Contact input;
the value is based on the open/closed input state
and the setting for xupsContactType.
When entering the openWithNotice(3) and closedWithNotice(4)
states, no entries added to the xupsAlarmTable, but
the xupstdContactActiveNotice trap is sent."
::= { xupsContactsTableEntry 3 }
xupsContactDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A label identifying the Contact. This object should be
set by the administrator."
::= { xupsContactsTableEntry 4 }
xupsEnvRemoteTempLowerLimit OBJECT-TYPE
SYNTAX Integer32 (-100..200)
UNITS "degrees Centigrade"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Lower Limit of the EMP temperature; if xupsEnvRemoteTemp
falls below this value, the xupsRemoteTempBad alarm will occur."
::= { xupsEnvironment 9 }
xupsEnvRemoteTempUpperLimit OBJECT-TYPE
SYNTAX Integer32 (-100..200)
UNITS "degrees Centigrade"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Upper Limit of the EMP temperature; if xupsEnvRemoteTemp
rises above this value, the xupsRemoteTempBad alarm will occur.
This value should be greater than xupsEnvRemoteTempLowerLimit."
::= { xupsEnvironment 10 }
xupsEnvRemoteHumidityLowerLimit OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Lower Limit of the EMP humidity reading; if xupsEnvRemoteHumidity
falls below this value, the xupsRemoteHumidityBad alarm will occur."
::= { xupsEnvironment 11 }
xupsEnvRemoteHumidityUpperLimit OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Upper Limit of the EMP humidity reading; if xupsEnvRemoteHumidity
rises above this value, the xupsRemoteHumidityBad alarm will occur.
This value should be greater than xupsEnvRemoteHumidityLowerLimit."
::= { xupsEnvironment 12 }
--
-- Traps / Notifications for the EMP in the PowerMIB style
-- The special EMP traps are not normally provided by Power Xpert Gateways (which use
-- the PXG-style traps instead) but could be provided by PowerMIB implementations
-- These are found in the PowerMIB:
-- xupstdContactActiveNotice
-- xupstdContactInactiveNotice
-- xupstdRemoteTempBad
-- xupstdRemoteHumidityBad
--
-- Conformance-related definitions
--
eatonEMPConformance OBJECT IDENTIFIER ::= { eatonEMPMIB 2 }
eatonEMPGroup OBJECT-GROUP
OBJECTS { xupsEnvRemoteTemp, xupsEnvRemoteHumidity,
xupsEnvRemoteTempLowerLimit, xupsEnvRemoteTempUpperLimit,
xupsEnvRemoteHumidityLowerLimit, xupsEnvRemoteHumidityUpperLimit }
STATUS current
DESCRIPTION
"The EMP scalar objects."
::= { eatonEMPConformance 1 }
eatonEMPTableGroup OBJECT-GROUP
OBJECTS { xupsEnvNumContacts, xupsContactIndex, xupsContactType,
xupsContactState, xupsContactDescr }
STATUS current
DESCRIPTION
"The EMP Contacts Table objects."
::= { eatonEMPConformance 2 }
eatonEMPSimpleCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for a normal EMP."
MODULE -- this module
MANDATORY-GROUPS { eatonEMPGroup, eatonEMPTableGroup }
::= { eatonEMPConformance 4 }
END
+183
View File
@@ -0,0 +1,183 @@
EATON-OIDS DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, enterprises FROM SNMPv2-SMI
Integer32 FROM SNMPv2-SMI
TEXTUAL-CONVENTION FROM SNMPv2-TC;
eaton MODULE-IDENTITY
LAST-UPDATED "201402190000Z"
ORGANIZATION "Eaton Corporation"
CONTACT-INFO
"Eaton Power Quality Technical Support (PQTS) group
www.eaton.com/powerxpert
Technical Resource Center phone numbers
United States: 1.800.843.9433 or 919.870.3028
Canada: 1.800.461.9166 ext. 260
All other countries: Call your local service representative."
DESCRIPTION
"Assigns major branches from the root of
Eaton's OID tree (534).
Copyright (C) Exide Electronics 1992-98
Copyright (C) Powerware Corporation 1999-2004
Copyright (C) Eaton Corporation (2005-)."
REVISION "201402190000Z"
DESCRIPTION
"Added assignments for stsMIB."
REVISION "201001240000Z"
DESCRIPTION
"Added assignments for eatonEpdu and eatonEpduMa."
REVISION "200906180000Z"
DESCRIPTION
"Added assignments for powerCmnd and OSDCIIMIB."
REVISION "200708060000Z"
DESCRIPTION
"Added assignments for pcdMIB and pxmMIB.
Added common Textual Conventions for Integers."
REVISION "200707050000Z"
DESCRIPTION
"Added assignment for eatonEpduMIB.
Cleaned up file for public consumption."
REVISION "200610150000Z"
DESCRIPTION
"Added assignments for powerChain and pxgMIB."
REVISION "200605250000Z"
DESCRIPTION
"Revised from the original assignments in XUPS-MIB.txt.
Note that enterprises.534. was originally assigned to Exide
Electronics before Powerware was acquired by Eaton."
::= { enterprises 534 }
-- EATON-OIDS { iso org(3) dod(6) internet(1) private(4)
-- enterprises(1) eaton(534) }
-- The Powerware "PowerMIB" for UPSs
xupsMIB OBJECT IDENTIFIER ::= {eaton 1}
-- Define the Environment group here since it is used in the Eaton-EMP-MIB as well
xupsEnvironment OBJECT IDENTIFIER ::= {xupsMIB 6}
--
-- The root of the list of Object Identifiers that are used to
-- distinguish Eaton's SNMP agents (for use in sysObjId):
xupsObjectId OBJECT IDENTIFIER ::= {eaton 2}
powerwareEthernetSnmpAdapter OBJECT IDENTIFIER ::= {xupsObjectId 1}
powerwareNetworkSnmpAdapterEther OBJECT IDENTIFIER ::= {xupsObjectId 2}
powerwareNetworkSnmpAdapterToken OBJECT IDENTIFIER ::= {xupsObjectId 3}
onlinetDaemon OBJECT IDENTIFIER ::= {xupsObjectId 4}
connectUPSAdapterEthernet OBJECT IDENTIFIER ::= {xupsObjectId 5}
powerwareNetworkDigitalIOEther OBJECT IDENTIFIER ::= {xupsObjectId 6}
connectUPSAdapterTokenRing OBJECT IDENTIFIER ::= {xupsObjectId 7}
simpleSnmpAdapter OBJECT IDENTIFIER ::= {xupsObjectId 8}
powerwareEliSnmpAdapter OBJECT IDENTIFIER ::= {xupsObjectId 9}
powerwareBasicEmbeddedEthernet OBJECT IDENTIFIER ::= {xupsObjectId 10}
eatonPowerChainGateway OBJECT IDENTIFIER ::= {xupsObjectId 11}
eatonPowerChainDevice OBJECT IDENTIFIER ::= {xupsObjectId 12}
eatonPowerXpertMeter OBJECT IDENTIFIER ::= {xupsObjectId 13}
-- Digital IO MIB (deprecated)
-- File XUPSIOV1.MIB
xupsIoMIB OBJECT IDENTIFIER ::= {eaton 3}
-- DataTrax Forseer and Powervision branch
powerVision OBJECT IDENTIFIER ::= {eaton 4}
-- orphaned: BEEP (Basic Embedded Ethernet Product)
-- File XUPS-BASIC-MIB.txt
--xupsBasic OBJECT IDENTIFIER ::= {eaton 5}
-- A branch for Powerware Product MIBs
products OBJECT IDENTIFIER ::= {eaton 6}
-- Product assignments
pduAgent OBJECT IDENTIFIER ::= {products 6}
-- pduAgent product assignments
-- File MIB_hdpdu.mib for HD PDU
hdpdu OBJECT IDENTIFIER ::= {pduAgent 2}
-- MIB for Eaton PDU, first for 9315's 3-phase PDU
-- Defined in EATON-PDU-MIB.txt
eatonPdu OBJECT IDENTIFIER ::= {pduAgent 4}
-- MIB for Eaton Powerware first-generation Managed ePDUs
-- Defined in EATON-EPDU-MA-MIB.txt
-- eatonEpduMa OBJECT IDENTIFIER ::= {pduAgent 6}
-- MIB for Eaton Powerware ePDUs
-- Defined in EATON-EPDU-MIB.txt
-- eatonEpdu OBJECT IDENTIFIER ::= {pduAgent 7}
dataCenter OBJECT IDENTIFIER ::= {products 7}
-- dataCenter product assignments
environmentalMonitor OBJECT IDENTIFIER ::= {dataCenter 1}
-- A branch for Eaton IT Department
itProjects OBJECT IDENTIFIER ::= {eaton 7}
pki OBJECT IDENTIFIER ::= {itProjects 1}
-- A branch for PowerChain Product MIBs
powerChain OBJECT IDENTIFIER ::= {eaton 8}
-- Product assignments
-- MIB to support Alarms and Events in PowerXpert toolkit-enabled
-- Devices, Gateways, PXMeters
-- Defined in file EATON-PXG-MIB.txt
-- pxgMIB OBJECT IDENTIFIER ::= {powerChain 1}
-- MIB to support common measures in Power Chain Devices
-- Defined in file EATON-PCD-MIB.txt
-- pcdMIB OBJECT IDENTIFIER ::= {powerChain 2}
-- MIB to support power measures in Power Meters
-- Defined in file EATON-PWR-MTR-MIB.txt
-- pxmMIB OBJECT IDENTIFIER ::= {powerChain 3}
-- A branch for powercomand commercial control Product MIBs
powerCmnd OBJECT IDENTIFIER ::= {eaton 9}
-- Product assignments
-- MIB to support the OSDCII controller
-- Defined in file EATON-OSDCII-MIB.txt
-- osdcMIB OBJECT IDENTIFIER ::= {powerCmnd 1}
-- A branch for Eaton STS devices MIBs
sts OBJECT IDENTIFIER ::= {eaton 10}
-- Product assignments
-- MIB to support the data in STS devices
-- Defined in file Eaton-STS.MIB
-- stsMIB OBJECT IDENTIFIER ::= {ats 1}
-- Define some common Textual Conventions
-- PositiveInteger and NonNegativeInteger are borrowed from RFC1628
PositiveInteger ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"This data type is a non-zero and non-negative value."
SYNTAX Integer32 (1..2147483647)
NonNegativeInteger ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"This data type is a non-negative value."
SYNTAX Integer32 (0..2147483647)
END
File diff suppressed because it is too large Load Diff
+379 -1
View File
@@ -1,2 +1,380 @@
1.3.6.1.2.1.1.1.0|4|Eaton 5PX 2000
1.3.6.1.2.1.1.1.0|4|Eaton 5PX 3000
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.705.1
1.3.6.1.2.1.1.3.0|67|8855446
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.2.1|4|LOOPBACK
1.3.6.1.2.1.2.2.1.2.2|4|eth0
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|6
1.3.6.1.2.1.2.2.1.4.1|2|1500
1.3.6.1.2.1.2.2.1.4.2|2|1500
1.3.6.1.2.1.2.2.1.5.1|66|0
1.3.6.1.2.1.2.2.1.5.2|66|10000000
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4x|002085F51E2C
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|230
1.3.6.1.2.1.2.2.1.10.1|65|0
1.3.6.1.2.1.2.2.1.10.2|65|44870299
1.3.6.1.2.1.2.2.1.11.1|65|0
1.3.6.1.2.1.2.2.1.11.2|65|236937
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|181882
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|48723
1.3.6.1.2.1.2.2.1.16.1|65|0
1.3.6.1.2.1.2.2.1.16.2|65|95041326
1.3.6.1.2.1.2.2.1.17.1|65|0
1.3.6.1.2.1.2.2.1.17.2|65|170164
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|27997
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|18
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.4.3.0|65|310100
1.3.6.1.2.1.4.4.0|65|0
1.3.6.1.2.1.4.5.0|65|0
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.7.0|65|2
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.9.0|65|196165
1.3.6.1.2.1.4.10.0|65|180014
1.3.6.1.2.1.4.11.0|65|0
1.3.6.1.2.1.4.12.0|65|0
1.3.6.1.2.1.4.14.0|65|4419
1.3.6.1.2.1.4.15.0|65|1473
1.3.6.1.2.1.4.16.0|65|0
1.3.6.1.2.1.4.17.0|65|5346
1.3.6.1.2.1.4.18.0|65|0
1.3.6.1.2.1.4.19.0|65|0
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
1.3.6.1.2.1.4.20.1.2.192.168.254.7|2|2
1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.255.255.255
1.3.6.1.2.1.4.20.1.3.192.168.254.7|64|255.255.255.0
1.3.6.1.2.1.4.22.1.2.2.192.168.254.241|4x|001CC4E376AA
1.3.6.1.2.1.4.22.1.2.2.192.168.254.242|4x|001708530637
1.3.6.1.2.1.4.22.1.2.2.192.168.254.246|4x|367428996373
1.3.6.1.2.1.4.31.1.1.3.1|65|0
1.3.6.1.2.1.4.31.1.1.3.2|65|12358
1.3.6.1.2.1.4.31.1.1.4.1|70|0
1.3.6.1.2.1.4.31.1.1.4.2|70|12358
1.3.6.1.2.1.4.31.1.1.5.1|65|44861225
1.3.6.1.2.1.4.31.1.1.5.2|65|0
1.3.6.1.2.1.4.31.1.1.6.1|70|44861407
1.3.6.1.2.1.4.31.1.1.6.2|70|0
1.3.6.1.2.1.4.31.1.1.7.1|65|0
1.3.6.1.2.1.4.31.1.1.7.2|65|0
1.3.6.1.2.1.4.31.1.1.8.1|65|0
1.3.6.1.2.1.4.31.1.1.8.2|65|0
1.3.6.1.2.1.4.31.1.1.9.1|65|0
1.3.6.1.2.1.4.31.1.1.9.2|65|0
1.3.6.1.2.1.4.31.1.1.10.1|65|48723
1.3.6.1.2.1.4.31.1.1.10.2|65|0
1.3.6.1.2.1.4.31.1.1.11.1|65|0
1.3.6.1.2.1.4.31.1.1.11.2|65|0
1.3.6.1.2.1.4.31.1.1.12.1|65|0
1.3.6.1.2.1.4.31.1.1.12.2|65|0
1.3.6.1.2.1.4.31.1.1.13.1|65|0
1.3.6.1.2.1.4.31.1.1.13.2|65|0
1.3.6.1.2.1.4.31.1.1.14.1|65|0
1.3.6.1.2.1.4.31.1.1.14.2|65|0
1.3.6.1.2.1.4.31.1.1.15.1|65|0
1.3.6.1.2.1.4.31.1.1.15.2|65|0
1.3.6.1.2.1.4.31.1.1.16.1|65|0
1.3.6.1.2.1.4.31.1.1.16.2|65|0
1.3.6.1.2.1.4.31.1.1.17.1|65|0
1.3.6.1.2.1.4.31.1.1.17.2|65|53
1.3.6.1.2.1.4.31.1.1.18.1|65|0
1.3.6.1.2.1.4.31.1.1.18.2|65|7
1.3.6.1.2.1.4.31.1.1.19.1|65|0
1.3.6.1.2.1.4.31.1.1.19.2|65|0
1.3.6.1.2.1.4.31.1.1.20.1|65|0
1.3.6.1.2.1.4.31.1.1.20.2|65|0
1.3.6.1.2.1.4.31.1.1.21.1|65|0
1.3.6.1.2.1.4.31.1.1.21.2|65|0
1.3.6.1.2.1.4.31.1.1.22.1|65|0
1.3.6.1.2.1.4.31.1.1.22.2|65|0
1.3.6.1.2.1.4.31.1.1.23.1|65|0
1.3.6.1.2.1.4.31.1.1.23.2|65|0
1.3.6.1.2.1.4.31.1.1.24.1|65|0
1.3.6.1.2.1.4.31.1.1.24.2|65|0
1.3.6.1.2.1.4.31.1.1.25.1|65|0
1.3.6.1.2.1.4.31.1.1.25.2|65|0
1.3.6.1.2.1.4.31.1.1.26.1|65|0
1.3.6.1.2.1.4.31.1.1.26.2|65|0
1.3.6.1.2.1.4.31.1.1.27.1|70|0
1.3.6.1.2.1.4.31.1.1.27.2|70|0
1.3.6.1.2.1.4.31.1.1.28.1|65|95034387
1.3.6.1.2.1.4.31.1.1.28.2|65|0
1.3.6.1.2.1.4.31.1.1.29.1|70|95034566
1.3.6.1.2.1.4.31.1.1.29.2|70|0
1.3.6.1.2.1.4.31.1.1.30.1|65|111003
1.3.6.1.2.1.4.31.1.1.30.2|65|53
1.3.6.1.2.1.4.31.1.1.31.1|70|111003
1.3.6.1.2.1.4.31.1.1.31.2|70|53
1.3.6.1.2.1.4.31.1.1.32.1|65|0
1.3.6.1.2.1.4.31.1.1.32.2|65|0
1.3.6.1.2.1.4.31.1.1.33.1|70|0
1.3.6.1.2.1.4.31.1.1.33.2|70|0
1.3.6.1.2.1.4.31.1.1.34.1|65|2
1.3.6.1.2.1.4.31.1.1.34.2|65|7
1.3.6.1.2.1.4.31.1.1.35.1|70|2
1.3.6.1.2.1.4.31.1.1.35.2|70|7
1.3.6.1.2.1.4.31.1.1.36.1|65|0
1.3.6.1.2.1.4.31.1.1.36.2|65|0
1.3.6.1.2.1.4.31.1.1.37.1|70|0
1.3.6.1.2.1.4.31.1.1.37.2|70|0
1.3.6.1.2.1.4.31.1.1.38.1|65|70879
1.3.6.1.2.1.4.31.1.1.38.2|65|0
1.3.6.1.2.1.4.31.1.1.39.1|70|70879
1.3.6.1.2.1.4.31.1.1.39.2|70|0
1.3.6.1.2.1.4.31.1.1.40.1|65|27994
1.3.6.1.2.1.4.31.1.1.40.2|65|0
1.3.6.1.2.1.4.31.1.1.41.1|70|27994
1.3.6.1.2.1.4.31.1.1.41.2|70|0
1.3.6.1.2.1.4.31.1.1.42.1|2|0
1.3.6.1.2.1.4.31.1.1.42.2|2|0
1.3.6.1.2.1.4.31.1.1.43.1|2|0
1.3.6.1.2.1.4.31.1.1.43.2|2|0
1.3.6.1.2.1.4.35.1.4.1|2|0
1.3.6.1.2.1.4.35.1.4.2|2|0
1.3.6.1.2.1.5.1.0|65|3883
1.3.6.1.2.1.5.2.0|65|0
1.3.6.1.2.1.5.3.0|65|0
1.3.6.1.2.1.5.4.0|65|0
1.3.6.1.2.1.5.5.0|65|0
1.3.6.1.2.1.5.6.0|65|0
1.3.6.1.2.1.5.7.0|65|0
1.3.6.1.2.1.5.8.0|65|3883
1.3.6.1.2.1.5.9.0|65|0
1.3.6.1.2.1.5.10.0|65|0
1.3.6.1.2.1.5.11.0|65|0
1.3.6.1.2.1.5.12.0|65|0
1.3.6.1.2.1.5.13.0|65|0
1.3.6.1.2.1.5.14.0|65|3884
1.3.6.1.2.1.5.15.0|65|0
1.3.6.1.2.1.5.16.0|65|1
1.3.6.1.2.1.5.17.0|65|0
1.3.6.1.2.1.5.18.0|65|0
1.3.6.1.2.1.5.19.0|65|0
1.3.6.1.2.1.5.20.0|65|0
1.3.6.1.2.1.5.21.0|65|0
1.3.6.1.2.1.5.22.0|65|3883
1.3.6.1.2.1.5.23.0|65|0
1.3.6.1.2.1.5.24.0|65|0
1.3.6.1.2.1.5.25.0|65|0
1.3.6.1.2.1.5.26.0|65|0
1.3.6.1.2.1.5.27.1.2.1|65|3883
1.3.6.1.2.1.5.27.1.2.2|65|53
1.3.6.1.2.1.5.27.1.3.1|65|0
1.3.6.1.2.1.5.27.1.3.2|65|0
1.3.6.1.2.1.5.27.1.4.1|65|3884
1.3.6.1.2.1.5.27.1.4.2|65|2
1.3.6.1.2.1.5.27.1.5.1|65|0
1.3.6.1.2.1.5.27.1.5.2|65|0
1.3.6.1.2.1.5.28.1.3.1.0|65|0
1.3.6.1.2.1.5.28.1.3.1.3|65|0
1.3.6.1.2.1.5.28.1.3.1.4|65|0
1.3.6.1.2.1.5.28.1.3.1.5|65|0
1.3.6.1.2.1.5.28.1.3.1.8|65|3883
1.3.6.1.2.1.5.28.1.3.1.9|65|0
1.3.6.1.2.1.5.28.1.3.1.10|65|0
1.3.6.1.2.1.5.28.1.3.1.11|65|0
1.3.6.1.2.1.5.28.1.3.1.12|65|0
1.3.6.1.2.1.5.28.1.3.1.13|65|0
1.3.6.1.2.1.5.28.1.3.1.14|65|0
1.3.6.1.2.1.5.28.1.3.1.15|65|0
1.3.6.1.2.1.5.28.1.3.1.16|65|0
1.3.6.1.2.1.5.28.1.3.1.17|65|0
1.3.6.1.2.1.5.28.1.3.1.18|65|0
1.3.6.1.2.1.5.28.1.3.2.1|65|0
1.3.6.1.2.1.5.28.1.3.2.2|65|0
1.3.6.1.2.1.5.28.1.3.2.3|65|0
1.3.6.1.2.1.5.28.1.3.2.4|65|0
1.3.6.1.2.1.5.28.1.3.2.128|65|0
1.3.6.1.2.1.5.28.1.3.2.129|65|0
1.3.6.1.2.1.5.28.1.3.2.130|65|0
1.3.6.1.2.1.5.28.1.3.2.131|65|0
1.3.6.1.2.1.5.28.1.3.2.132|65|0
1.3.6.1.2.1.5.28.1.3.2.133|65|53
1.3.6.1.2.1.5.28.1.3.2.134|65|0
1.3.6.1.2.1.5.28.1.3.2.135|65|0
1.3.6.1.2.1.5.28.1.3.2.136|65|0
1.3.6.1.2.1.5.28.1.3.2.137|65|0
1.3.6.1.2.1.5.28.1.4.1.0|65|3883
1.3.6.1.2.1.5.28.1.4.1.3|65|1
1.3.6.1.2.1.5.28.1.4.1.4|65|0
1.3.6.1.2.1.5.28.1.4.1.5|65|0
1.3.6.1.2.1.5.28.1.4.1.8|65|0
1.3.6.1.2.1.5.28.1.4.1.9|65|0
1.3.6.1.2.1.5.28.1.4.1.10|65|0
1.3.6.1.2.1.5.28.1.4.1.11|65|0
1.3.6.1.2.1.5.28.1.4.1.12|65|0
1.3.6.1.2.1.5.28.1.4.1.13|65|0
1.3.6.1.2.1.5.28.1.4.1.14|65|0
1.3.6.1.2.1.5.28.1.4.1.15|65|0
1.3.6.1.2.1.5.28.1.4.1.16|65|0
1.3.6.1.2.1.5.28.1.4.1.17|65|0
1.3.6.1.2.1.5.28.1.4.1.18|65|0
1.3.6.1.2.1.5.28.1.4.2.1|65|0
1.3.6.1.2.1.5.28.1.4.2.2|65|0
1.3.6.1.2.1.5.28.1.4.2.3|65|0
1.3.6.1.2.1.5.28.1.4.2.4|65|0
1.3.6.1.2.1.5.28.1.4.2.128|65|0
1.3.6.1.2.1.5.28.1.4.2.129|65|0
1.3.6.1.2.1.5.28.1.4.2.130|65|0
1.3.6.1.2.1.5.28.1.4.2.131|65|1
1.3.6.1.2.1.5.28.1.4.2.132|65|1
1.3.6.1.2.1.5.28.1.4.2.133|65|0
1.3.6.1.2.1.5.28.1.4.2.134|65|0
1.3.6.1.2.1.5.28.1.4.2.135|65|0
1.3.6.1.2.1.5.28.1.4.2.136|65|0
1.3.6.1.2.1.5.28.1.4.2.137|65|0
1.3.6.1.2.1.6.5.0|65|2
1.3.6.1.2.1.6.6.0|65|3363
1.3.6.1.2.1.6.7.0|65|0
1.3.6.1.2.1.6.8.0|65|198
1.3.6.1.2.1.6.9.0|66|4
1.3.6.1.2.1.6.10.0|65|67964
1.3.6.1.2.1.6.11.0|65|50120
1.3.6.1.2.1.6.12.0|65|0
1.3.6.1.2.1.6.14.0|65|0
1.3.6.1.2.1.6.15.0|65|180
1.3.6.1.2.1.6.17.0|70|67964
1.3.6.1.2.1.6.18.0|70|50120
1.3.6.1.2.1.7.1.0|65|103557
1.3.6.1.2.1.7.2.0|65|20807
1.3.6.1.2.1.7.3.0|65|0
1.3.6.1.2.1.7.4.0|65|105142
1.3.6.1.2.1.11.1.0|65|89829
1.3.6.1.2.1.11.2.0|65|89829
1.3.6.1.2.1.11.3.0|65|0
1.3.6.1.2.1.11.4.0|65|0
1.3.6.1.2.1.11.5.0|65|6495
1.3.6.1.2.1.11.6.0|65|0
1.3.6.1.2.1.11.8.0|65|0
1.3.6.1.2.1.11.9.0|65|0
1.3.6.1.2.1.11.10.0|65|0
1.3.6.1.2.1.11.11.0|65|0
1.3.6.1.2.1.11.12.0|65|0
1.3.6.1.2.1.11.13.0|65|98422
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|12365
1.3.6.1.2.1.11.16.0|65|77478
1.3.6.1.2.1.11.17.0|65|0
1.3.6.1.2.1.11.18.0|65|0
1.3.6.1.2.1.11.19.0|65|0
1.3.6.1.2.1.11.20.0|65|0
1.3.6.1.2.1.11.21.0|65|6495
1.3.6.1.2.1.11.22.0|65|0
1.3.6.1.2.1.11.24.0|65|0
1.3.6.1.2.1.11.25.0|65|0
1.3.6.1.2.1.11.26.0|65|0
1.3.6.1.2.1.11.27.0|65|0
1.3.6.1.2.1.11.28.0|65|89853
1.3.6.1.2.1.11.29.0|65|0
1.3.6.1.2.1.11.30.0|2|1
1.3.6.1.2.1.11.31.0|65|0
1.3.6.1.2.1.11.32.0|65|0
1.3.6.1.2.1.33.1.1.1.0|4|EATON
1.3.6.1.2.1.33.1.2.1.0|2|2
1.3.6.1.2.1.33.1.2.2.0|2|0
1.3.6.1.2.1.33.1.2.3.0|2|43
1.3.6.1.2.1.33.1.2.4.0|2|100
1.3.6.1.2.1.33.1.2.5.0|2|810
1.3.6.1.2.1.33.1.2.6.0|2|0
1.3.6.1.2.1.33.1.2.7.0|2|0
1.3.6.1.2.1.33.1.3.3.1.2.1|2|500
1.3.6.1.2.1.33.1.3.3.1.3.1|2|229
1.3.6.1.2.1.33.1.3.3.1.4.1|2|0
1.3.6.1.2.1.33.1.3.3.1.5.1|2|0
1.3.6.1.2.1.33.1.4.1.0|2|3
1.3.6.1.2.1.33.1.4.2.0|2|500
1.3.6.1.2.1.33.1.4.4.1.2.1|2|229
1.3.6.1.2.1.33.1.4.4.1.3.1|2|78
1.3.6.1.2.1.33.1.4.4.1.4.1|2|1593
1.3.6.1.2.1.33.1.4.4.1.5.1|2|59
1.3.6.1.2.1.33.1.5.1.0|2|0
1.3.6.1.4.1.534.1.6.1.0|2|0
1.3.6.1.4.1.534.1.6.2.0|2|0
1.3.6.1.4.1.534.1.6.3.0|2|40
1.3.6.1.4.1.534.1.6.5.0|2|33
1.3.6.1.4.1.534.1.6.6.0|2|15
1.3.6.1.4.1.534.1.6.7.0|2|2
1.3.6.1.4.1.534.1.6.8.1.1.1|2|1
1.3.6.1.4.1.534.1.6.8.1.1.2|2|2
1.3.6.1.4.1.534.1.6.8.1.2.1|2|4
1.3.6.1.4.1.534.1.6.8.1.2.2|2|4
1.3.6.1.4.1.534.1.6.8.1.3.1|2|1
1.3.6.1.4.1.534.1.6.8.1.3.2|2|1
1.3.6.1.4.1.534.1.6.8.1.4.1|4|Input #1
1.3.6.1.4.1.534.1.6.8.1.4.2|4|Input #2
1.3.6.1.4.1.534.1.6.9.0|2|5
1.3.6.1.4.1.534.1.6.10.0|2|33
1.3.6.1.4.1.534.1.6.11.0|2|5
1.3.6.1.4.1.534.1.6.12.0|2|90
1.3.6.1.4.1.705.1.1.1.0|4|Eaton 5PX
1.3.6.1.4.1.705.1.1.2.0|4|3000
1.3.6.1.4.1.705.1.1.4.0|4|06
1.3.6.1.4.1.705.1.1.7.0|4|G4294C3232
1.3.6.1.4.1.705.1.5.1.0|2|2594
1.3.6.1.4.1.705.1.5.2.0|2|100
1.3.6.1.4.1.705.1.5.5.0|2|810
1.3.6.1.4.1.705.1.5.6.0|2|0
1.3.6.1.4.1.705.1.5.9.0|2|2
1.3.6.1.4.1.705.1.5.11.0|2|2
1.3.6.1.4.1.705.1.5.14.0|2|2
1.3.6.1.4.1.705.1.5.15.0|2|2
1.3.6.1.4.1.705.1.5.16.0|2|2
1.3.6.1.4.1.705.1.6.2.1.2.1.0|2|2290
1.3.6.1.4.1.705.1.6.2.1.2.2.0|2|0
1.3.6.1.4.1.705.1.6.2.1.2.3.0|2|0
1.3.6.1.4.1.705.1.6.2.1.3.1.0|2|500
1.3.6.1.4.1.705.1.6.2.1.3.2.0|2|0
1.3.6.1.4.1.705.1.6.2.1.3.3.0|2|0
1.3.6.1.4.1.705.1.6.2.1.4.0|2|500
1.3.6.1.4.1.705.1.6.2.1.5.0|2|0
1.3.6.1.4.1.705.1.6.2.1.6.1.0|2|0
1.3.6.1.4.1.705.1.6.2.1.6.2.0|2|0
1.3.6.1.4.1.705.1.6.2.1.6.3.0|2|0
1.3.6.1.4.1.705.1.6.3.0|2|2
1.3.6.1.4.1.705.1.6.4.0|2|1
1.3.6.1.4.1.705.1.7.2.1.1.1|2|1
1.3.6.1.4.1.705.1.7.2.1.1.2|2|2
1.3.6.1.4.1.705.1.7.2.1.1.3|2|3
1.3.6.1.4.1.705.1.7.2.1.2.1|2|2290
1.3.6.1.4.1.705.1.7.2.1.2.2|2|2290
1.3.6.1.4.1.705.1.7.2.1.2.3|2|2290
1.3.6.1.4.1.705.1.7.2.1.3.1|2|500
1.3.6.1.4.1.705.1.7.2.1.3.2|2|500
1.3.6.1.4.1.705.1.7.2.1.3.3|2|500
1.3.6.1.4.1.705.1.7.2.1.4.1|2|59
1.3.6.1.4.1.705.1.7.2.1.4.2|2|59
1.3.6.1.4.1.705.1.7.2.1.4.3|2|59
1.3.6.1.4.1.705.1.7.2.1.5.1|2|70
1.3.6.1.4.1.705.1.7.2.1.5.2|2|70
1.3.6.1.4.1.705.1.7.2.1.5.3|2|70
1.3.6.1.4.1.705.1.7.3.0|2|2
1.3.6.1.4.1.705.1.7.4.0|2|2
1.3.6.1.4.1.705.1.7.7.0|2|2
1.3.6.1.4.1.705.1.7.9.0|2|1
1.3.6.1.4.1.705.1.7.10.0|2|2
1.3.6.1.4.1.705.1.7.11.0|2|2
1.3.6.1.6.3.10.2.1.3.0|2|88554