-- ===================================================================== -- == OPENGEAR-CM-CONSOLE-CONNECTION-MIB : == -- == Opengear connection notification Management Information Base == -- == == -- == (c) Copyright 2005-2006 Opengear Inc. == -- ===================================================================== OPENGEAR-CM-CONSOLE-CONNECTION-MIB DEFINITIONS ::= BEGIN IMPORTS connection FROM OPENGEAR-SMI OBJECT-TYPE FROM RFC-1212 TRAP-TYPE FROM RFC-1215 NOTIFICATION-TYPE FROM SNMPv2-SMI; -- pattern MODULE-IDENTITY -- LAST-UPDATED "0201090100Z" -- ORGANIZATION "Opengear Inc." -- CONTACT-INFO -- "Opengear Inc. -- 7984 South Welby Park #101, -- West Jordan, UT 84088 -- support@opengear.com" -- DESCRIPTION -- "Opengear console connection MIB" -- ::= { console 10 } -- === + Textual Conventions + =========================================== DisplayString ::= OCTET STRING -- ======================================================================= event OBJECT-TYPE SYNTAX EventEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "A console connection event" ::= { connection 10 } EventEntry ::= SEQUENCE { username DisplayString, type DisplayString, portNumber INTEGER, portLabel DisplayString, } username OBJECT-TYPE SYNTAX DisplayString ACCESS read-only STATUS mandatory DESCRIPTION "The user pertaining to the connection event" ::= { event 10 } type OBJECT-TYPE SYNTAX DisplayString ACCESS read-only STATUS mandatory DESCRIPTION "The type of connection event" ::= { event 11 } portNumber OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Serial port number on which this connection applies" ::= { event 12 } portLabel OBJECT-TYPE SYNTAX DisplayString ACCESS read-only STATUS mandatory DESCRIPTION "The label for the serial port where the connection applies." ::= { event 13 } alert TRAP-TYPE ENTERPRISE connection VARIABLES { username, type, portNumber, portLabel} DESCRIPTION "The alert sent when a user connection event occurs" ::= 100 notification NOTIFICATION-TYPE STATUS current OBJECTS { username, type, portNumber, portLabel } DESCRIPTION "The notification sent when a user connection event occurs" ::= { connection 200 } END