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

📄 rfc2021.mib

📁 wm PNE 3.3 source code, running at more than vxworks6.x version.
💻 MIB
📖 第 1 页 / 共 5 页
字号:
    ::= { hlHostControlEntry 12 }nlHostTable OBJECT-TYPE    SYNTAX      SEQUENCE OF NlHostEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A collection of statistics for a particular network layer        address that has been discovered on an interface of this        device.        The probe will populate this table for all network layer        protocols in the protocol directory table whose value of        protocolDirHostConfig is equal to supportedOn(3), and        will delete any entries whose protocolDirEntry is deleted or        has a protocolDirHostConfig value of supportedOff(2).        The probe will add to this table all addresses seen        as the source or destination address in all packets with no        MAC errors, and will increment octet and packet counts in the        table for all packets with no MAC errors."::= { nlHost 2 }nlHostEntry OBJECT-TYPE    SYNTAX      NlHostEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A conceptual row in the nlHostTable.        The hlHostControlIndex value in the index identifies the        hlHostControlEntry on whose behalf this entry was created.        The protocolDirLocalIndex value in the index identifies the        network layer protocol of the nlHostAddress.        An example of the indexing of this entry is        nlHostOutPkts.1.783495.18.4.128.2.6.6."    INDEX { hlHostControlIndex, nlHostTimeMark,            protocolDirLocalIndex, nlHostAddress }    ::= { nlHostTable 1 }NlHostEntry ::= SEQUENCE {    nlHostTimeMark              TimeFilter,    nlHostAddress               OCTET STRING,    nlHostInPkts                ZeroBasedCounter32,    nlHostOutPkts               ZeroBasedCounter32,    nlHostInOctets              ZeroBasedCounter32,    nlHostOutOctets             ZeroBasedCounter32,    nlHostOutMacNonUnicastPkts  ZeroBasedCounter32,    nlHostCreateTime            LastCreateTime}nlHostTimeMark OBJECT-TYPE    SYNTAX      TimeFilter    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A TimeFilter for this entry.  See the TimeFilter textual        convention to see how this works."    ::= { nlHostEntry 1 }nlHostAddress OBJECT-TYPE    SYNTAX      OCTET STRING    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "The network address for this nlHostEntry.        This is represented as an octet string with        specific semantics and length as identified        by the protocolDirLocalIndex component of the index.        For example, if the protocolDirLocalIndex indicates an        encapsulation of ip, this object is encoded as a length        octet of 4, followed by the 4 octets of the ip address,        in network byte order."    ::= { nlHostEntry 2 }nlHostInPkts OBJECT-TYPE    SYNTAX      ZeroBasedCounter32    MAX-ACCESS  read-only    STATUS      current    DESCRIPTION        "The number of packets without errors transmitted to        this address since it was added to the nlHostTable.  Note that        this is the number of link-layer packets, so if a single        network-layer packet is fragmented into several link-layer        frames, this counter is incremented several times."    ::= { nlHostEntry 3 }nlHostOutPkts OBJECT-TYPE    SYNTAX      ZeroBasedCounter32    MAX-ACCESS  read-only    STATUS      current    DESCRIPTION        "The number of packets without errors transmitted by        this address since it was added to the nlHostTable.  Note that        this is the number of link-layer packets, so if a single        network-layer packet is fragmented into several link-layer        frames, this counter is incremented several times."    ::= { nlHostEntry 4 }nlHostInOctets OBJECT-TYPE    SYNTAX      ZeroBasedCounter32    MAX-ACCESS  read-only    STATUS      current    DESCRIPTION        "The number of octets transmitted to this address        since it was added to the nlHostTable (excluding        framing bits but including FCS octets), excluding        those octets in packets that contained errors.        Note this doesn't count just those octets in the particular        protocol frames, but includes the entire packet that contained        the protocol."    ::= { nlHostEntry 5 }nlHostOutOctets OBJECT-TYPE    SYNTAX      ZeroBasedCounter32    MAX-ACCESS  read-only    STATUS      current    DESCRIPTION        "The number of octets transmitted by this address        since it was added to the nlHostTable (excluding        framing bits but including FCS octets), excluding        those octets in packets that contained errors.        Note this doesn't count just those octets in the particular        protocol frames, but includes the entire packet that contained        the protocol."    ::= { nlHostEntry 6 }nlHostOutMacNonUnicastPkts OBJECT-TYPE    SYNTAX      ZeroBasedCounter32    MAX-ACCESS  read-only    STATUS      current    DESCRIPTION        "The number of packets without errors transmitted by this        address that were directed to any MAC broadcast addresses        or to any MAC multicast addresses since this host was        added to the nlHostTable. Note that this is the number of        link-layer packets, so if a single network-layer packet is        fragmented into several link-layer frames, this counter is        incremented several times."    ::= { nlHostEntry 7 }nlHostCreateTime OBJECT-TYPE    SYNTAX     LastCreateTime    MAX-ACCESS read-only    STATUS     current    DESCRIPTION        "The value of sysUpTime when this entry was last activated.        This can be used by the management station to ensure that the        entry has not been deleted and recreated between polls."    ::= { nlHostEntry 8 }---- Network Layer Matrix Group---- Counts the amount of traffic sent between each pair of network-- addresses discovered by the probe.-- Note that while the hlMatrixControlTable also has objects that-- control optional alMatrixTables, implementation of the-- alMatrixTables is not required to fully implement this group.hlMatrixControlTable OBJECT-TYPE    SYNTAX      SEQUENCE OF HlMatrixControlEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A list of higher layer (i.e. non-MAC) matrix control entries.        These entries will enable the collection of the network and        application level matrix tables containing conversation        statistics indexed by pairs of network addresses.        Both the network and application level matrix tables are        controlled by this table is so that they will both be created        and deleted at the same time, further increasing the ease with        which they can be implemented as a single datastore (note that        if an implementation stores application layer matrix records        in memory, it can derive network layer matrix records from        them).        Entries in the nlMatrixSDTable and nlMatrixDSTable will be        created on behalf of each entry in this table.  Additionally,        if this probe implements the alMatrix tables, entries in the        alMatrix tables will be created on behalf of each entry in        this table."    ::= { nlMatrix 1 }hlMatrixControlEntry OBJECT-TYPE    SYNTAX      HlMatrixControlEntry    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "A conceptual row in the hlMatrixControlTable.        An example of indexing of this entry is        hlMatrixControlNlDroppedFrames.1"    INDEX { hlMatrixControlIndex }    ::= { hlMatrixControlTable 1 }HlMatrixControlEntry ::= SEQUENCE {    hlMatrixControlIndex                  Integer32,    hlMatrixControlDataSource             DataSource,    hlMatrixControlNlDroppedFrames        Counter32,    hlMatrixControlNlInserts              Counter32,    hlMatrixControlNlDeletes              Counter32,    hlMatrixControlNlMaxDesiredEntries    Integer32,    hlMatrixControlAlDroppedFrames        Counter32,    hlMatrixControlAlInserts              Counter32,    hlMatrixControlAlDeletes              Counter32,    hlMatrixControlAlMaxDesiredEntries    Integer32,    hlMatrixControlOwner                  OwnerString,    hlMatrixControlStatus                 RowStatus}hlMatrixControlIndex OBJECT-TYPE    SYNTAX      Integer32 (1..65535)    MAX-ACCESS  not-accessible    STATUS      current    DESCRIPTION        "An index that uniquely identifies an entry in the        hlMatrixControlTable.  Each such entry defines        a function that discovers conversations on a particular        interface and places statistics about them in the        nlMatrixSDTable and the nlMatrixDSTable, and optionally the        alMatrixSDTable and alMatrixDSTable, on behalf of this        hlMatrixControlEntry."    ::= { hlMatrixControlEntry 1 }hlMatrixControlDataSource OBJECT-TYPE    SYNTAX      DataSource    MAX-ACCESS  read-create    STATUS      current    DESCRIPTION        "The source of the data for the associated matrix tables.        The statistics in this group reflect all packets        on the local network segment attached to the        identified interface.        This object may not be modified if the associated        hlMatrixControlStatus object is equal to active(1)."    ::= { hlMatrixControlEntry 2 }hlMatrixControlNlDroppedFrames OBJECT-TYPE    SYNTAX     Counter32    MAX-ACCESS read-only    STATUS     current    DESCRIPTION       "The total number of frames which were received by the probe        and therefore not accounted for in the *StatsDropEvents, but        for which the probe chose not to count for this entry for        whatever reason.  Most often, this event occurs when the probe        is out of some resources and decides to shed load from this        collection.        This count does not include packets that were not counted        because they had MAC-layer errors.        Note that if the nlMatrixTables are inactive because no        protocols are enabled in the protocol directory, this value        should be 0.        Note that, unlike the dropEvents counter, this number is the        exact number of frames dropped."    ::= { hlMatrixControlEntry 3 }hlMatrixControlNlInserts OBJECT-TYPE    SYNTAX     Counter32    MAX-ACCESS read-only    STATUS     current    DESCRIPTION        "The number of times an nlMatrix entry has been        inserted into the nlMatrix tables.  If an entry is inserted,        then deleted, and then inserted, this counter will be        incremented by 2.  The addition of a conversation into both        the nlMatrixSDTable and nlMatrixDSTable shall be counted as        two insertions (even though every addition into one table must        be accompanied by an insertion into the other).        To allow for efficient implementation strategies, agents may        delay updating this object for short periods of time.  For        example, an implementation strategy may allow internal        data structures to differ from those visible via SNMP for        short periods of time.  This counter may reflect the internal        data structures for those short periods of time.        Note that the sum of then nlMatrixSDTable and nlMatrixDSTable        sizes can be determined by subtracting        hlMatrixControlNlDeletes from hlMatrixControlNlInserts."    ::= { hlMatrixControlEntry 4 }hlMatrixControlNlDeletes OBJECT-TYPE    SYNTAX     Counter32    MAX-ACCESS read-only    STATUS     current    DESCRIPTION        "The number of times an nlMatrix entry has been        deleted from the nlMatrix tables (for any reason).  If an        entry is deleted, then inserted, and then deleted, this        counter will be incremented by 2.  The deletion of a        conversation from both the nlMatrixSDTable and nlMatrixDSTable        shall be counted as two deletions (even though every deletion        from one table must be accompanied by a deletion from the        other).        To allow for efficient implementation strategies, agents may        delay updating this object for short periods of time.  For        example, an implementation strategy may allow internal        data structures to differ from those visible via SNMP for        short periods of time.  This counter may reflect the internal        data structures for those short periods of time.        Note that the table size can be determined by subtracting        hlMatrixControlNlDeletes from hlMatrixControlNlInserts."    ::= { hlMatrixControlEntry 5 }hlMatrixControlNl

⌨️ 快捷键说明

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