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

📄 dlsw-mib

📁 很不错java的SNMP应用例子
💻
📖 第 1 页 / 共 5 页
字号:
-- TRANSPORT CONNECTION (aka: PARTNER DLSW)-- *******************************************************************-- -------------------------------------------------------------------- Transport Connection Statistics Objects-- ------------------------------------------------------------------dlswTConnStat    OBJECT IDENTIFIER ::= { dlswTConn 1 }dlswTConnStatActiveConnections  OBJECT-TYPE    SYNTAX     Gauge32    MAX-ACCESS read-only    STATUS     current    DESCRIPTION       "The number of transport connections that are not in        `disconnected' state."    ::= { dlswTConnStat 1 }dlswTConnStatCloseIdles  OBJECT-TYPE    SYNTAX     Counter32    MAX-ACCESS read-only    STATUS     current    DESCRIPTION       "The number of times transport connections in this node        exited the connected state with zero active circuits on        the transport connection."    ::= { dlswTConnStat 2 }dlswTConnStatCloseBusys  OBJECT-TYPE    SYNTAX     Counter32    MAX-ACCESS read-only    STATUS     current    DESCRIPTION       "The number of times transport connections in this node        exited the connected state with some non-zero number        of active circuits on the transport connection.  Normally        this means the transport connection failed unexpectedly."    ::= { dlswTConnStat 3 }-- -------------------------------------------------------------------- Transport Connection Configuration Table-- ------------------------------------------------------------------dlswTConnConfigTable  OBJECT-TYPE    SYNTAX     SEQUENCE OF DlswTConnConfigEntry    MAX-ACCESS not-accessible    STATUS     current    DESCRIPTION       "This table defines the transport connections        that will be initiated or accepted by this        DLSw.  Structure of masks allows wildcard        definition for a collection of transport        connections by a conceptual row.  For a        specific transport connection, there may        be multiple of conceptual rows match the        transport address.  The `best' match will        the one to determine the characteristics        of the transport connection."    ::= { dlswTConn 2 }dlswTConnConfigEntry  OBJECT-TYPE    SYNTAX     DlswTConnConfigEntry    MAX-ACCESS not-accessible    STATUS     current    DESCRIPTION       "Each conceptual row defines a collection of        transport connections."    INDEX   { dlswTConnConfigIndex }    ::= { dlswTConnConfigTable 1 }DlswTConnConfigEntry ::= SEQUENCE {    dlswTConnConfigIndex              INTEGER,    dlswTConnConfigTDomain            OBJECT IDENTIFIER,    dlswTConnConfigLocalTAddr         TAddress,    dlswTConnConfigRemoteTAddr        TAddress,    dlswTConnConfigLastModifyTime     TimeTicks,    dlswTConnConfigEntryType          INTEGER,    dlswTConnConfigGroupDefinition    RowPointer,    dlswTConnConfigSetupType          INTEGER,    dlswTConnConfigSapList            OCTET STRING,    dlswTConnConfigAdvertiseMacNB     TruthValue,    dlswTConnConfigInitCirRecvWndw    INTEGER,    dlswTConnConfigOpens              Counter32,    dlswTConnConfigRowStatus          RowStatus    }dlswTConnConfigIndex  OBJECT-TYPE    SYNTAX     INTEGER (0..2147483647)    MAX-ACCESS not-accessible    STATUS     current    DESCRIPTION       "The index to the conceptual row of the table.        Negative numbers are not allowed.  There        are objects defined that point to conceptual        rows of this table with this index value.        Zero is used to denote that no corresponding        row exists.        Index values are assigned by the agent, and        should not be reused but should continue to        increase in value."    ::= { dlswTConnConfigEntry 1 }dlswTConnConfigTDomain  OBJECT-TYPE    SYNTAX     OBJECT IDENTIFIER    MAX-ACCESS read-create    STATUS     current    DESCRIPTION       "The object identifier which indicates the transport        domain of this conceptual row."    ::= { dlswTConnConfigEntry 2 }dlswTConnConfigLocalTAddr  OBJECT-TYPE    SYNTAX     TAddress    MAX-ACCESS read-create    STATUS     current    DESCRIPTION       "The local transport address for this conceptual row        of the transport connection definition."    ::= { dlswTConnConfigEntry 3 }dlswTConnConfigRemoteTAddr  OBJECT-TYPE    SYNTAX     TAddress    MAX-ACCESS read-create    STATUS     current    DESCRIPTION       "The remote transport address.  Together with        dlswTConnConfigEntryType and dlswTConnConfigGroupDefinition,        the object instance of this conceptual row identifies a        collection of the transport connections that will be        either initiated by this DLSw or initiated by a partner        DLSw and accepted by this DLSw."    ::= { dlswTConnConfigEntry 4 }dlswTConnConfigLastModifyTime  OBJECT-TYPE    SYNTAX     TimeTicks    UNITS      "hundredths of a second"    MAX-ACCESS read-only    STATUS     current    DESCRIPTION       "The time (in hundredths of a second) since the value of        any object in this conceptual row except for        dlswTConnConfigOpens was last changed.  This value        may be compared to dlswTConnOperConnectTime to        determine whether values in this row are completely        valid for a transport connection created using        this row definition."    ::= { dlswTConnConfigEntry 5 }dlswTConnConfigEntryType  OBJECT-TYPE    SYNTAX     INTEGER  {        individual     (1),        global         (2),        group          (3)    }    MAX-ACCESS read-create    STATUS     current    DESCRIPTION       "The object instance signifies the type of entry in the        associated conceptual row.  The value of `individual'        means that the entry applies to a specific partner DLSw        node as identified by dlswTConnConfigRemoteTAddr and        dlswTConnConfigTDomain.  The value of `global'        means that the entry applies to all partner DLSw nodes        of the TDomain.  The value of 'group' means that the entry        applies to a specific set of DLSw nodes in the TDomain.        Any group definitions are enterprise-specific and are pointed        to by dlswTConnConfigGroupDefinition.  In the cases of        `global' and `group', the value in dlswTConnConfigRemoteTAddr        may not have any significance."    ::= { dlswTConnConfigEntry 6 }dlswTConnConfigGroupDefinition OBJECT-TYPE    SYNTAX     RowPointer    MAX-ACCESS read-create    STATUS     current    DESCRIPTION       "For conceptual rows of `individual' and `global' as        specified in dlswTConnConfigEntryType, the instance        of this object is  `0.0'.  For conceptual rows of        `group', the instance points to the specific        group definition."    ::= { dlswTConnConfigEntry 7 }dlswTConnConfigSetupType  OBJECT-TYPE    SYNTAX     INTEGER  {        other              (1),        activePersistent   (2),        activeOnDemand     (3),        passive            (4),        excluded           (5)    }    MAX-ACCESS read-create    STATUS     current    DESCRIPTION       "This value of the instance of a conceptual row        identifies the behavior of the collection of        transport connections that this conceptual row        defines.  The value of activePersistent, activeOnDemand        and passive means this DLSw will accept any transport        connections, initiated by partner DLSw nodes, which        are defined by this conceptual row.  The value of        activePersistent means this DLSw will also initiate        the transport connections of this conceptual row and        retry periodically if necessary.  The value of        activeOnDemand means this DLSw will initiate a        transport connection of this conceptual row, if        there is a directory cache hits.  The value of        other is implementation specific.  The value of exclude        means that the specified node is not allowed to be        a partner to this DLSw node.  To take a certain        conceptual row definition out of service, a value of        notInService for dlswTConnConfigRowStatus should be        used."    DEFVAL  { passive }    ::= { dlswTConnConfigEntry 8 }dlswTConnConfigSapList  OBJECT-TYPE    SYNTAX     OCTET STRING  (SIZE(16))    MAX-ACCESS read-create    STATUS     current    DESCRIPTION       "The SAP list indicates which SAPs are advertised to        the transport connection defined by this conceptual        row.  Only SAPs with even numbers are represented,        in the form of the most significant bit of the first        octet representing the SAP 0, the next most significant        bit representing the SAP 2, to the least significant        bit of the last octet representing the SAP 254.  Data        link switching is allowed for those SAPs which have        one in its corresponding bit, not allowed otherwise.        The whole SAP list has to be changed together.  Changing        the SAP list affects only new circuit establishments        and has no effect on established circuits.        This list can be used to restrict specific partners        from knowing about all the SAPs used by DLSw on all its        interfaces (these are represented in dlswIfSapList for        each interface).  For instance, one may want to run NetBIOS        with some partners but not others.        If a node supports sending run-time capabilities exchange        messages, changes to this object should cause that action.        When to start the run-time capabilities exchange is        implementation-specific.        The DEFVAL below indicates support for SAPs 0, 4, 8, and C."    DEFVAL  { 'AA000000000000000000000000000000'H }    ::= { dlswTConnConfigEntry 9 }dlswTConnConfigAdvertiseMacNB  OBJECT-TYPE    SYNTAX     TruthValue    MAX-ACCESS read-create    STATUS     current    DESCRIPTION       "The value of true indicates that any defined local MAC         addresses and NetBIOS names will be advertised to a         partner node via initial and (if supported) run-time         capabilities exchange messages.  The DLSw node should send         the appropriate exclusivity control vector to accompany         each list it sends, or to represent that the node is         explicitly configured to have a null list.         The value of false indicates that the DLSw node should not         send a MAC address list or NetBIOS name list, and should         also not send their corresponding exclusivity control         vectors."    DEFVAL  { true }    ::= { dlswTConnConfigEntry 10 }dlswTConnConfigInitCirRecvWndw  OBJECT-TYPE    SYNTAX     INTEGER (0..65535)    UNITS      "SSP messages"    MAX-ACCESS read-create    STATUS     current    DESCRIPTION       "The initial circuit receive pacing window size, in the unit        of SSP messages, to be used for future transport connections        activated using this table row.  The managed node sends this        value as its initial receive pacing window in its initial        capabilities exchange message.  Changing this value does not        affect the initial circuit receive pacing window size of        currently active transport connections.  If the standard window        pacing scheme is not supported, the value is zero.        A larger receive window value may be appropriate for partners        that are reachable only via physical paths that have longer        network delays."    DEFVAL  { 1 }    ::= { dlswTConnConfigEntry 11 }dlswTConnConfigOpens  OBJECT-TYPE    SYNTAX     Counter32    MAX-ACCESS read-only    STATUS     current    DESCRIPTION       "Number of times transport connections entered        connected state according to the definition of        this conceptual row."    ::= { dlswTConnConfigEntry 12 }dlswTConnConfigRowStatus  OBJECT-TYPE    SYNTAX     RowStatus    MAX-ACCESS read-create    STATUS     current    DESCRIPTION       "This object is used by the manager to create        or delete the row entry in the dlswTConnConfigTable        following the RowStatus textual convention.  The value        of notInService will be used to take a conceptual        row definition out of use."    ::= { dlswTConnConfigEntry 13 }-- -------------------------------------------------------------------- Transport Connection Operation Table-- -------------------------------------------------------------------- (1) At most one transport connection can be connected between--     this DLSw and one of its DLSw partners at a given time.-- (2) Multiple transport types are supported.-- (3) Since the entries may be reused, dlswTConnOperEntryTime--     needs to be consulted for the possibility of counter reset.-- ------------------------------------------------------------------dlswTConnOperTable  OBJECT-TYPE    SYNTAX     SEQUENCE OF DlswTConnOperEntry    MAX-ACCESS not-accessible    STATUS     current    DESCRIPTION       "A list of transport connections.   It is optional but        desirable for the agent to keep an entry for some        period of time after the transport connection is        disconnected.  This allows the manager to capture        additional useful information about the connection, in        particular, statistical information and the cause of the        disconnection."    ::= { dlswTConn 3 }dlswTConnOperEntry  OBJECT-TYPE    SYNTAX     DlswTConnOperEntry

⌨️ 快捷键说明

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