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

📄 rfc1559.mib

📁 wm PNE 3.3 source code, running at more than vxworks6.x version.
💻 MIB
📖 第 1 页 / 共 5 页
字号:
        DECNET-PHIV-MIB DEFINITIONS ::= BEGIN        IMPORTS           Gauge              FROM RFC1155-SMI            OBJECT-TYPE               FROM RFC-1212            mib-2, DisplayString              FROM RFC1213-MIB;   -- DECNet Phase-IV MIB        phiv      OBJECT IDENTIFIER ::= { mib-2 18 }   -- textual conventions   PhivAddr ::= OCTET STRING (SIZE (2))   -- This data type is intended as a short word representation of   -- standard DECnet Phase IV addresses. DECnet addresses are   -- hierarchically structured numbers assigned to a particular   -- DECnet node. The address is structured so that the area   -- number is contained in the most significant 6 bits of the   -- first octet.  The next 2 bits of the first octet contain   -- the first two bits of the host address.  The remainder of   -- the host address is contained in the second octet.   PhivCounter ::= INTEGER   -- This data type has been created for DECnet counters.  These   -- counters latch at their maximum specified value until either   -- the system is restarted, or they are reset to zero by the user   -- or management software.   InterfaceIndex ::= INTEGER   --  The range of ifIndex, i.e., (1..2147483647)   -- groups in the decnetiv mib         phivSystem             OBJECT IDENTIFIER ::= { phiv 1 }         phivManagement         OBJECT IDENTIFIER ::= { phiv 2 }         session                OBJECT IDENTIFIER ::= { phiv 3 }         end                    OBJECT IDENTIFIER ::= { phiv 4 }         routing                OBJECT IDENTIFIER ::= { phiv 5 }         circuit                OBJECT IDENTIFIER ::= { phiv 6 }         ddcmp                  OBJECT IDENTIFIER ::= { phiv 7 }         control                OBJECT IDENTIFIER ::= { phiv 8 }         ethernet               OBJECT IDENTIFIER ::= { phiv 9 }         counters               OBJECT IDENTIFIER ::= { phiv 10 }         adjacency              OBJECT IDENTIFIER ::= { phiv 11 }         line                   OBJECT IDENTIFIER ::= { phiv 12 }         nonBroadcastLine       OBJECT IDENTIFIER ::= { phiv 14 }         area                   OBJECT IDENTIFIER ::= { phiv 15 }   -- System Group   -- The implementation of the System Group is mandatory for   -- all systems.   phivSystemState OBJECT-TYPE        SYNTAX INTEGER {            on (1),            off (2),            shut (3),            restricted (4)        }        ACCESS read-write        STATUS mandatory        DESCRIPTION            "This represents the operational state of the executor            node.            The possible states are:            ON          Allows logical links.            OFF         Allows no new links, terminates existing                        links, and stops routing traffic through.            SHUT        Allows no new logical links, does not                        destroy existing logical links, and goes                        to the OFF state when all logical links are                        gone.            RESTRICTED  Allows no new incoming logical links from                        other nodes.            NOTE: These values are incremented by one compared to            the standard DECnet values in order to maintain            compliance with RFC 1155)."        ::= { phivSystem 1 }   phivExecIdent OBJECT-TYPE        SYNTAX DisplayString (SIZE (0..32))        ACCESS read-write        STATUS mandatory        DESCRIPTION            "This is a text string that describes the executor node            (for example, 'Research Lab').  The string is up to 32            characters of any type."        ::= { phivSystem 2 }   -- Network Management Group   -- The implementation of the Network Management Group is   -- mandatory for all systems which contain a DECnet-style   -- management version.   phivMgmtMgmtVers OBJECT-TYPE        SYNTAX DisplayString (SIZE (0..255))        ACCESS read-only        STATUS mandatory        DESCRIPTION            "This is the read-only Network Management Version,            consisting of the version number, the Engineering            Change Order (ECO) number, and the user ECO number            (for example, 3.0.0). This parameter applies to the            executor node only."        ::= { phivManagement 1 }   -- Session Layer Group   -- The implementation of the Session Layer Group is optional.   -- A system can be said to implement this group if and only if   -- all objects in this group are implemented.   phivSessionSystemName OBJECT-TYPE        SYNTAX DisplayString (SIZE (0..6))        ACCESS read-only        STATUS mandatory        DESCRIPTION            "Name to be associated with the node identification.            Only one name can be assigned to a node address or a            circuit identification. No name should be used more than            once in a DECnet network. Node-name is one to six upper            case alphanumeric characters with at least one alpha            character. A length of 0 indicates no name."        ::= { session 1 }   phivSessionInTimer OBJECT-TYPE        SYNTAX INTEGER (0..65535)        ACCESS read-write        STATUS mandatory        DESCRIPTION            "This value represents the maximum duration between the            time a connect is received for a process at the            executor node and the time that process accepts or            rejects it. If the connect is not accepted or rejected            by the user within the number of seconds specified,            Session Control rejects it for the user.  A value of 0            indicates no timer is running."        ::= { session 2 }   phivSessionOutTimer OBJECT-TYPE        SYNTAX INTEGER (0..65535)        ACCESS read-write        STATUS mandatory        DESCRIPTION            "This value represents the duration between the time the            executor requests a connect and the time that connect is            acknowledged by the destination node. If the connect is            not acknowledged within the number of seconds            specified, Session Control returns an error.  A value of 0            indicates no timer is running."        ::= { session 3 }   -- End Communication Layer Group   -- The implementation of the End Communication Layer Group is optional.   -- A system can be said to implement this group if and only if   -- all objects in this group are implemented.   -- Remote State Table   phivEndRemoteTable OBJECT-TYPE        SYNTAX SEQUENCE OF PhivEndRemoteEntry        ACCESS not-accessible        STATUS mandatory        DESCRIPTION            "Information about the state of sessions between the            node under study and the nodes found in the table."        ::= { end 1 }   phivEndRemoteEntry OBJECT-TYPE        SYNTAX PhivEndRemoteEntry        ACCESS not-accessible        STATUS mandatory        DESCRIPTION            "Information about a particular remote node as seen            from the end communication layer."        INDEX  { phivEndRemoteHostNodeID }        ::= { phivEndRemoteTable 1 }   PhivEndRemoteEntry ::=        SEQUENCE {            phivEndRemoteHostNodeID                PhivAddr,            phivEndRemoteState                INTEGER,            phivEndCircuitIndex                INTEGER,            phivEndActiveLinks                INTEGER,            phivEndDelay                INTEGER        }   phivEndRemoteHostNodeID OBJECT-TYPE        SYNTAX PhivAddr -- OCTET STRING (SIZE (2))        ACCESS read-only        STATUS mandatory        DESCRIPTION            "This value is the address of the remote node to be            evaluated."        ::= { phivEndRemoteEntry 1 }   phivEndRemoteState OBJECT-TYPE        SYNTAX INTEGER {            on (1),            off (2),            shut (3),            restricted (4)        }        ACCESS read-write        STATUS mandatory        DESCRIPTION            "This represents the operational state of the remote node            being evaluated.            The possible states are:            ON          Allows logical links.            OFF         Allows no new links, terminates existing                        links, and stops routing traffic through.            SHUT        Allows no new logical links, does not                        destroy existing logical links, and goes                        to the OFF state when all logical links are                        gone.            RESTRICTED  Allows no new incoming logical links from                        other nodes.            NOTE: These values are incremented by one compared to            the standard DECnet values in order to maintain            compliance with RFC 1155."        ::= { phivEndRemoteEntry 2 }   phivEndCircuitIndex OBJECT-TYPE        SYNTAX INTEGER (1..65535)        ACCESS read-only        STATUS mandatory        DESCRIPTION            "A unique index value for each known circuit used to            communicate with the remote node.  This is the same            value as phivCircuitIndex."        ::= { phivEndRemoteEntry 3 }   phivEndActiveLinks OBJECT-TYPE        SYNTAX INTEGER (0..65535)        ACCESS read-only        STATUS mandatory        DESCRIPTION            "This read-only parameter represents the number of active            logical links from the executor to the destination node."        ::= { phivEndRemoteEntry 4 }   phivEndDelay OBJECT-TYPE        SYNTAX INTEGER (0..65535)        ACCESS read-only        STATUS mandatory        DESCRIPTION            "This read-only parameter is the average round trip            delay in seconds to the destination node. This            parameter is kept on a remote node basis."        ::= { phivEndRemoteEntry 5 }   -- End System Counter Table   phivEndCountTable OBJECT-TYPE        SYNTAX SEQUENCE OF PhivEndCountEntry        ACCESS not-accessible        STATUS mandatory        DESCRIPTION            "Information about the counters associated with each end            system that is known to the entity. These counters            reflect totals from the perspective of the executor            node."        ::= { end 2 }   phivEndCountEntry OBJECT-TYPE        SYNTAX PhivEndCountEntry        ACCESS not-accessible        STATUS mandatory        DESCRIPTION            "Information about a particular session between two end            systems."        INDEX  { phivEndCountHostNodeID }        ::= { phivEndCountTable 1 }   PhivEndCountEntry ::=        SEQUENCE {            phivEndCountHostNodeID                PhivAddr,            phivEndCountSecsLastZeroed                PhivCounter,            phivEndCountUsrBytesRec                PhivCounter,            phivEndCountUsrBytesSent                PhivCounter,            phivEndUCountUsrMessRec                PhivCounter,            phivEndCountUsrMessSent                PhivCounter,            phivEndCountTotalBytesRec                PhivCounter,            phivEndCountTotalBytesSent                PhivCounter,            phivEndCountTotalMessRec                PhivCounter,            phivEndCountTotalMessSent                PhivCounter,            phivEndCountConnectsRecd                PhivCounter,            phivEndCountConnectsSent                PhivCounter,            phivEndCountReponseTimeouts                PhivCounter,            phivEndCountRecdConnectResErrs                PhivCounter        }   phivEndCountHostNodeID OBJECT-TYPE        SYNTAX PhivAddr -- OCTET STRING (SIZE (2))        ACCESS read-only        STATUS mandatory        DESCRIPTION            "This value is the address of the remote node to be            evaluated."        ::= { phivEndCountEntry 1 }   phivEndCountSecsLastZeroed OBJECT-TYPE        SYNTAX PhivCounter (0..65535)        ACCESS read-only        STATUS mandatory        DESCRIPTION            "This value is the number of seconds that have elapsed            since the counters for the node in this table row were            last set to zero. This counter is located in the            network management layer, but is returned with the            end system information which follows."        ::= { phivEndCountEntry 2 }   phivEndCountUsrBytesRec OBJECT-TYPE        SYNTAX PhivCounter (0..2147483647)        ACCESS read-only        STATUS mandatory        DESCRIPTION            "Number of user bytes received from the target host."        ::= { phivEndCountEntry 3 }   phivEndCountUsrBytesSent OBJECT-TYPE        SYNTAX PhivCounter (0..2147483647)        ACCESS read-only        STATUS mandatory        DESCRIPTION            "Number of user bytes sent to the target host."        ::= { phivEndCountEntry 4 }   phivEndUCountUsrMessRec OBJECT-TYPE        SYNTAX PhivCounter (0..2147483647)        ACCESS read-only        STATUS mandatory        DESCRIPTION            "Number of user messages received from the target host."        ::= { phivEndCountEntry 5 }   phivEndCountUsrMessSent OBJECT-TYPE        SYNTAX PhivCounter (0..2147483647)        ACCESS read-only        STATUS mandatory        DESCRIPTION            "Number of user messages sent to the target host."        ::= { phivEndCountEntry 6 }   phivEndCountTotalBytesRec OBJECT-TYPE        SYNTAX PhivCounter (0..2147483647)        ACCESS read-only

⌨️ 快捷键说明

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