⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 old-snmpea-mib-v2.mib

📁 OTP是开放电信平台的简称
💻 MIB
📖 第 1 页 / 共 2 页
字号:
OLD-SNMPEA-MIB-v2 DEFINITIONS ::= BEGIN IMPORTS    MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,    TimeTicks, Counter32, snmpModules, mib-2, enterprises, IpAddress,    Integer32        FROM SNMPv2-SMI    DisplayString, TestAndIncr, TimeStamp, RowStatus, TruthValue,    TEXTUAL-CONVENTION        FROM SNMPv2-TC    MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP        FROM SNMPv2-CONF;internalMIBv2 MODULE-IDENTITY    LAST-UPDATED "9511090000Z"    ORGANIZATION ""    CONTACT-INFO	""    DESCRIPTION            "v2 variant of INTERNAL-MIB. Used for compatibility testing."    ::= { snmpModules 1 }ericsson       OBJECT IDENTIFIER ::= {enterprises 193}otp            OBJECT IDENTIFIER ::= {ericsson 19}otpApplications               OBJECT IDENTIFIER ::= {otp 3}otpSnmpeaMIB    OBJECT IDENTIFIER ::= { otpApplications 3 }otpSnmpeaMIBObjects                OBJECT IDENTIFIER ::= { otpSnmpeaMIB 2 }snmpeaAdm       OBJECT IDENTIFIER ::= { otpSnmpeaMIBObjects 1}community       OBJECT IDENTIFIER ::= { snmpeaAdm 1 }trap            OBJECT IDENTIFIER ::= { snmpeaAdm 2 }view            OBJECT IDENTIFIER ::= { snmpeaAdm 3 }          -- DatatypeStorageType ::= TEXTUAL-CONVENTION    STATUS       current    DESCRIPTION            "Describes the memory realization of a conceptual row.  A            row which is volatile(2) is lost upon reboot.  A row which            is either nonVolatile(3), permanent(4) or readOnly(5), is            backed up by stable storage.  A row which is permanent(4)            can be changed but not deleted.  A row which is readOnly(5)            cannot be changed nor deleted.            If the value of an object with this syntax is either            permanent(4) or readOnly(5), it cannot be modified.            Conversely, if the value is either other(1), volatile(2) or            nonVolatile(3), it cannot be modified to be permanent(4) or            readOnly(5).            Every usage of this textual convention is required to            specify the columnar objects which a permanent(4) row must            at a minimum allow to be writable."    SYNTAX       INTEGER {                     other(1),       -- eh?                     volatile(2),    -- e.g., in RAM                     nonVolatile(3), -- e.g., in NVRAM                     permanent(4)   -- e.g., partially in ROM                 }          -- Managed Objects          intCommunityTable OBJECT-TYPE              SYNTAX      SEQUENCE OF IntCommunityEntry              MAX-ACCESS      not-accessible              STATUS      current              DESCRIPTION		      "This table defines access for the different                      communities.                      When a request comes from a certain ip address,                      referring to a community string, the mib view                      and access corresponding to these are looked up                      in this table. Then the operation is validatated against                      the access, and all requested objects validated against                      the mib view."	      ::= { community 1}          intCommunityEntry OBJECT-TYPE              SYNTAX      IntCommunityEntry              MAX-ACCESS      not-accessible              STATUS      current              DESCRIPTION		      ""              INDEX      { intCommunityDestination, intCommunityString }              ::= { intCommunityTable 1 }          IntCommunityEntry ::=              SEQUENCE {                  intCommunityDestination      IpAddress,                  intCommunityString           DisplayString,                  intCommunityViewIndex        Integer32,                  intCommunityAccess           INTEGER,                  intCommunityStatus           RowStatus              }          intCommunityDestination OBJECT-TYPE              SYNTAX      IpAddress              MAX-ACCESS      not-accessible              STATUS      current              DESCRIPTION                      "The ip address of a management station. The special                      ip address {0.0.0.0} is a wildcard, meaning all possible                      ip addresses. In this way, access can be granted to all                      ip addressed for some communities."              ::= { intCommunityEntry 1 }          intCommunityString OBJECT-TYPE              SYNTAX      DisplayString              MAX-ACCESS      not-accessible              STATUS      current              DESCRIPTION                      "The community string, defining the community."              ::= { intCommunityEntry 2 }          intCommunityViewIndex OBJECT-TYPE              SYNTAX      Integer32              MAX-ACCESS      read-create              STATUS      current              DESCRIPTION                      "Identifies a mib view.  Index into the                      intViewTable."              ::= { intCommunityEntry 3 }          intCommunityAccess OBJECT-TYPE              SYNTAX      INTEGER { read(1), readWrite(2) }              MAX-ACCESS      read-create              STATUS      current              DESCRIPTION                      "Defines which operations the manager can perform                      on the objects in the mib view."              ::= { intCommunityEntry 4 }          intCommunityStatus OBJECT-TYPE              SYNTAX      RowStatus              MAX-ACCESS      read-create              STATUS      current              DESCRIPTION                      "The status of this conceptual row in the                      intCommunityTable."              ::= { intCommunityEntry 5 }          intAgentIpAddress OBJECT-TYPE              SYNTAX      IpAddress              MAX-ACCESS      read-only              STATUS      current              DESCRIPTION		"The IP address of this agent."	      ::= { community 2 }          intAgentUDPPort OBJECT-TYPE              SYNTAX      INTEGER              MAX-ACCESS      read-only              STATUS      current              DESCRIPTION		"The UDP port the agent listens to."              DEFVAL { 161 }	      ::= { community 3 }          intAgentMaxPacketSize OBJECT-TYPE              SYNTAX      INTEGER (484..65535)              MAX-ACCESS      read-only              STATUS      current              DESCRIPTION		"The maximum packet size in bytes this agent will send to a                manager."	      ::= { community 4 }          intAddressTable OBJECT-TYPE              SYNTAX      SEQUENCE OF IntAddressEntry              MAX-ACCESS      not-accessible              STATUS      current              DESCRIPTION		"This table holds UDP related information on each known                management station."	      ::= { community 5 }          intAddressEntry OBJECT-TYPE              SYNTAX      IntAddressEntry              MAX-ACCESS      not-accessible              STATUS      current              DESCRIPTION		""              INDEX      { intAddressDestination }              ::= { intAddressTable 1 }          IntAddressEntry ::=              SEQUENCE {                  intAddressDestination        IpAddress,                  intAddressUDPPort            INTEGER,                  intAddressMaxPacketSize      INTEGER (484..65535),                  intAddressStatus             RowStatus              }          intAddressDestination OBJECT-TYPE              SYNTAX      IpAddress              MAX-ACCESS      not-accessible              STATUS      current              DESCRIPTION                      "The ip address of the management station."              ::= { intAddressEntry 1 }          intAddressUDPPort OBJECT-TYPE              SYNTAX      INTEGER              MAX-ACCESS      read-create              STATUS      current              DESCRIPTION                      "The UDP port to which traps will be sent to                      this destination."	      DEFVAL { 162 }              ::= { intAddressEntry 2 }          intAddressMaxPacketSize OBJECT-TYPE              SYNTAX      INTEGER (484..65535)              MAX-ACCESS      read-create              STATUS      current              DESCRIPTION                      "The maximum packet size in bytes for Messages                      sent to this destination.  The max size of a packet                      sent to this destination will be the minumim of                      this variable and agentMaxPacketSize.0."              ::= { intAddressEntry 3 }          intAddressStatus OBJECT-TYPE              SYNTAX      RowStatus              MAX-ACCESS      read-create              STATUS      current              DESCRIPTION                      "The status of this conceptual row in the                      intAddressTable."              ::= { intAddressEntry 4 }          intTrapDestTable OBJECT-TYPE              SYNTAX      SEQUENCE OF IntTrapDestEntry

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -