diff options
| author | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
|---|---|---|
| committer | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
| commit | 98a672123c7872f6b9b75a9a2b6bb3aea504de6a (patch) | |
| tree | 9b13bd7f563c3198047bd359195327cf28b3caf0 /MIBS/icr-os/CONEL-STATUS-MIB | |
| download | mibs-main.tar.gz mibs-main.zip | |
Diffstat (limited to 'MIBS/icr-os/CONEL-STATUS-MIB')
| -rw-r--r-- | MIBS/icr-os/CONEL-STATUS-MIB | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/MIBS/icr-os/CONEL-STATUS-MIB b/MIBS/icr-os/CONEL-STATUS-MIB new file mode 100644 index 0000000..87e3336 --- /dev/null +++ b/MIBS/icr-os/CONEL-STATUS-MIB @@ -0,0 +1,83 @@ +CONEL-STATUS-MIB DEFINITIONS ::= BEGIN + +IMPORTS + enterprises, Gauge + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212; + +conel OBJECT IDENTIFIER ::= { enterprises 30140 } + +status OBJECT IDENTIFIER ::= { conel 3 } + +statusMBusOverload1 OBJECT-TYPE + SYNTAX Gauge { + no (0), + yes (1) + } + ACCESS read-only + STATUS current + ::= { status 1 } + +statusMBusOverload2 OBJECT-TYPE + SYNTAX Gauge { + no (0), + yes (1) + } + ACCESS read-only + STATUS current + ::= { status 2 } + +statusTemperature OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + ::= { status 3 } + +statusVoltage OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS current + ::= { status 4 } + +statusRTCBattery OBJECT-TYPE + SYNTAX INTEGER { + unknown (0), + ok (1), + empty (2) + } + ACCESS read-only + STATUS current + ::= { status 5 } + +statusCPUUsage OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS current + ::= { status 6 } + +statusRAMUsage OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS current + ::= { status 7 } + +statusRAMUsed OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS current + ::= { status 8 } + +statusRAMFree OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS current + ::= { status 9 } + +statusRAMTotal OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS current + ::= { status 10 } + +END |