-- ***************************************************************************** -- OTX-T1E1-LI-MIB.txt: OTX T1E1 Line Interfaces Object Identifier Assignments -- -- September 2013, Andrey S. Mats -- -- Copyright (C) 2013 Garant Plus Technologies -- All Rights Reserved. -- -- ***************************************************************************** -- OTX-T1E1-LI-MIB DEFINITIONS ::= BEGIN IMPORTS MODULE-IDENTITY, OBJECT-TYPE, Integer32, TimeTicks, Counter32 FROM SNMPv2-SMI DisplayString FROM SNMPv2-TC otxModules, otxMgmt FROM OTX-SMI; otxT1E1LiMIB MODULE-IDENTITY LAST-UPDATED "201309231800Z" ORGANIZATION "Garant Plus Technologies" CONTACT-INFO " Garant Plus Technologies Customer Service Email: Support@otx.ru Fax : +7-4852-722-325 Phone: +7-4852-59-30-60 (M-F 10 a.m. - 19 p.m. MSK (GMT+4))" DESCRIPTION "The Structure of Management Information for the OTX Enterprise." REVISION "201309231800Z" DESCRIPTION "Renamed to OTX." REVISION "201008061700Z" DESCRIPTION "Added the liAlarm OBJECT-TYPE." REVISION "200906031600Z" DESCRIPTION "Initial version." ::= { otxModules 2 } -- InterfaceIndex contains the semantics of liIndex and should be used -- for any objects defined in other MIB modules that need these semantics. InterfaceIndex ::= TEXTUAL-CONVENTION DISPLAY-HINT "d" STATUS current DESCRIPTION "A unique value, greater than zero, for each T1E1 line interface in the managed system. It is recommended that values are assigned contiguously starting from 1." SYNTAX Integer32 (1..2147483647) t1e1Li OBJECT IDENTIFIER ::= { otxMgmt 1 } liNumber OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of T1E1 line interfaces (regardless of their current state) present on this system." ::= { t1e1Li 1 } -- The T1E1 Line Interfaces table liTable OBJECT-TYPE SYNTAX SEQUENCE OF LiEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A list of interface entries. The number of entries is given by the value of liNumber." ::= { t1e1Li 2 } liEntry OBJECT-TYPE SYNTAX LiEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "An entry containing management information applicable to a particular interface." INDEX { liIndex } ::= { liTable 1 } LiEntry ::= SEQUENCE { liIndex InterfaceIndex, liName DisplayString, liStatus INTEGER, liT1E1Mode INTEGER, liLastChange TimeTicks, liErrors Counter32 } liIndex OBJECT-TYPE SYNTAX InterfaceIndex MAX-ACCESS read-only STATUS current DESCRIPTION "A unique value, greater than zero, for each T1E1 line interface in the managed system. It is recommended that values are assigned contiguously starting from 1." ::= { liEntry 1 } liName OBJECT-TYPE SYNTAX DisplayString (SIZE (0..255)) MAX-ACCESS read-only STATUS current DESCRIPTION "A textual string containing the T1E1 line interface name." ::= { liEntry 2 } liStatus OBJECT-TYPE SYNTAX INTEGER { down(0), up(1) } MAX-ACCESS read-only STATUS current DESCRIPTION "The current operational state of the T1E1 line interface." ::= { liEntry 3 } liT1E1Mode OBJECT-TYPE SYNTAX INTEGER { t1(0), e1(1) } MAX-ACCESS read-only STATUS current DESCRIPTION "The current mode of the T1E1 line interface." ::= { liEntry 4 } liLastChange OBJECT-TYPE SYNTAX TimeTicks MAX-ACCESS read-only STATUS current DESCRIPTION "The value of sysUpTime at the time the T1E1 line interface entered its current operational state. If the current state was entered prior to the last re-initialization of the local network management subsystem, then this object contains a zero value." ::= { liEntry 5 } liErrors OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The count of the errors related with this T1E1 line interface." ::= { liEntry 6 } -- End of the T1E1 Line Interfaces table liAlarm OBJECT-TYPE SYNTAX DisplayString (SIZE (0..255)) MAX-ACCESS read-only STATUS current DESCRIPTION "A textual string containing the last E1/T1 Alarm. Primarily used to send traps." ::= { t1e1Li 3 } END