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

📄 docs-cable-device-mib

📁 很不错java的SNMP应用例子
💻
📖 第 1 页 / 共 5 页
字号:
              packets which do not match any of the filters. N.B. If              docsDevFilterIpPolicyId is set to 0, it DOES NOT match              policy 0 of this table. "        ::= { docsDevFilterPolicyEntry 2 }-- docsDevFilterPolicyType ::= { docsDevFilterPolicyEntry 3} Removed-- docsDevFilterPolicyAction ::= { docsDevFilterPolicyEntry 4 } removeddocsDevFilterPolicyStatus OBJECT-TYPE        SYNTAX      RowStatus        MAX-ACCESS  read-create        STATUS      current        DESCRIPTION            "Object used to create an entry in this table."        ::= { docsDevFilterPolicyEntry 5 }docsDevFilterPolicyPtr OBJECT-TYPE        SYNTAX      RowPointer        MAX-ACCESS  read-create        STATUS      current        DESCRIPTION            "This object points to a row in an applicable filter policy             table.  Currently, the only standard policy table is             docsDevFilterTosTable. Per the textual convention, this             object points to the first accessible object in the row.             E.g. to point to a row in docsDevFilterTosTable with an             index of 21, the value of this object would be the object             identifier docsDevTosStatus.21.             Vendors must adhere to the same convention when adding             vendor specific policy table extensions.             The default upon row creation is a null pointer which             results in no policy action being taken."        DEFVAL { zeroDotZero }        ::= { docsDevFilterPolicyEntry 6 }---- TOS Policy action table--docsDevFilterTosTable OBJECT-TYPE        SYNTAX      SEQUENCE OF DocsDevFilterTosEntry        MAX-ACCESS  not-accessible        STATUS      current        DESCRIPTION             "Table used to describe Type of Service (TOS) bits             processing.             This table is an adjunct to the docsDevFilterIpTable, and             the docsDevFilterPolicy table.  Entries in the latter             table can point to specific rows in this (and other)             tables and cause specific actions to be taken.  This table             permits the manipulation of the value of the Type of             Service bits in the IP header of the matched packet as             follows:             Set the tosBits of the packet to                (tosBits & docsDevFilterTosAndMask) |                                                 docsDevFilterTosOrMask             This construct allows you to do a clear and set of all             the TOS bits in a flexible manner."        ::= { docsDevFilter 6 }docsDevFilterTosEntry OBJECT-TYPE        SYNTAX      DocsDevFilterTosEntry        MAX-ACCESS  not-accessible        STATUS      current        DESCRIPTION             "A TOS policy entry."        INDEX { docsDevFilterTosIndex }        ::= { docsDevFilterTosTable 1 }DocsDevFilterTosEntry ::= SEQUENCE {            docsDevFilterTosIndex   Integer32,            docsDevFilterTosStatus  RowStatus,            docsDevFilterTosAndMask OCTET STRING,            docsDevFilterTosOrMask  OCTET STRING        }docsDevFilterTosIndex OBJECT-TYPE        SYNTAX      Integer32 (1..2147483647)        MAX-ACCESS  not-accessible        STATUS      current        DESCRIPTION            "The unique index for this row.  There are no ordering             requirements for this table and any valid index may be             specified."        ::= { docsDevFilterTosEntry 1 }docsDevFilterTosStatus OBJECT-TYPE        SYNTAX      RowStatus        MAX-ACCESS  read-create        STATUS      current        DESCRIPTION            "The object used to create and delete entries in this             table. A row created by specifying just this object             results in a row which specifies no change to the TOS             bits.   A row may be created using either the create-and-go             or create-and-wait paradigms. There is no restriction on             the ability to change values in this row while the row is             active."        ::= { docsDevFilterTosEntry 2 }docsDevFilterTosAndMask OBJECT-TYPE        SYNTAX      OCTET STRING (SIZE (1))        MAX-ACCESS  read-create        STATUS      current        DESCRIPTION            "This value is bitwise AND'd with the matched  packet's        TOS bits."        DEFVAL { 'ff'h }        ::= { docsDevFilterTosEntry 3 }docsDevFilterTosOrMask OBJECT-TYPE        SYNTAX      OCTET STRING (SIZE (1))        MAX-ACCESS  read-create        STATUS      current        DESCRIPTION            "After bitwise AND'ing with the above bits, the packet's             TOS bits are bitwise OR'd with these bits."        DEFVAL { '00'h }        ::= { docsDevFilterTosEntry 4 }---- CPE IP Management and anti spoofing group.  Only implemented on-- Cable Modems.--docsDevCpe OBJECT IDENTIFIER ::= { docsDevMIBObjects 7}docsDevCpeEnroll OBJECT-TYPE        SYNTAX      INTEGER {            none(1),            any(2)        }        MAX-ACCESS  read-write        STATUS      current        DESCRIPTION            "This object controls the population of docsDevFilterCpeTable.             If set to none, the filters must be set manually.             If set to any, the CM wiretaps the packets originating             from the ethernet and enrolls up to docsDevCpeIpMax             addresses based on the source IP addresses of those             packets. At initial system startup, default value for this             object is any(2)."        ::= { docsDevCpe 1 }docsDevCpeIpMax OBJECT-TYPE        SYNTAX      Integer32 (-1..2147483647)        MAX-ACCESS  read-write        STATUS      current        DESCRIPTION            "This object controls the maximum number of CPEs allowed to             connect behind this device. If set to zero, any number of             CPEs may connect up to the maximum permitted for the device.             If set to -1, no filtering is done on CPE source addresses,             and no entries are made in the docsDevFilterCpeTable. If an             attempt is made to set this to a number greater than that             permitted for the device, it is set to that maximum.             At iniitial system startup, default value for this object             is 1."        ::= { docsDevCpe 2 }docsDevCpeTable OBJECT-TYPE        SYNTAX      SEQUENCE OF DocsDevCpeEntry        MAX-ACCESS  not-accessible        STATUS      current        DESCRIPTION            "This table lists the IP addresses seen (or permitted)  as             source addresses in packets originating from the customer             interface on this device. In addition, this table can be             provisioned with the specific addresses permitted for the             CPEs via the normal row creation mechanisms."        ::= { docsDevCpe 3 }docsDevCpeEntry OBJECT-TYPE        SYNTAX      DocsDevCpeEntry        MAX-ACCESS  not-accessible        STATUS      current        DESCRIPTION            "An entry in the docsDevFilterCpeTable. There is one entry             for each IP CPE seen or provisioned. If docsDevCpeIpMax             is set to -1, this table is ignored, otherwise: Upon receipt             of an IP  packet from the customer interface of the CM, the             source IP address is checked against this table. If the             address is in the table, packet processing continues.             If the address is not in the table, but docsDevCpeEnroll             is set to any and the table size is less than             docsDevCpeIpMax, the address is added to the table and             packet processing continues. Otherwise, the packet is             dropped.             The filtering actions specified by this table occur after             any LLC filtering (docsDevFilterLLCTable), but prior             to any IP filtering (docsDevFilterIpTable,             docsDevNmAccessTable)."        INDEX   { docsDevCpeIp }        ::= {docsDevCpeTable 1 }DocsDevCpeEntry ::= SEQUENCE {            docsDevCpeIp      IpAddress,            docsDevCpeSource  INTEGER,            docsDevCpeStatus  RowStatus        }docsDevCpeIp OBJECT-TYPE        SYNTAX      IpAddress        MAX-ACCESS  not-accessible        STATUS      current        DESCRIPTION            "The IP address to which this entry applies."        ::= { docsDevCpeEntry 1 }docsDevCpeSource OBJECT-TYPE        SYNTAX      INTEGER {            other(1),            manual(2),            learned(3)        }        MAX-ACCESS  read-only        STATUS      current        DESCRIPTION            "This object describes how this entry was created. If the             value is manual(2), this row was created by a network             management action (either configuration, or SNMP set).             If set to learned(3), then it was found via             looking at the source IP address of a received packet."        ::= { docsDevCpeEntry 2 }docsDevCpeStatus OBJECT-TYPE        SYNTAX  RowStatus        MAX-ACCESS  read-create        STATUS  current        DESCRIPTION            "Standard object to manipulate rows. To create a row in this             table, you only need to specify this object. Management             stations SHOULD use the create-and-go mechanism for             creating rows in this table."        ::= { docsDevCpeEntry 3 }---- Placeholder for notifications/traps.--docsDevNotification OBJECT IDENTIFIER   ::= { docsDev 2 }---- Conformance definitions--docsDevConformance  OBJECT IDENTIFIER   ::= { docsDev 3 }docsDevGroups       OBJECT IDENTIFIER   ::= { docsDevConformance 1 }docsDevCompliances  OBJECT IDENTIFIER   ::= { docsDevConformance 2 }docsDevBasicCompliance MODULE-COMPLIANCE        STATUS  current        DESCRIPTION            "The compliance statement for MCNS Cable Modems and             Cable Modem Termination Systems."MODULE  -- docsDev-- conditionally mandatory groupsGROUP docsDevBaseGroup        DESCRIPTION            "Mandatory in Cable Modems, optional in Cable Modem             Termination Systems."GROUP docsDevEventGroup        DESCRIPTION            "Mandatory in Cable Modems, optional in Cable Modem             Termination Systems."GROUP docsDevFilterGroup        DESCRIPTION            "Mandatory in Cable Modems, optional in Cable Modem             Termination Systems."GROUP docsDevNmAccessGroup        DESCRIPTION            "This group is only implemented in devices which do not             implement SNMPv3 User Security Model.  It SHOULD NOT be             implemented by SNMPv3 conformant devices.             For devices which do not implement SNMPv3 or later, this             group is Mandatory in Cable Modems and is optional             in Cable Modem Termination Systems."GROUP docsDevServerGroup        DESCRIPTION            "This group is implemented only in Cable Modems and is             not implemented in Cable Modem Termination Systems."GROUP docsDevSoftwareGroup        DESCRIPTION            "This group is Mandatory in Cable Modems and  optional in             Cable Modem Termination Systems."GROUP docsDevCpeGroup        DESCRIPTION            "This group is Mandatory in Cable Modems, and is             not implemented in Cable Modem Termination Systems.  A             similar capability for CMTS devices may be proposed later             after study."OBJECT docsDevSTPControl        MIN-ACCESS read-only        DESCRIPTION            "It is compliant to implement this object as read-only.             Devices need only support noStFilterBpdu(2)."OBJECT docsDevEvReporting         MIN-ACCESS read-only         DESCRIPTION             "It is compliant to implement this object as read-only.              Devices need only support local(0)."         ::= { docsDevCompliances 1 }docsDevBaseGroup OBJECT-GROUP        OBJECTS {             docsDevRole,             docsDevDateTime,             docsDevResetNow,             docsDevSerialNumber,             docsDevSTPControl        }        STATUS      current        DESCRIPTION            "A collection of objects providing device status and             control."        ::= { docsDevGroups 1 }docsDevNmAccessGroup OBJECT-GROUP        OBJECTS {         

⌨️ 快捷键说明

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