From c40fda750e9fe057521c79740e8c6bdb475b9491 Mon Sep 17 00:00:00 2001 From: Matt Ray Date: Sat, 3 Jul 2010 15:13:28 +0000 Subject: [PATCH] Opengear MIBs 1.0 git-svn-id: http://zenpacks.zenoss.org/svn/zenpacks@786 db08cffe-75b9-45d1-af1a-46ad9ef135f6 --- ZenPacks.Opengear.MIBs/COPYRIGHT.txt | 16 + ZenPacks.Opengear.MIBs/MANIFEST.in | 1 + .../ZenPacks/Opengear/MIBs/__init__.py | 8 + .../Opengear/MIBs/datasources/__init__.py | 2 + .../ZenPacks/Opengear/MIBs/lib/__init__.py | 1 + .../Opengear/MIBs/migrate/__init__.py | 1 + .../Opengear/MIBs/modeler/__init__.py | 0 .../Opengear/MIBs/modeler/plugins/__init__.py | 0 .../Opengear/MIBs/objects/objects.xml | 4407 +++++++++++++++++ .../ZenPacks.Opengear.MIBs/placeholder.txt | 0 .../ZenPacks/Opengear/MIBs/tests/__init__.py | 12 + .../ZenPacks/Opengear/__init__.py | 1 + ZenPacks.Opengear.MIBs/ZenPacks/__init__.py | 1 + ZenPacks.Opengear.MIBs/setup.py | 69 + 14 files changed, 4519 insertions(+) create mode 100644 ZenPacks.Opengear.MIBs/COPYRIGHT.txt create mode 100644 ZenPacks.Opengear.MIBs/MANIFEST.in create mode 100644 ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/__init__.py create mode 100644 ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/datasources/__init__.py create mode 100644 ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/lib/__init__.py create mode 100644 ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/migrate/__init__.py create mode 100644 ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/modeler/__init__.py create mode 100644 ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/modeler/plugins/__init__.py create mode 100644 ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/objects/objects.xml create mode 100644 ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/skins/ZenPacks.Opengear.MIBs/placeholder.txt create mode 100644 ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/tests/__init__.py create mode 100644 ZenPacks.Opengear.MIBs/ZenPacks/Opengear/__init__.py create mode 100644 ZenPacks.Opengear.MIBs/ZenPacks/__init__.py create mode 100644 ZenPacks.Opengear.MIBs/setup.py diff --git a/ZenPacks.Opengear.MIBs/COPYRIGHT.txt b/ZenPacks.Opengear.MIBs/COPYRIGHT.txt new file mode 100644 index 0000000..6511c9f --- /dev/null +++ b/ZenPacks.Opengear.MIBs/COPYRIGHT.txt @@ -0,0 +1,16 @@ +All files in this directory and below are: + +Copyright (c) 2010 Zenoss, Inc. All rights reserved. + +This program is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License version 2 as published +by the Free Software Foundation. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/ZenPacks.Opengear.MIBs/MANIFEST.in b/ZenPacks.Opengear.MIBs/MANIFEST.in new file mode 100644 index 0000000..e91e1bf --- /dev/null +++ b/ZenPacks.Opengear.MIBs/MANIFEST.in @@ -0,0 +1 @@ +graft ZenPacks diff --git a/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/__init__.py b/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/__init__.py new file mode 100644 index 0000000..09daab2 --- /dev/null +++ b/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/__init__.py @@ -0,0 +1,8 @@ + +import Globals +import os.path + +skinsDir = os.path.join(os.path.dirname(__file__), 'skins') +from Products.CMFCore.DirectoryView import registerDirectory +if os.path.isdir(skinsDir): + registerDirectory(skinsDir, globals()) diff --git a/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/datasources/__init__.py b/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/datasources/__init__.py new file mode 100644 index 0000000..651585a --- /dev/null +++ b/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/datasources/__init__.py @@ -0,0 +1,2 @@ +# __init__.py + diff --git a/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/lib/__init__.py b/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/lib/__init__.py new file mode 100644 index 0000000..143f486 --- /dev/null +++ b/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/lib/__init__.py @@ -0,0 +1 @@ +# __init__.py diff --git a/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/migrate/__init__.py b/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/migrate/__init__.py new file mode 100644 index 0000000..143f486 --- /dev/null +++ b/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/migrate/__init__.py @@ -0,0 +1 @@ +# __init__.py diff --git a/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/modeler/__init__.py b/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/modeler/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/modeler/plugins/__init__.py b/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/modeler/plugins/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/objects/objects.xml b/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/objects/objects.xml new file mode 100644 index 0000000..c184b49 --- /dev/null +++ b/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/objects/objects.xml @@ -0,0 +1,4407 @@ + + + + + +SMIv2 + + +Opengear Inc. +630 West 9560 South, Suite A, +Sandy, UT 84070 +support@opengear.com + + +Opengear console connection MIB + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.4.1.5 + + +current + + +Number of alerts triggered on the EMD + + +readonly + + + + +OG-STATUS-MIB + + +row + + +1.3.6.1.4.1.25049.16.4.1 + + +current + + +RPC status entry + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.4.1.4 + + +current + + +Humidity sensor on the EMD + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.4.1.1 + + +current + + +Index within the EMD status table + + +noaccess + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.4.1.2 + + +current + + +The name of the EMD device. + + +readonly + + + + +OG-STATUS-MIB + + +table + + +1.3.6.1.4.1.25049.16.4 + + +current + + +This entity's rpc table. + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.4.1.3 + + +current + + +Maximum temperature on the EMD + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.6.1.2 + + +current + + +The device the environment alert occurred on. + + +readonly + + + + +OG-STATUS-MIB + + +row + + +1.3.6.1.4.1.25049.16.6.1 + + +current + + +A console environment entry + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.6.1.1 + + +current + + +Index of the environment alert status + + +noaccess + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.6.1.6 + + +current + + +Previous value of the environment status + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.6.1.4 + + +current + + +Outlet of the environment status + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.6.1.3 + + +current + + +The sensor the environment alert occurred on. + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.6.1.7 + + +current + + +status value of the environment status + + +readonly + + + + +OG-STATUS-MIB + + +table + + +1.3.6.1.4.1.25049.16.6 + + +current + + +This entity's serial port signal table. + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.6.1.5 + + +current + + +Value of the environment status + + +readonly + + + + +OG-STATUS-MIB + + +row + + +1.3.6.1.4.1.25049.16.7.1 + + +current + + +A NUT (ups) entry + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.7.1.4 + + +current + + +The host of the nut alert. + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.7.1.1 + + +current + + +Index of the nut alert status + + +noaccess + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.7.1.3 + + +current + + +The UPS name of the nut alert. + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.7.1.2 + + +current + + +Serial port of the nut alert + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.7.1.5 + + +current + + +The status of the nut alert. + + +readonly + + + + +OG-STATUS-MIB + + +table + + +1.3.6.1.4.1.25049.16.7 + + +current + + +This entity's nut (ups) alert table. + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.3.1.4 + + +current + + +Number of alerts triggered on the RPC + + +readonly + + + + +OG-STATUS-MIB + + +row + + +1.3.6.1.4.1.25049.16.3.1 + + +current + + +RPC status entry + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.3.1.1 + + +current + + +Index within the RPC status table + + +noaccess + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.3.1.3 + + +current + + +Maximum temperature on the RPC + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.3.1.2 + + +current + + +The name of the RPC device. + + +readonly + + + + +OG-STATUS-MIB + + +table + + +1.3.6.1.4.1.25049.16.3 + + +current + + +This entity's rpc table. + + + + +OG-STATUS-MIB + + +row + + +1.3.6.1.4.1.25049.16.2.1 + + +current + + +A user logged in on the serial port + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.2.1.1 + + +current + + +Index within the serial port table of this status + + +noaccess + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.2.1.3 + + +current + + +The name of the user logged in on the port. + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.2.1.2 + + +current + + +Serial port number + + +readonly + + + + +OG-STATUS-MIB + + +table + + +1.3.6.1.4.1.25049.16.2 + + +current + + +This entity's serial port users table. + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.1.1.9 + + +current + + +The status of the CTS signal. + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.1.1.6 + + +current + + +The status of the DCD signal. + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.1.1.8 + + +current + + +The status of the DSR signal. + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.1.1.7 + + +current + + +The status of the DTR signal. + + +readonly + + + + +OG-STATUS-MIB + + +row + + +1.3.6.1.4.1.25049.16.1.1 + + +current + + +A console serial port entry + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.1.1.1 + + +current + + +Index within the serial port table of this status + + +noaccess + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.1.1.2 + + +current + + +Serial port number + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.1.1.10 + + +current + + +The status of the RTS signal. + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.1.1.3 + + +current + + +Serial port bytes received + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.1.1.5 + + +current + + +Serial port speed in bits per second + + +readonly + + + + +OG-STATUS-MIB + + +table + + +1.3.6.1.4.1.25049.16.1 + + +current + + +This entity's serial port statistics table. + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.1.1.4 + + +current + + +Serial port bytes transmitted + + +readonly + + + + +OG-STATUS-MIB + + +row + + +1.3.6.1.4.1.25049.16.5.1 + + +current + + +A console signal entry + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.5.1.1 + + +current + + +Index within the table of this alert + + +noaccess + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.5.1.3 + + +current + + +The label for the serial port where the signal applies. + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.5.1.2 + + +current + + +Serial port number on which the signal change occurred + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.5.1.4 + + +current + + +The particular signal which changed + + +readonly + + + + +OG-STATUS-MIB + + +column + + +1.3.6.1.4.1.25049.16.5.1.5 + + +current + + +The current signal state + + +readonly + + + + +OG-STATUS-MIB + + +table + + +1.3.6.1.4.1.25049.16.5 + + +current + + +This entity's serial port signal table. + + + + +OG-STATUS-MIB + + +node + + +1.3.6.1.4.1.25049.16 + + +current + + + + +OG-STATUS-MIB + + +node + + +1.3.6.1.4.1.25049.16.65535.1 + + + + +OG-STATUS-MIB + + +node + + +1.3.6.1.4.1.25049.16.65535 + + + + +OG-STATUS-MIB + + +node + + +1.3.6.1.4.1.25049.16.65535.2 + + + + + + + +SMIv1 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.10 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.10.10 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.15 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.15.10 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.14 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.14.10 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.16 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.16.10 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.12 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.12.10 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.13 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.13.10 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.11 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.11.10 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.10.10.1 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.10.10.1.1.1 + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.10.10.1.1.1.13 + + +current + + +The label for the serial port where the connection +occurred. + + +readonly + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.10.10.1.1.1.12 + + +current + + +Serial port number on which this connection applies + + +readonly + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.10.10.1.1 + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.10.10.1.1.1.11 + + +current + + +The type of connection event + + +readonly + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.10.10.1.1.1.10 + + +current + + +The user pertaining to the connection event + + +readonly + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.15.10.1 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.15.10.1.1.1 + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.15.10.1.1.1.10 + + +current + + +The name of the network interface which failed + + +readonly + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.15.10.1.1.1.11 + + +current + + +The name of the network interface which was connected +instead + + +readonly + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.15.10.1.1 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.14.10.1 + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.14.10.1.1.1.12 + + +current + + +The address of the host to which this connection applies. + + +readonly + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.14.10.1.1.1.13 + + +current + + +The description of the host to which this connection applies. + + +readonly + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.14.10.1.1.1 + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.14.10.1.1.1.15 + + +current + + +The applicable port number of the host. + + +readonly + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.14.10.1.1.1.14 + + +current + + +The internet protocl to which this connection applies. + + +readonly + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.14.10.1.1 + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.14.10.1.1.1.11 + + +current + + +The type of connection event + + +readonly + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.14.10.1.1.1.10 + + +current + + +The user pertaining to the connection event + + +readonly + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.16.10.1 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.16.10.1.1.1 + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.16.10.1.1.1.10 + + +current + + +The name of the UPS pertaining to the status event + + +readonly + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.16.10.1.1 + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.16.10.1.1.1.11 + + +current + + +The type of status event + + +readonly + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.12.10.1 + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.12.10.1.1.1.10 + + +current + + +A description of the matches purpose + + +readonly + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.12.10.1.1.1 + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.12.10.1.1.1.13 + + +current + + +The label for the serial port where pattern match +occurred + + +readonly + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.12.10.1.1.1.12 + + +current + + +Serial port number on which the pattern matched + + +readonly + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.12.10.1.1 + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.12.10.1.1.1.11 + + +current + + +The full text which matched the pattern + + +readonly + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.13.10.1 + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.13.10.1.1.1.11 + + +current + + +The type of device pertaining to the status event + + +readonly + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.13.10.1.1.1 + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.13.10.1.1.1.10 + + +current + + +The name of the device pertaining to the status event + + +readonly + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.13.10.1.1 + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.13.10.1.1.1.12 + + +current + + +The type of sensor pertaining to the status event + + +readonly + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.13.10.1.1.1.13 + + +current + + +The value of the sensor pertaining to the status event + + +readonly + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.11.10.1 + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.11.10.1.1.1 + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.11.10.1.1.1.13 + + +current + + +The label for the serial port where the signal applies. + + +readonly + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.11.10.1.1.1.12 + + +current + + +Serial port number on which this signal applies + + +readonly + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.11.10.1.1.1.11 + + +current + + +The current signal state + + +readonly + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049.2.11.10.1.1 + + + + +OGTRAP-MIB + + +scalar + + +1.3.6.1.4.1.25049.2.11.10.1.1.1.10 + + +current + + +The particular signal which changed + + +readonly + + + + +OGTRAP-MIB + + +node + + +1.3.6.1.4.1.25049 + + + + + + +OGTRAP-MIB + + +notification + + +1.3.6.1.4.1.25049.0.1001 + + +current + + +The alert sent when a user connection event occurs. + + +{'ogconnEventPortLabel': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'ogconnEventUsername': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'ogconnEventType': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'ogconnEventPortNumber': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}} + + + + +OGTRAP-MIB + + +notification + + +1.3.6.1.4.1.25049.0.2002 + + +current + + +The alert sent when a network failover event occurs + + +{'ogfovrEventSecondary': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'ogfovrEventPrimary': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}} + + + + +OGTRAP-MIB + + +notification + + +1.3.6.1.4.1.25049.0.2001 + + +current + + +The alert sent when a user connection event occurs + + +{'oghostEventAddress': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'oghostEventPort': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'oghostEventType': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'oghostEventDescription': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'oghostEventUsername': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'oghostEventProtocol': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}} + + + + +OGTRAP-MIB + + +notification + + +1.3.6.1.4.1.25049.0.2003 + + +current + + +The alert sent when a UPS status event occurs + + +{'ognupsEventName': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'ognupsEventType': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}} + + + + +OGTRAP-MIB + + +notification + + +1.3.6.1.4.1.25049.0.1003 + + +current + + +The alert sent when a pre-defined pattern was +matched text in a consoles serial character stream + + +{'ogpatnEventPortNumber': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'ogpatnEventDescription': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'ogpatnEventPortLabel': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'ogpatnEventText': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}} + + + + +OGTRAP-MIB + + +notification + + +1.3.6.1.4.1.25049.0.1004 + + +current + + +The trap sent when a sensor event occurs + + +{'ogsensStatusName': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'ogsensStatusType': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'ogsensStatusDevType': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'ogsensStatusValue': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}} + + + + +OGTRAP-MIB + + +notification + + +1.3.6.1.4.1.25049.0.1002 + + +current + + +The alert sent when a signal change occurs + + +{'ogsgnlEventState': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'ogsgnlEventPortNumber': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'ogsgnlEventType': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}, 'ogsgnlEventPortLabel': {'nodetype': 'object', 'module': 'OGTRAP-MIB'}} + + + + + + + +SMIv2 + + +Opengear Inc. +630 West 9560 South, +Sandy, UT 84070 +support@opengear.com + + +Opengear console connection MIB + + + + +OPENGEAR-CONNECT-MIB + + +node + + +1.3.6.1.4.1.25049.10.10 + + +current + + + + +OPENGEAR-CONNECT-MIB + + +node + + +1.3.6.1.4.1.25049.10.10.3.1 + + + + +OPENGEAR-CONNECT-MIB + + +node + + +1.3.6.1.4.1.25049.10.10.3 + + + + +OPENGEAR-CONNECT-MIB + + +node + + +1.3.6.1.4.1.25049.10.10.3.2 + + + + +OPENGEAR-CONNECT-MIB + + +node + + +1.3.6.1.4.1.25049.10.10.2 + + + + +OPENGEAR-CONNECT-MIB + + +node + + +1.3.6.1.4.1.25049.10.10.10 + + + + +OPENGEAR-CONNECT-MIB + + +node + + +1.3.6.1.4.1.25049.10.10.10.1 + + + + +OPENGEAR-CONNECT-MIB + + +row + + +1.3.6.1.4.1.25049.10.10.10.1.1.1 + + +current + + +A console connection event occuring at this +device. Each entry is indexed by a message index. + + + + +OPENGEAR-CONNECT-MIB + + +column + + +1.3.6.1.4.1.25049.10.10.10.1.1.1.1 + + +current + + +A monotonically increasing integer for the sole +purpose of indexing messages. When it reaches the +maximum value the agent flushes the table and wraps +the value back to 1. + + +noaccess + + + + +OPENGEAR-CONNECT-MIB + + +column + + +1.3.6.1.4.1.25049.10.10.10.1.1.1.13 + + +current + + +The label for the serial port where the connection applies. + + +readonly + + + + +OPENGEAR-CONNECT-MIB + + +column + + +1.3.6.1.4.1.25049.10.10.10.1.1.1.12 + + +current + + +Serial port number on which this connection applies + + +readonly + + + + +OPENGEAR-CONNECT-MIB + + +table + + +1.3.6.1.4.1.25049.10.10.10.1.1 + + +current + + +A table of sensor status events generated by this device. + + + + +OPENGEAR-CONNECT-MIB + + +column + + +1.3.6.1.4.1.25049.10.10.10.1.1.1.11 + + +current + + +The type of connection event + + +readonly + + + + +OPENGEAR-CONNECT-MIB + + +column + + +1.3.6.1.4.1.25049.10.10.10.1.1.1.10 + + +current + + +The user pertaining to the connection event + + +readonly + + + + +OPENGEAR-CONNECT-MIB + + +node + + +1.3.6.1.4.1.25049.10.10.2.0 + + + + + + +OPENGEAR-CONNECT-MIB + + +notification + + +1.3.6.1.4.1.25049.10.10.2.0.200 + + +current + + +The notification sent when a user connection event occurs + + +{'ogconnEventPortLabel': {'nodetype': 'object', 'module': 'OPENGEAR-CONNECT-MIB'}, 'ogconnEventUsername': {'nodetype': 'object', 'module': 'OPENGEAR-CONNECT-MIB'}, 'ogconnEventType': {'nodetype': 'object', 'module': 'OPENGEAR-CONNECT-MIB'}, 'ogconnEventPortNumber': {'nodetype': 'object', 'module': 'OPENGEAR-CONNECT-MIB'}} + + + + + + + +SMIv2 + + +Opengear Inc. +630 West 9560 South, +Sandy, UT 84070 +support@opengear.com + + +Opengear network failover MIB + + + + +OPENGEAR-FAILOVER-MIB + + +node + + +1.3.6.1.4.1.25049.10.15 + + +current + + + + +OPENGEAR-FAILOVER-MIB + + +node + + +1.3.6.1.4.1.25049.10.15.3.1 + + + + +OPENGEAR-FAILOVER-MIB + + +node + + +1.3.6.1.4.1.25049.10.15.3 + + + + +OPENGEAR-FAILOVER-MIB + + +node + + +1.3.6.1.4.1.25049.10.15.3.2 + + + + +OPENGEAR-FAILOVER-MIB + + +node + + +1.3.6.1.4.1.25049.10.15.2 + + + + +OPENGEAR-FAILOVER-MIB + + +node + + +1.3.6.1.4.1.25049.10.15.10 + + + + +OPENGEAR-FAILOVER-MIB + + +node + + +1.3.6.1.4.1.25049.10.15.10.1 + + + + +OPENGEAR-FAILOVER-MIB + + +row + + +1.3.6.1.4.1.25049.10.15.10.1.1.1 + + +current + + +A console connection event occuring at this +device. Each entry is indexed by a message index. + + + + +OPENGEAR-FAILOVER-MIB + + +column + + +1.3.6.1.4.1.25049.10.15.10.1.1.1.1 + + +current + + +A monotonically increasing integer for the sole +purpose of indexing messages. When it reaches the +maximum value the agent flushes the table and wraps +the value back to 1. + + +noaccess + + + + +OPENGEAR-FAILOVER-MIB + + +column + + +1.3.6.1.4.1.25049.10.15.10.1.1.1.10 + + +current + + +The name of the network interface which failed + + +readonly + + + + +OPENGEAR-FAILOVER-MIB + + +column + + +1.3.6.1.4.1.25049.10.15.10.1.1.1.11 + + +current + + +The name of the network interface which was connected instead + + +readonly + + + + +OPENGEAR-FAILOVER-MIB + + +table + + +1.3.6.1.4.1.25049.10.15.10.1.1 + + +current + + +A table of sensor status events generated by this device. + + + + +OPENGEAR-FAILOVER-MIB + + +node + + +1.3.6.1.4.1.25049.10.15.2.0 + + + + + + +OPENGEAR-FAILOVER-MIB + + +notification + + +1.3.6.1.4.1.25049.10.15.2.0.200 + + +current + + +The notification sent when a network failover event occurs + + +{'ogfovrEventSecondary': {'nodetype': 'object', 'module': 'OPENGEAR-FAILOVER-MIB'}, 'ogfovrEventPrimary': {'nodetype': 'object', 'module': 'OPENGEAR-FAILOVER-MIB'}} + + + + + + + +SMIv2 + + +Opengear Inc. +630 West 9560 South, +Sandy, UT 84070 +support@opengear.com + + +Opengear host connection MIB + + + + +OPENGEAR-HOST-MIB + + +node + + +1.3.6.1.4.1.25049.10.14 + + +current + + + + +OPENGEAR-HOST-MIB + + +node + + +1.3.6.1.4.1.25049.10.14.3.1 + + + + +OPENGEAR-HOST-MIB + + +node + + +1.3.6.1.4.1.25049.10.14.3 + + + + +OPENGEAR-HOST-MIB + + +node + + +1.3.6.1.4.1.25049.10.14.3.2 + + + + +OPENGEAR-HOST-MIB + + +node + + +1.3.6.1.4.1.25049.10.14.2 + + + + +OPENGEAR-HOST-MIB + + +node + + +1.3.6.1.4.1.25049.10.14.10 + + + + +OPENGEAR-HOST-MIB + + +node + + +1.3.6.1.4.1.25049.10.14.10.1 + + + + +OPENGEAR-HOST-MIB + + +column + + +1.3.6.1.4.1.25049.10.14.10.1.1.1.12 + + +current + + +The address of the host to which this connection applies. + + +readonly + + + + +OPENGEAR-HOST-MIB + + +column + + +1.3.6.1.4.1.25049.10.14.10.1.1.1.13 + + +current + + +The description of the host to which this connection applies. + + +readonly + + + + +OPENGEAR-HOST-MIB + + +row + + +1.3.6.1.4.1.25049.10.14.10.1.1.1 + + +current + + +A console connection event occuring at this +device. Each entry is indexed by a message index. + + + + +OPENGEAR-HOST-MIB + + +column + + +1.3.6.1.4.1.25049.10.14.10.1.1.1.1 + + +current + + +A monotonically increasing integer for the sole +purpose of indexing messages. When it reaches the +maximum value the agent flushes the table and wraps +the value back to 1. + + +noaccess + + + + +OPENGEAR-HOST-MIB + + +column + + +1.3.6.1.4.1.25049.10.14.10.1.1.1.15 + + +current + + +The applicable port number of the host. + + +readonly + + + + +OPENGEAR-HOST-MIB + + +column + + +1.3.6.1.4.1.25049.10.14.10.1.1.1.14 + + +current + + +The internet protocl to which this connection applies. + + +readonly + + + + +OPENGEAR-HOST-MIB + + +table + + +1.3.6.1.4.1.25049.10.14.10.1.1 + + +current + + +A table of sensor status events generated by this device. + + + + +OPENGEAR-HOST-MIB + + +column + + +1.3.6.1.4.1.25049.10.14.10.1.1.1.11 + + +current + + +The type of connection event + + +readonly + + + + +OPENGEAR-HOST-MIB + + +column + + +1.3.6.1.4.1.25049.10.14.10.1.1.1.10 + + +current + + +The user pertaining to the connection event + + +readonly + + + + +OPENGEAR-HOST-MIB + + +node + + +1.3.6.1.4.1.25049.10.14.2.0 + + + + + + +OPENGEAR-HOST-MIB + + +notification + + +1.3.6.1.4.1.25049.10.14.2.0.200 + + +current + + +The notification sent when a user connection event occurs + + +{'oghostEventAddress': {'nodetype': 'object', 'module': 'OPENGEAR-HOST-MIB'}, 'oghostEventPort': {'nodetype': 'object', 'module': 'OPENGEAR-HOST-MIB'}, 'oghostEventType': {'nodetype': 'object', 'module': 'OPENGEAR-HOST-MIB'}, 'oghostEventDescription': {'nodetype': 'object', 'module': 'OPENGEAR-HOST-MIB'}, 'oghostEventUsername': {'nodetype': 'object', 'module': 'OPENGEAR-HOST-MIB'}, 'oghostEventProtocol': {'nodetype': 'object', 'module': 'OPENGEAR-HOST-MIB'}} + + + + + + + +SMIv2 + + +Opengear Inc. +630 West 9560 South, +Sandy, UT 84070 +support@opengear.com + + +Opengear console pattern matching MIB + + + + +OPENGEAR-PATTERN-MIB + + +node + + +1.3.6.1.4.1.25049.10.12 + + +current + + + + +OPENGEAR-PATTERN-MIB + + +node + + +1.3.6.1.4.1.25049.10.12.3.1 + + + + +OPENGEAR-PATTERN-MIB + + +node + + +1.3.6.1.4.1.25049.10.12.3 + + + + +OPENGEAR-PATTERN-MIB + + +node + + +1.3.6.1.4.1.25049.10.12.3.2 + + + + +OPENGEAR-PATTERN-MIB + + +node + + +1.3.6.1.4.1.25049.10.12.2 + + + + +OPENGEAR-PATTERN-MIB + + +node + + +1.3.6.1.4.1.25049.10.12.10 + + + + +OPENGEAR-PATTERN-MIB + + +node + + +1.3.6.1.4.1.25049.10.12.10.1 + + + + +OPENGEAR-PATTERN-MIB + + +column + + +1.3.6.1.4.1.25049.10.12.10.1.1.1.10 + + +current + + +A description of the matches purpose + + +readonly + + + + +OPENGEAR-PATTERN-MIB + + +row + + +1.3.6.1.4.1.25049.10.12.10.1.1.1 + + +current + + +A console connection event occuring at this +device. Each entry is indexed by a message index. + + + + +OPENGEAR-PATTERN-MIB + + +column + + +1.3.6.1.4.1.25049.10.12.10.1.1.1.1 + + +current + + +A monotonically increasing integer for the sole +purpose of indexing messages. When it reaches the +maximum value the agent flushes the table and wraps +the value back to 1. + + +noaccess + + + + +OPENGEAR-PATTERN-MIB + + +column + + +1.3.6.1.4.1.25049.10.12.10.1.1.1.13 + + +current + + +The label for the serial port where pattern matched occurred + + +readonly + + + + +OPENGEAR-PATTERN-MIB + + +column + + +1.3.6.1.4.1.25049.10.12.10.1.1.1.12 + + +current + + +Serial port number on which the pattern matched + + +readonly + + + + +OPENGEAR-PATTERN-MIB + + +table + + +1.3.6.1.4.1.25049.10.12.10.1.1 + + +current + + +A table of sensor status events generated by this device. + + + + +OPENGEAR-PATTERN-MIB + + +column + + +1.3.6.1.4.1.25049.10.12.10.1.1.1.11 + + +current + + +The full text which matched the pattern + + +readonly + + + + +OPENGEAR-PATTERN-MIB + + +node + + +1.3.6.1.4.1.25049.10.12.2.0 + + + + + + +OPENGEAR-PATTERN-MIB + + +notification + + +1.3.6.1.4.1.25049.10.12.2.0.200 + + +current + + +An alert sent when a pre-defined pattern was +matched text in a consoles serial character stream + + +{'ogpatnEventPortNumber': {'nodetype': 'object', 'module': 'OPENGEAR-PATTERN-MIB'}, 'ogpatnEventDescription': {'nodetype': 'object', 'module': 'OPENGEAR-PATTERN-MIB'}, 'ogpatnEventPortLabel': {'nodetype': 'object', 'module': 'OPENGEAR-PATTERN-MIB'}, 'ogpatnEventText': {'nodetype': 'object', 'module': 'OPENGEAR-PATTERN-MIB'}} + + + + + + + +SMIv2 + + +Opengear Inc. +630 West 9560 South, +Sandy, UT 84070 +support@opengear.com + + +Opengear Product MIB + + + + +OPENGEAR-PRODUCTS-MIB + + +node + + +1.3.6.1.4.1.25049.1.80 + + + + +OPENGEAR-PRODUCTS-MIB + + +node + + +1.3.6.1.4.1.25049.1.30 + + + + +OPENGEAR-PRODUCTS-MIB + + +node + + +1.3.6.1.4.1.25049.1.1 + + + + +OPENGEAR-PRODUCTS-MIB + + +node + + +1.3.6.1.4.1.25049.1.2 + + + + +OPENGEAR-PRODUCTS-MIB + + +node + + +1.3.6.1.4.1.25049.1.3 + + + + +OPENGEAR-PRODUCTS-MIB + + +node + + +1.3.6.1.4.1.25049.1.10 + + + + +OPENGEAR-PRODUCTS-MIB + + +node + + +1.3.6.1.4.1.25049.1.40 + + + + +OPENGEAR-PRODUCTS-MIB + + +node + + +1.3.6.1.4.1.25049.1.31 + + + + +OPENGEAR-PRODUCTS-MIB + + +node + + +1.3.6.1.4.1.25049.1.50 + + + + +OPENGEAR-PRODUCTS-MIB + + +node + + +1.3.6.1.4.1.25049.1.60 + + + + +OPENGEAR-PRODUCTS-MIB + + +node + + +1.3.6.1.4.1.25049.1.70 + + + + +OPENGEAR-PRODUCTS-MIB + + +node + + +1.3.6.1.4.1.25049.11.2 + + +current + + + + +OPENGEAR-PRODUCTS-MIB + + +node + + +1.3.6.1.4.1.25049.1.20 + + + + +OPENGEAR-PRODUCTS-MIB + + +node + + +1.3.6.1.4.1.25049.1.23 + + + + +OPENGEAR-PRODUCTS-MIB + + +node + + +1.3.6.1.4.1.25049.1.21 + + + + +OPENGEAR-PRODUCTS-MIB + + +node + + +1.3.6.1.4.1.25049.1.24 + + + + +OPENGEAR-PRODUCTS-MIB + + +node + + +1.3.6.1.4.1.25049.1.22 + + + + + + + +SMIv2 + + +Opengear Inc. +630 West 9560 South, +Sandy, UT 84070 +support@opengear.com + + +Opengear SENSOR status MIB + + + + +OPENGEAR-SENSOR-MIB + + +node + + +1.3.6.1.4.1.25049.10.13 + + +current + + + + +OPENGEAR-SENSOR-MIB + + +node + + +1.3.6.1.4.1.25049.10.13.3.1 + + + + +OPENGEAR-SENSOR-MIB + + +node + + +1.3.6.1.4.1.25049.10.13.3 + + + + +OPENGEAR-SENSOR-MIB + + +node + + +1.3.6.1.4.1.25049.10.13.3.2 + + + + +OPENGEAR-SENSOR-MIB + + +node + + +1.3.6.1.4.1.25049.10.13.2 + + + + +OPENGEAR-SENSOR-MIB + + +node + + +1.3.6.1.4.1.25049.10.13.10 + + + + +OPENGEAR-SENSOR-MIB + + +node + + +1.3.6.1.4.1.25049.10.13.2.0 + + + + +OPENGEAR-SENSOR-MIB + + +node + + +1.3.6.1.4.1.25049.10.13.10.1 + + + + +OPENGEAR-SENSOR-MIB + + +column + + +1.3.6.1.4.1.25049.10.13.10.1.3.1.11 + + +current + + +The type of device pertaining to the status event + + +readonly + + + + +OPENGEAR-SENSOR-MIB + + +row + + +1.3.6.1.4.1.25049.10.13.10.1.3.1 + + +current + + +A sensor status event that was previously generated by this +device. Each entry is indexed by a message index. + + + + +OPENGEAR-SENSOR-MIB + + +column + + +1.3.6.1.4.1.25049.10.13.10.1.3.1.1 + + +current + + +A monotonically increasing integer for the sole +purpose of indexing messages. When it reaches the +maximum value the agent flushes the table and wraps +the value back to 1. + + +noaccess + + + + +OPENGEAR-SENSOR-MIB + + +column + + +1.3.6.1.4.1.25049.10.13.10.1.3.1.10 + + +current + + +The name of the device pertaining to the status event + + +readonly + + + + +OPENGEAR-SENSOR-MIB + + +table + + +1.3.6.1.4.1.25049.10.13.10.1.3 + + +current + + +A table of sensor status events generated by this device. + + + + +OPENGEAR-SENSOR-MIB + + +column + + +1.3.6.1.4.1.25049.10.13.10.1.3.1.12 + + +current + + +The type of sensor pertaining to the status event + + +readonly + + + + +OPENGEAR-SENSOR-MIB + + +column + + +1.3.6.1.4.1.25049.10.13.10.1.3.1.13 + + +current + + +The value of the sensor pertaining to the status event + + +readonly + + + + + + +OPENGEAR-SENSOR-MIB + + +notification + + +1.3.6.1.4.1.25049.10.13.2.0.200 + + +current + + +The notification sent when a sensor status event occurs + + +{'ogsensStatusName': {'nodetype': 'object', 'module': 'OPENGEAR-SENSOR-MIB'}, 'ogsensStatusType': {'nodetype': 'object', 'module': 'OPENGEAR-SENSOR-MIB'}, 'ogsensStatusDevType': {'nodetype': 'object', 'module': 'OPENGEAR-SENSOR-MIB'}, 'ogsensStatusValue': {'nodetype': 'object', 'module': 'OPENGEAR-SENSOR-MIB'}} + + + + + + + +SMIv2 + + +Opengear Inc. +630 West 9560 South, +Sandy, UT 84070 +support@opengear.com + + +Opengear serial console signal MIB + + + + +OPENGEAR-SIGNAL-MIB + + +node + + +1.3.6.1.4.1.25049.10.11 + + +current + + + + +OPENGEAR-SIGNAL-MIB + + +node + + +1.3.6.1.4.1.25049.10.11.3.1 + + + + +OPENGEAR-SIGNAL-MIB + + +node + + +1.3.6.1.4.1.25049.10.11.3 + + + + +OPENGEAR-SIGNAL-MIB + + +node + + +1.3.6.1.4.1.25049.10.11.3.2 + + + + +OPENGEAR-SIGNAL-MIB + + +node + + +1.3.6.1.4.1.25049.10.11.2 + + + + +OPENGEAR-SIGNAL-MIB + + +node + + +1.3.6.1.4.1.25049.10.11.10 + + + + +OPENGEAR-SIGNAL-MIB + + +node + + +1.3.6.1.4.1.25049.10.11.10.1 + + + + +OPENGEAR-SIGNAL-MIB + + +row + + +1.3.6.1.4.1.25049.10.11.10.1.1.1 + + +current + + +A console connection event occuring at this +device. Each entry is indexed by a message index. + + + + +OPENGEAR-SIGNAL-MIB + + +column + + +1.3.6.1.4.1.25049.10.11.10.1.1.1.1 + + +current + + +A monotonically increasing integer for the sole +purpose of indexing messages. When it reaches the +maximum value the agent flushes the table and wraps +the value back to 1. + + +noaccess + + + + +OPENGEAR-SIGNAL-MIB + + +column + + +1.3.6.1.4.1.25049.10.11.10.1.1.1.13 + + +current + + +The label for the serial port where the signal applies. + + +readonly + + + + +OPENGEAR-SIGNAL-MIB + + +column + + +1.3.6.1.4.1.25049.10.11.10.1.1.1.12 + + +current + + +Serial port number on which this signal applies + + +readonly + + + + +OPENGEAR-SIGNAL-MIB + + +column + + +1.3.6.1.4.1.25049.10.11.10.1.1.1.11 + + +current + + +The current signal state + + +readonly + + + + +OPENGEAR-SIGNAL-MIB + + +table + + +1.3.6.1.4.1.25049.10.11.10.1.1 + + +current + + +A table of serial signal events generated by this device. + + + + +OPENGEAR-SIGNAL-MIB + + +column + + +1.3.6.1.4.1.25049.10.11.10.1.1.1.10 + + +current + + +The particular signal which changed + + +readonly + + + + +OPENGEAR-SIGNAL-MIB + + +node + + +1.3.6.1.4.1.25049.10.11.2.0 + + + + + + +OPENGEAR-SIGNAL-MIB + + +notification + + +1.3.6.1.4.1.25049.10.11.2.0.200 + + +current + + +The notification sent when a signal change occurs + + +{'ogsgnlEventState': {'nodetype': 'object', 'module': 'OPENGEAR-SIGNAL-MIB'}, 'ogsgnlEventPortNumber': {'nodetype': 'object', 'module': 'OPENGEAR-SIGNAL-MIB'}, 'ogsgnlEventType': {'nodetype': 'object', 'module': 'OPENGEAR-SIGNAL-MIB'}, 'ogsgnlEventPortLabel': {'nodetype': 'object', 'module': 'OPENGEAR-SIGNAL-MIB'}} + + + + + + + +SMIv2 + + +Opengear Inc. +630 West 9560 South, +Sandy, UT 84070 +support@opengear.com + + +Opengear Structure of Management Information MIB + + + + +OPENGEAR-SMI-MIB + + +node + + +1.3.6.1.4.1.25049.8 + + +current + + +ogAgentCapability provides a root object identifier +from which AGENT-CAPABILITIES values may be assigned. + + + + +OPENGEAR-SMI-MIB + + +node + + +1.3.6.1.4.1.25049.9 + + +current + + +ogConfig is the main subtree for configuration mibs. + + + + +OPENGEAR-SMI-MIB + + +node + + +1.3.6.1.4.1.25049.3 + + +current + + +Subtree reserved for experimental MIBS. + + + + +OPENGEAR-SMI-MIB + + +node + + +1.3.6.1.4.1.25049.4 + + +current + + +Subtree reserved for use by Opengear internal groups + + + + +OPENGEAR-SMI-MIB + + +node + + +1.3.6.1.4.1.25049.10 + + +current + + +The main subtree for MIB development. + + + + +OPENGEAR-SMI-MIB + + +node + + +1.3.6.1.4.1.25049.11 + + +current + + +ogModules provides a root object identifier +from which MODULE-IDENTITY values may be assigned. + + + + +OPENGEAR-SMI-MIB + + +node + + +1.3.6.1.4.1.25049.1 + + +current + + +ogProducts is the root OBJECT IDENTIFIER from +which sysObjectID values are assigned. Actual +values are defined in OG-PRODUCTS-MIB. + + + + +OPENGEAR-SMI-MIB + + +node + + +1.3.6.1.4.1.25049.5 + + +current + + +Reserved for future use + + + + +OPENGEAR-SMI-MIB + + +node + + +1.3.6.1.4.1.25049.6 + + +current + + +Reserved for future use + + + + +OPENGEAR-SMI-MIB + + +node + + +1.3.6.1.4.1.25049.7 + + +current + + +otherEnterprises provides a root object identifier +from which mibs produced by other companies may be +placed. mibs produced by other enterprises are +typicially implemented with the object identifiers +as defined in the mib, but if the mib is deemed to +be uncontrolled, we may reroot the mib at this +subtree in order to have a controlled version. + + + + + + + +SMIv2 + + +Opengear Inc. +630 West 9560 South, +Sandy, UT 84070 +support@opengear.com + + +Opengear UPS status MIB + + + + +OPENGEAR-UPS-MIB + + +node + + +1.3.6.1.4.1.25049.10.16 + + +current + + + + +OPENGEAR-UPS-MIB + + +node + + +1.3.6.1.4.1.25049.10.16.3.1 + + + + +OPENGEAR-UPS-MIB + + +node + + +1.3.6.1.4.1.25049.10.16.3 + + + + +OPENGEAR-UPS-MIB + + +node + + +1.3.6.1.4.1.25049.10.16.3.2 + + + + +OPENGEAR-UPS-MIB + + +node + + +1.3.6.1.4.1.25049.10.16.2 + + + + +OPENGEAR-UPS-MIB + + +node + + +1.3.6.1.4.1.25049.10.16.10 + + + + +OPENGEAR-UPS-MIB + + +node + + +1.3.6.1.4.1.25049.10.16.10.1 + + + + +OPENGEAR-UPS-MIB + + +row + + +1.3.6.1.4.1.25049.10.16.10.1.1.1 + + +current + + +A console connection event occuring at this +device. Each entry is indexed by a message index. + + + + +OPENGEAR-UPS-MIB + + +column + + +1.3.6.1.4.1.25049.10.16.10.1.1.1.1 + + +current + + +A monotonically increasing integer for the sole +purpose of indexing messages. When it reaches the +maximum value the agent flushes the table and wraps +the value back to 1. + + +noaccess + + + + +OPENGEAR-UPS-MIB + + +column + + +1.3.6.1.4.1.25049.10.16.10.1.1.1.10 + + +current + + +The name of the UPS pertaining to the status event + + +readonly + + + + +OPENGEAR-UPS-MIB + + +table + + +1.3.6.1.4.1.25049.10.16.10.1.1 + + +current + + +A table of serial signal events generated by this device. + + + + +OPENGEAR-UPS-MIB + + +column + + +1.3.6.1.4.1.25049.10.16.10.1.1.1.11 + + +current + + +The type of status event + + +readonly + + + + +OPENGEAR-UPS-MIB + + +node + + +1.3.6.1.4.1.25049.10.16.2.0 + + + + + + +OPENGEAR-UPS-MIB + + +notification + + +1.3.6.1.4.1.25049.10.16.2.0.200 + + +current + + +The notification sent when a UPS status event occurs + + +{'ognupsEventName': {'nodetype': 'object', 'module': 'OPENGEAR-UPS-MIB'}, 'ognupsEventType': {'nodetype': 'object', 'module': 'OPENGEAR-UPS-MIB'}} + + + + + diff --git a/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/skins/ZenPacks.Opengear.MIBs/placeholder.txt b/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/skins/ZenPacks.Opengear.MIBs/placeholder.txt new file mode 100644 index 0000000..e69de29 diff --git a/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/tests/__init__.py b/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/tests/__init__.py new file mode 100644 index 0000000..f8927bd --- /dev/null +++ b/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/MIBs/tests/__init__.py @@ -0,0 +1,12 @@ +# ########################################################################## +# +# This program is part of Zenoss Core, an open source monitoring platform. +# Copyright (C) 2008, Zenoss Inc. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License version 2 as published by +# the Free Software Foundation. +# +# For complete information please visit: http://www.zenoss.com/oss/ +# +# ########################################################################## diff --git a/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/__init__.py b/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/__init__.py new file mode 100644 index 0000000..de40ea7 --- /dev/null +++ b/ZenPacks.Opengear.MIBs/ZenPacks/Opengear/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/ZenPacks.Opengear.MIBs/ZenPacks/__init__.py b/ZenPacks.Opengear.MIBs/ZenPacks/__init__.py new file mode 100644 index 0000000..de40ea7 --- /dev/null +++ b/ZenPacks.Opengear.MIBs/ZenPacks/__init__.py @@ -0,0 +1 @@ +__import__('pkg_resources').declare_namespace(__name__) diff --git a/ZenPacks.Opengear.MIBs/setup.py b/ZenPacks.Opengear.MIBs/setup.py new file mode 100644 index 0000000..72bc3e3 --- /dev/null +++ b/ZenPacks.Opengear.MIBs/setup.py @@ -0,0 +1,69 @@ +################################ +# These variables are overwritten by Zenoss when the ZenPack is exported +# or saved. Do not modify them directly here. +# NB: PACKAGES is deprecated +NAME = "ZenPacks.Opengear.MIBs" +VERSION = "1.0" +AUTHOR = "Peter Hunt " +LICENSE = "" +NAMESPACE_PACKAGES = ['ZenPacks', 'ZenPacks.Opengear'] +PACKAGES = ['ZenPacks', 'ZenPacks.Opengear', 'ZenPacks.Opengear.MIBs'] +INSTALL_REQUIRES = [] +COMPAT_ZENOSS_VERS = '>=2.5' +PREV_ZENPACK_NAME = "" +# STOP_REPLACEMENTS +################################ +# Zenoss will not overwrite any changes you make below here. + +from setuptools import setup, find_packages + +setup( + # This ZenPack metadata should usually be edited with the Zenoss + # ZenPack edit page. Whenever the edit page is submitted it will + # overwrite the values below (the ones it knows about) with new values. + name = NAME, + version = VERSION, + author = AUTHOR, + license = LICENSE, + + # This is the version spec which indicates what versions of Zenoss + # this ZenPack is compatible with + compatZenossVers = COMPAT_ZENOSS_VERS, + + # previousZenPackName is a facility for telling Zenoss that the name + # of this ZenPack has changed. If no ZenPack with the current name is + # installed then a zenpack of this name if installed will be upgraded. + prevZenPackName = PREV_ZENPACK_NAME, + + # Indicate to setuptools which namespace packages the zenpack + # participates in + namespace_packages = NAMESPACE_PACKAGES, + + # Tell setuptools what packages this zenpack provides. + packages = find_packages(), + + # Tell setuptools to figure out for itself which files to include + # in the binary egg when it is built. + include_package_data = True, + + # The MANIFEST.in file is the recommended way of including additional files + # in your ZenPack. package_data is another. + #package_data = {} + + # Indicate dependencies on other python modules or ZenPacks. This line + # is modified by zenoss when the ZenPack edit page is submitted. Zenoss + # tries to put add/delete the names it manages at the beginning of this + # list, so any manual additions should be added to the end. Things will + # go poorly if this line is broken into multiple lines or modified to + # dramatically. + install_requires = INSTALL_REQUIRES, + + # Every ZenPack egg must define exactly one zenoss.zenpacks entry point + # of this form. + entry_points = { + 'zenoss.zenpacks': '%s = %s' % (NAME, NAME), + }, + + # All ZenPack eggs must be installed in unzipped form. + zip_safe = False, +)