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

📄 rfc2669.txt

📁 中、英文RFC文档大全打包下载完全版 .
💻 TXT
📖 第 1 页 / 共 5 页
字号:
             entry. These are ordered from most (emergency) to least             (debug) critical.  Each event with a CM or CMTS has a             particular priority level associated with it (as defined             by the vendor). During normal operation no event more             critical than notice(6) should be generated. Events between             warning and emergency should be generated at appropriate             levels of problems (e.g. emergency when the box is about to             crash)."        ::= { docsDevEvControlEntry 1 }docsDevEvReporting OBJECT-TYPE        SYNTAX BITS {            local(0),            traps(1),            syslog(2)        }        MAX-ACCESS  read-write        STATUS      current        DESCRIPTION            "Defines the action to be taken on occurrence of this             event class. Implementations may not necessarily support             all options for all event classes, but at minimum must             allow traps and syslogging to be disabled. If the             local(0) bit is set, then log to the internal log, if the             traps(1) bit is set, then generate a trap, if the             syslog(2) bit is set, then send a syslog message             (assuming the syslog address is set)."        ::= { docsDevEvControlEntry 2 }docsDevEventTable OBJECT-TYPE        SYNTAX      SEQUENCE OF DocsDevEventEntry        MAX-ACCESS  not-accessible        STATUS      current        DESCRIPTION            "Contains a log of network and device events that may be             of interest in fault isolation and troubleshooting."        ::= {  docsDevEvent 8 }St. Johns                      Standards                       [Page 26]RFC 2669                DOCSIS Cable Device MIB              August 1999docsDevEventEntry OBJECT-TYPE        SYNTAX      DocsDevEventEntry        MAX-ACCESS  not-accessible        STATUS      current        DESCRIPTION            "Describes a network or device event that may be of             interest in fault isolation and troubleshooting. Multiple             sequential identical events are represented by             incrementing docsDevEvCounts and setting             docsDevEvLastTime to the current time rather than creating             multiple rows.             Entries are created with the first occurrance of an event.             docsDevEvControl can be used to clear the table.             Individual events can not be deleted."        INDEX { docsDevEvIndex }        ::= { docsDevEventTable 1 }DocsDevEventEntry ::= SEQUENCE {            docsDevEvIndex           Integer32,            docsDevEvFirstTime       DateAndTime,            docsDevEvLastTime        DateAndTime,            docsDevEvCounts          Counter32,            docsDevEvLevel           INTEGER,            docsDevEvId              Unsigned32,            docsDevEvText            SnmpAdminString        }docsDevEvIndex OBJECT-TYPE        SYNTAX      Integer32 (1..2147483647)        MAX-ACCESS  not-accessible        STATUS      current        DESCRIPTION            "Provides relative ordering of the objects in the event             log. This object will always increase except when             (a) the log is reset via docsDevEvControl,             (b) the device reboots and does not implement non-volatile             storage for this log, or (c) it reaches the value 2^31.             The next entry for all the above cases is 1."        ::= { docsDevEventEntry 1 }docsDevEvFirstTime OBJECT-TYPE        SYNTAX      DateAndTime        MAX-ACCESS  read-only        STATUS      current        DESCRIPTION            "The time that this entry was created."St. Johns                      Standards                       [Page 27]RFC 2669                DOCSIS Cable Device MIB              August 1999        ::= { docsDevEventEntry 2 }docsDevEvLastTime OBJECT-TYPE        SYNTAX      DateAndTime        MAX-ACCESS  read-only        STATUS      current        DESCRIPTION            "If multiple events are reported via the same entry, the             time that the last event for this entry occurred,             otherwise this should have the same value as             docsDevEvFirstTime. "        ::= { docsDevEventEntry 3 }-- This object was renamed from docsDevEvCount to meet naming-- requirements for Counter32docsDevEvCounts OBJECT-TYPE        SYNTAX      Counter32        MAX-ACCESS  read-only        STATUS      current        DESCRIPTION            "The number of consecutive event instances reported by             this entry.  This starts at 1 with the creation of this             row and increments by 1 for each subsequent duplicate             event."        ::= { docsDevEventEntry 4 }docsDevEvLevel OBJECT-TYPE        SYNTAX INTEGER {            emergency(1),            alert(2),            critical(3),            error(4),            warning(5),            notice(6),            information(7),            debug(8)        }        MAX-ACCESS  read-only        STATUS      current        DESCRIPTION            "The priority level of this event as defined by the             vendor.  These are ordered from most serious (emergency)             to least serious (debug)."        ::= { docsDevEventEntry 5 }---- Vendors will provide their own enumerations for the following.-- The interpretation of the enumeration is unambiguous for aSt. Johns                      Standards                       [Page 28]RFC 2669                DOCSIS Cable Device MIB              August 1999-- particular value of the vendor's enterprise number in sysObjectID.--docsDevEvId OBJECT-TYPE        SYNTAX      Unsigned32        MAX-ACCESS  read-only        STATUS      current        DESCRIPTION            "For this product, uniquely identifies the type of event             that is reported by this entry."        ::= { docsDevEventEntry 6 }docsDevEvText OBJECT-TYPE        SYNTAX      SnmpAdminString        MAX-ACCESS  read-only        STATUS      current        DESCRIPTION            "Provides a human-readable description of the event,             including all relevant context (interface numbers,             etc.)."        ::= { docsDevEventEntry 7 }docsDevFilter OBJECT IDENTIFIER ::= { docsDevMIBObjects 6 }---- Link Level Control Filtering---- docsDevFilterLLCDefault renamed to docsDevFilterLLCUnmatchedActiondocsDevFilterLLCUnmatchedAction OBJECT-TYPE        SYNTAX INTEGER {            discard(1),            accept(2)        }        MAX-ACCESS  read-write        STATUS      current        DESCRIPTION            "LLC (Link Level Control) filters can be defined on an             inclusive or exclusive basis: CMs can be configured to             forward only packets matching a set of layer three             protocols, or to drop packets matching a set of layer             three protocols.  Typical use of these filters is to             filter out possibly harmful (given the context of a large             metropolitan LAN) protocols.             If set to discard(1), any L2 packet which does not match atSt. Johns                      Standards                       [Page 29]RFC 2669                DOCSIS Cable Device MIB              August 1999             least one filter in the docsDevFilterLLCTable will be             discarded. If set to accept(2), any L2 packet which does not             match at least one filter in the docsDevFilterLLCTable             will be accepted for further processing (e.g., bridging).             At initial system startup, this object returns accept(2)."        ::= { docsDevFilter 1 }docsDevFilterLLCTable OBJECT-TYPE        SYNTAX      SEQUENCE OF DocsDevFilterLLCEntry        MAX-ACCESS  not-accessible        STATUS      current        DESCRIPTION            "A list of filters to apply to (bridged) LLC             traffic. The filters in this table are applied to             incoming traffic on the appropriate interface(s)  prior             to any further processing (e.g. before handing the packet             off for level 3 processing, or for bridging).  The             specific action taken when no filter is matched is             controlled by docsDevFilterLLCUnmatchedAction."        ::= { docsDevFilter 2 }docsDevFilterLLCEntry OBJECT-TYPE        SYNTAX      DocsDevFilterLLCEntry        MAX-ACCESS  not-accessible        STATUS      current        DESCRIPTION            "Describes a single filter to apply to (bridged) LLC traffic             received on a specified interface. "        INDEX { docsDevFilterLLCIndex }        ::= { docsDevFilterLLCTable 1 }DocsDevFilterLLCEntry ::= SEQUENCE {            docsDevFilterLLCIndex               Integer32,            docsDevFilterLLCStatus              RowStatus,            docsDevFilterLLCIfIndex             InterfaceIndexOrZero,            docsDevFilterLLCProtocolType        INTEGER,            docsDevFilterLLCProtocol            Integer32,            docsDevFilterLLCMatches             Counter32        }docsDevFilterLLCIndex OBJECT-TYPE        SYNTAX      Integer32 (1..2147483647)        MAX-ACCESS  not-accessible        STATUS      current        DESCRIPTION            "Index used for the identification of filters (note that LLC             filter order is irrelevant)."        ::= { docsDevFilterLLCEntry 1 }St. Johns                      Standards                       [Page 30]RFC 2669                DOCSIS Cable Device MIB              August 1999docsDevFilterLLCStatus OBJECT-TYPE        SYNTAX      RowStatus        MAX-ACCESS  read-create        STATUS      current        DESCRIPTION            "Controls and reflects the status of rows in this             table. There is no restriction on changing any of the             associated columns for this row while this object is set             to active."        ::= { docsDevFilterLLCEntry 2}docsDevFilterLLCIfIndex OBJECT-TYPE        SYNTAX      InterfaceIndexOrZero        MAX-ACCESS  read-create        STATUS      current        DESCRIPTION            "The entry interface to which this filter applies.             The value corresponds to ifIndex for either a CATV MAC             or another network interface. If the value is zero, the             filter applies to all interfaces. In Cable Modems, the             default value is the customer side interface. In Cable             Modem Termination Systems, this object has to be             specified to create a row in this table."        ::= { docsDevFilterLLCEntry 3 }docsDevFilterLLCProtocolType OBJECT-TYPE        SYNTAX INTEGER {            ethertype(1),            dsap(2)        }        MAX-ACCESS  read-create        STATUS      current        DESCRIPTION            "The format of the value in docsDevFilterLLCProtocol:             either a two-byte Ethernet Ethertype, or a one-byte             802.2 SAP value. EtherType(1) also applies to SNAP-             encapsulated frames."        DEFVAL { ethertype }        ::= { docsDevFilterLLCEntry 4 }docsDevFilterLLCProtocol OBJECT-TYPE        SYNTAX      Integer32 (0..65535)        MAX-ACCESS  read-create        STATUS      current        DESCRIPTION            "The layer three protocol for which this filter applies.             The protocol value format depends onSt. Johns                      Standards                       [Page 31]RFC 2669                DOCSIS Cable Device MIB              August 1999             docsDevFilterLLCProtocolType. Note that for SNAP frames,             etherType filtering is performed rather than DSAP=0xAA."        DEFVAL { 0 }        ::= { docsDevFilterLLCEntry 5 }docsDevFilterLLCMatches OBJECT-TYPE        SYNTAX      Counter32        MAX-ACCESS  read-only        STATUS      current        DESCRIPTION            "Counts the number of times this filter was matched."        ::= { docsDevFilterLLCEntry 6 }-- The default behavior for (bridged) packets that do not match IP-- filters is defined by-- docsDevFilterIpDefault.docsDevFilterIpDefault OBJECT-TYPE        SYNTAX INTEGER {            discard(1),            accept(2)        }        MAX-ACCESS  read-write        STATUS      current        DESCRIPTION            "If set to discard(1), all pack

⌨️ 快捷键说明

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