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

📄 rfc3055.mib

📁 wm PNE 3.3 source code, running at more than vxworks6.x version.
💻 MIB
📖 第 1 页 / 共 2 页
字号:
PINT-MIB DEFINITIONS ::= BEGIN         IMPORTS          OBJECT-TYPE, Counter32, MODULE-IDENTITY, mib-2         FROM   SNMPv2-SMI         TEXTUAL-CONVENTION         FROM SNMPv2-TC         MODULE-COMPLIANCE, OBJECT-GROUP         FROM SNMPv2-CONF         sysApplInstallPkgEntry         FROM SYSAPPL-MIB         SnmpAdminString         FROM SNMP-FRAMEWORK-MIB;  -- RFC 2571 [2]         pintMib MODULE-IDENTITY         LAST-UPDATED "200102010000Z" -- 1 Feb 2001ORGANIZATION "IETF PINT Working Group"CONTACT-INFO "        Chairs:  Steve Bellovin                    E-mail: smb@research.att.com                    Igor Faynberg                    E-mail: faynberg@lucent.com        Authors: Murali Krishnaswamy                     Postal: 20 Corporate Place South                                Piscataway, NJ 08854                                Tel:    +1 (732)465-1000                                E-mail: murali@photuris.com                                Dan Romascanu                                Postal: Atidim Technology Park, Bldg 3                                Tel Aviv, Israel                                Tel:    +972 3 6458414                                E-mail: dromasca@avaya.com        General Discussion:pint@lists.bell-labs.com        To Subscribe: pint-request@lists.bell-labs.com        In Body: subscribe your-email-addres        Archive: http://www.bell-labs.com/mailing-lists/pint/        "DESCRIPTION    "This MIB defines the objects necessary to monitor     PINT Services"-- Revision historyREVISION "200102010000Z" -- 1 Feb 2001DESCRIPTION    "Initial version, published as RFC 3055."::= { mib-2 93 }PintServiceType ::= TEXTUAL-CONVENTION        STATUS      current        DESCRIPTION            "This TC describes the type of a PINT service."        SYNTAX  INTEGER {                r2C(1),     -- Request-to-Talk                r2F(2),     -- Request-to-Fax                r2FB(3),    -- Request-to-Fax-Back                r2HC(4)     -- Request-to-Hear-Content        }PintPerfStatPeriod ::= TEXTUAL-CONVENTIONSTATUS      currentDESCRIPTION    "This TC describes the statistics period of time.    Note that the values of the counters indexed with a value    SinceReboot(4) can be potentially affected by a counter rollover.    It is the responsibility of the application using this object to    take into account that the counter has been zeroed each time it    reached a value of (2**32-1)."SYNTAX  INTEGER {last30sec(1),   -- Performance Statics for the last 30 seclast15min(2),   --    15 minlast24Hr(3),    --    24 HoursinceReboot(4)  --    Since the time the pint server was--      last rebooted}pintServerConfig        OBJECT IDENTIFIER ::= { pintMib 1 }pintServerMonitor       OBJECT IDENTIFIER ::= { pintMib 2 }pintMibConformance      OBJECT IDENTIFIER ::= { pintMib 3 }-- pintServerConfig - PINT configuration MIB variablespintReleaseNumber OBJECT-TYPE    SYNTAX      SnmpAdminString    MAX-ACCESS read-only    STATUS current    DESCRIPTION     "An indication of version of the PINT protocol supported     by this agent."    ::= { pintServerConfig 1 }pintSysContact           OBJECT-TYPE    SYNTAX        SnmpAdminString    MAX-ACCESS read-write    STATUS current    DESCRIPTION     "Contact information related to the administration of the PINT     services."    ::= { pintServerConfig 2 }pintApplInstallPkgTable OBJECT-TYPE    SYNTAX      SEQUENCE OF PintApplInstallPkgEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION     "Table describing the PINT applications that are installed."    ::= { pintServerConfig 3 }pintApplInstallPkgEntry OBJECT-TYPE    SYNTAX      PintApplInstallPkgEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION     "Entries per PINT Application."    AUGMENTS { sysApplInstallPkgEntry }    ::= { pintApplInstallPkgTable 1 }PintApplInstallPkgEntry ::= SEQUENCE {pintApplInstallPkgDescription    SnmpAdminString}pintApplInstallPkgDescription OBJECT-TYPE    SYNTAX        SnmpAdminString    MAX-ACCESS  read-only    STATUS        current    DESCRIPTION     "Textual description of the installed PINT application."    ::= { pintApplInstallPkgEntry 1 }pintRegisteredGatewayTable OBJECT-TYPE    SYNTAX      SEQUENCE OF PintRegisteredGatewayEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION     "Table describing the registered gateway applications."    ::= { pintServerConfig 4 }pintRegisteredGatewayEntry OBJECT-TYPE    SYNTAX      PintRegisteredGatewayEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION     "Entries per Registered Gateway Application."AUGMENTS { sysApplInstallPkgEntry  }    ::= { pintRegisteredGatewayTable 1 }PintRegisteredGatewayEntry ::= SEQUENCE {pintRegisteredGatewayName       SnmpAdminString,pintRegisteredGatewayDescription SnmpAdminString}pintRegisteredGatewayName OBJECT-TYPE    SYNTAX        SnmpAdminString    MAX-ACCESS read-only    STATUS        current    DESCRIPTION     "Name of the registered gateway."    ::= { pintRegisteredGatewayEntry 1 }pintRegisteredGatewayDescription OBJECT-TYPE    SYNTAX        SnmpAdminString    MAX-ACCESS  read-only    STATUS        current    DESCRIPTION     "Textual description of the registered gateway."    ::= { pintRegisteredGatewayEntry 2 }-- pintServerMonitor - PINT monitoring statistics MIB variablespintServerGlobalPerf    OBJECT IDENTIFIER ::= {pintServerMonitor 1 }pintServerClientPerf    OBJECT IDENTIFIER ::= {pintServerMonitor 2 }pintServerUserIdPerf    OBJECT IDENTIFIER ::= {pintServerMonitor 3 }pintServerGatewayPerf   OBJECT IDENTIFIER ::= {pintServerMonitor 4 }pintServerGlobalStatsTable      OBJECT-TYPE    SYNTAX      SEQUENCE OF PintServerGlobalStatsEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION     "Table displaying the monitored global server statistics."    ::= { pintServerGlobalPerf 1 }pintServerGlobalStatsEntry OBJECT-TYPE    SYNTAX      PintServerGlobalStatsEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION     "Entries in the global statistics table.     One entry is defined for each monitored service type and     performance statistics collection period."    INDEX {pintServerServiceTypeIndex, pintServerPerfStatPeriodIndex}    ::= { pintServerGlobalStatsTable 1 }PintServerGlobalStatsEntry      ::=  SEQUENCE {pintServerServiceTypeIndex                           PintServiceType,pintServerPerfStatPeriodIndex                        PintPerfStatPeriod,pintServerGlobalCallsReceived                        Counter32,pintServerGlobalSuccessfulCalls                      Counter32,pintServerGlobalDisconnectedCalls                    Counter32,pintServerGlobalDisCUAutFCalls                       Counter32,pintServerGlobalDisServProbCalls                     Counter32,pintServerGlobalDisGatProbCalls         Counter32}pintServerServiceTypeIndex OBJECT-TYPE    SYNTAX     PintServiceType    MAX-ACCESS not-accessible    STATUS     current    DESCRIPTION     "The unique identifier of the monitored service."    ::= { pintServerGlobalStatsEntry 1 }pintServerPerfStatPeriodIndex OBJECT-TYPE    SYNTAX     PintPerfStatPeriod    MAX-ACCESS not-accessible    STATUS     current    DESCRIPTION     "Time period for which the performance statistics are requested     from the pint server."    ::= { pintServerGlobalStatsEntry 2 }pintServerGlobalCallsReceived OBJECT-TYPE    SYNTAX     Counter32    MAX-ACCESS read-only    STATUS     current    DESCRIPTION     "Number of received global calls."    ::= { pintServerGlobalStatsEntry 3 }pintServerGlobalSuccessfulCalls OBJECT-TYPE    SYNTAX     Counter32    MAX-ACCESS read-only    STATUS     current    DESCRIPTION     "Number of global successful calls."    ::= { pintServerGlobalStatsEntry 4 }pintServerGlobalDisconnectedCalls OBJECT-TYPE    SYNTAX     Counter32    MAX-ACCESS read-only    STATUS     current    DESCRIPTION     "Number of global disconnected (failed) calls."    ::= { pintServerGlobalStatsEntry 5 }pintServerGlobalDisCUAutFCallsOBJECT-TYPESYNTAX     Counter32MAX-ACCESS read-onlySTATUS     currentDESCRIPTION    "Number of global calls that were disconnected because of client    or user authorization failure."::= { pintServerGlobalStatsEntry 6 }pintServerGlobalDisServProbCalls OBJECT-TYPE    SYNTAX     Counter32    MAX-ACCESS read-only    STATUS     current    DESCRIPTION     "Number of global calls that were disconnected because of     server problems."    ::= { pintServerGlobalStatsEntry 7 }pintServerGlobalDisGatProbCalls OBJECT-TYPE    SYNTAX     Counter32    MAX-ACCESS read-only    STATUS     current    DESCRIPTION     "Number of global calls that were disconnected because of     gateway problems."    ::= { pintServerGlobalStatsEntry 8 }pintServerClientStatsTable      OBJECT-TYPE    SYNTAX      SEQUENCE OF PintServerClientStatsEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION     "Table displaying the monitored server client statistics."

⌨️ 快捷键说明

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