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

📄 rfc1514.txt

📁 著名的RFC文档,其中有一些文档是已经翻译成中文的的.
💻 TXT
📖 第 1 页 / 共 5 页
字号:
   hrProcessorLoad OBJECT-TYPE       SYNTAX INTEGER (0..100)       ACCESS read-only       STATUS mandatory       DESCRIPTION              "The average, over the last minute, of the              percentage of time that this processor was not              idle."       ::= { hrProcessorEntry 2 }   hrNetworkTable OBJECT-TYPE       SYNTAX SEQUENCE OF HrNetworkEntry       ACCESS not-accessible       STATUS mandatory       DESCRIPTION              "The (conceptual) table of network devices              contained by the host.              Note that this table is potentially sparse: a              (conceptual) entry exists only if the correspondent              value of the hrDeviceType object is              `hrDeviceNetwork'."       ::= { hrDevice 4 }   hrNetworkEntry OBJECT-TYPE       SYNTAX HrNetworkEntry       ACCESS not-accessible       STATUS mandatory       DESCRIPTION              "A (conceptual) entry for one network device              contained by the host.  The hrDeviceIndex in the              index represents the entry in the hrDeviceTable              that corresponds to the hrNetworkEntry.              As an example of how objects in this table are              named, an instance of the hrNetworkIfIndex object              might be named hrNetworkIfIndex.3"       INDEX { hrDeviceIndex }       ::= { hrNetworkTable 1 }Grillo & Waldbusser                                            [Page 14]RFC 1514                   Host Resources MIB             September 1993   HrNetworkEntry ::= SEQUENCE {           hrNetworkIfIndex    INTEGER       }   hrNetworkIfIndex OBJECT-TYPE       SYNTAX INTEGER       ACCESS read-only       STATUS mandatory       DESCRIPTION              "The value of ifIndex which corresponds to this              network device."       ::= { hrNetworkEntry 1 }   hrPrinterTable OBJECT-TYPE       SYNTAX SEQUENCE OF HrPrinterEntry       ACCESS not-accessible       STATUS mandatory       DESCRIPTION              "The (conceptual) table of printers local to the              host.              Note that this table is potentially sparse: a              (conceptual) entry exists only if the correspondent              value of the hrDeviceType object is              `hrDevicePrinter'."       ::= { hrDevice 5 }   hrPrinterEntry OBJECT-TYPE       SYNTAX HrPrinterEntry       ACCESS not-accessible       STATUS mandatory       DESCRIPTION              "A (conceptual) entry for one printer local to the              host.  The hrDeviceIndex in the index represents              the entry in the hrDeviceTable that corresponds to              the hrPrinterEntry.              As an example of how objects in this table are              named, an instance of the hrPrinterStatus object              might be named hrPrinterStatus.3"       INDEX { hrDeviceIndex }       ::= { hrPrinterTable 1 }   HrPrinterEntry ::= SEQUENCE {           hrPrinterStatus             INTEGER,           hrPrinterDetectedErrorState OCTET STRING       }Grillo & Waldbusser                                            [Page 15]RFC 1514                   Host Resources MIB             September 1993   hrPrinterStatus OBJECT-TYPE       SYNTAX INTEGER {           other(1),           unknown(2),           idle(3),           printing(4),           warmup(5)       }       ACCESS read-only       STATUS mandatory       DESCRIPTION               "The current status of this printer device.  When               in the idle(1), printing(2), or warmup(3) state,               the corresponding hrDeviceStatus should be               running(2) or warning(3).  When in the unknown               state, the corresponding hrDeviceStatus should be               unknown(1)."       ::= { hrPrinterEntry 1 }   hrPrinterDetectedErrorState OBJECT-TYPE       SYNTAX OCTET STRING       ACCESS read-only       STATUS mandatory       DESCRIPTION               "This object represents any error conditions               detected by the printer.  The error conditions are               encoded as bits in an octet string, with the               following definitions:                    Condition         Bit #    hrDeviceStatus                    lowPaper          0        warning(3)                    noPaper           1        down(5)                    lowToner          2        warning(3)                    noToner           3        down(5)                    doorOpen          4        down(5)                    jammed            5        down(5)                    offline           6        down(5)                    serviceRequested  7        warning(3)               If multiple conditions are currently detected and               the hrDeviceStatus would not otherwise be               unknown(1) or testing(4), the hrDeviceStatus shall               correspond to the worst state of those indicated,               where down(5) is worse than warning(3) which is               worse than running(2).               Bits are numbered starting with the mostGrillo & Waldbusser                                            [Page 16]RFC 1514                   Host Resources MIB             September 1993               significant bit of the first byte being bit 0, the               least significant bit of the first byte being bit               7, the most significant bit of the second byte               being bit 8, and so on.  A one bit encodes that               the condition was detected, while a zero bit               encodes that the condition was not detected.               This object is useful for alerting an operator to               specific warning or error conditions that may               occur, especially those requiring human               intervention."       ::= { hrPrinterEntry 2 }   hrDiskStorageTable OBJECT-TYPE       SYNTAX SEQUENCE OF HrDiskStorageEntry       ACCESS not-accessible       STATUS mandatory       DESCRIPTION              "The (conceptual) table of long-term storage              devices contained by the host.  In particular, disk              devices accessed remotely over a network are not              included here.              Note that this table is potentially sparse: a              (conceptual) entry exists only if the correspondent              value of the hrDeviceType object is              `hrDeviceDiskStorage'."       ::= { hrDevice 6 }   hrDiskStorageEntry OBJECT-TYPE       SYNTAX HrDiskStorageEntry       ACCESS not-accessible       STATUS mandatory       DESCRIPTION              "A (conceptual) entry for one long-term storage              device contained by the host.  The hrDeviceIndex in              the index represents the entry in the hrDeviceTable              that corresponds to the hrDiskStorageEntry. As an              example, an instance of the hrDiskStorageCapacity              object might be named hrDiskStorageCapacity.3"       INDEX { hrDeviceIndex }       ::= { hrDiskStorageTable 1 }   HrDiskStorageEntry ::= SEQUENCE {           hrDiskStorageAccess         INTEGER,           hrDiskStorageMedia          INTEGER,           hrDiskStorageRemoveble      Boolean,           hrDiskStorageCapacity       KBytesGrillo & Waldbusser                                            [Page 17]RFC 1514                   Host Resources MIB             September 1993       }   hrDiskStorageAccess OBJECT-TYPE       SYNTAX INTEGER {                       readWrite(1),                       readOnly(2)               }       ACCESS read-only       STATUS mandatory       DESCRIPTION              "An indication if this long-term storage device is              readable and writable or only readable.  This              should reflect the media type, any write-protect              mechanism, and any device configuration that              affects the entire device."       ::= { hrDiskStorageEntry 1 }   hrDiskStorageMedia OBJECT-TYPE       SYNTAX INTEGER {                   other(1),                   unknown(2),                   hardDisk(3),                   floppyDisk(4),                   opticalDiskROM(5),                   opticalDiskWORM(6),     -- Write Once Read Many                   opticalDiskRW(7),                   ramDisk(8)               }       ACCESS read-only       STATUS mandatory       DESCRIPTION              "An indication of the type of media used in this              long-term storage device."       ::= { hrDiskStorageEntry 2 }   hrDiskStorageRemoveble OBJECT-TYPE       SYNTAX Boolean       ACCESS read-only       STATUS mandatory       DESCRIPTION               "Denotes whether or not the disk media may be               removed from the drive."       ::= { hrDiskStorageEntry 3 }   hrDiskStorageCapacity OBJECT-TYPE       SYNTAX KBytes       ACCESS read-only       STATUS mandatoryGrillo & Waldbusser                                            [Page 18]RFC 1514                   Host Resources MIB             September 1993       DESCRIPTION              "The total size for this long-term storage device."       ::= { hrDiskStorageEntry 4 }   hrPartitionTable OBJECT-TYPE       SYNTAX SEQUENCE OF HrPartitionEntry       ACCESS not-accessible       STATUS mandatory       DESCRIPTION              "The (conceptual) table of partitions for long-term              storage devices contained by the host.  In              particular, partitions accessed remotely over a              network are not included here."       ::= { hrDevice 7 }   hrPartitionEntry OBJECT-TYPE       SYNTAX HrPartitionEntry       ACCESS not-accessible       STATUS mandatory       DESCRIPTION              "A (conceptual) entry for one partition.  The              hrDeviceIndex in the index represents the entry in              the hrDeviceTable that corresponds to the              hrPartitionEntry.              As an example of how objects in this table are              named, an instance of the hrPartitionSize object              might be named hrPartitionSize.3.1"       INDEX { hrDeviceIndex, hrPartitionIndex }       ::= { hrPartitionTable 1 }   HrPartitionEntry ::= SEQUENCE {           hrPartitionIndex                INTEGER,           hrPartitionLabel                InternationalDisplayString,           hrPartitionID                   OCTET STRING,           hrPartitionSize                 KBytes,           hrPartitionFSIndex              INTEGER       }   hrPartitionIndex OBJECT-TYPE       SYNTAX INTEGER (1..2147483647)       ACCESS read-only       STATUS mandatory       DESCRIPTION              "A unique value for each partition on this long-              term storage device.  The value for each long-term              storage device must remain constant at least from              one re-initialization of the agent to the next re-Grillo & Waldbusser                                            [Page 19]RFC 1514                   Host Resources MIB             September 1993              initialization."       ::= { hrPartitionEntry 1 }   hrPartitionLabel OBJECT-TYPE       SYNTAX InternationalDisplayString (SIZE (0..128))       ACCESS read-only       STATUS mandatory       DESCRIPTION              "A textual description of this partition."       ::= { hrPartitionEntry 2 }   hrPartitionID OBJECT-TYPE       SYNTAX OCTET STRING       ACCESS read-only       STATUS mandatory       DESCRIPTION              "A descriptor which uniquely represents this              partition to the responsible operating system.  On              some systems, this might take on a binary              representation."       ::= { hrPartitionEntry 3 }   hrPartitionSize OBJECT-TYPE       SYNTAX KBytes       ACCESS read-only       STATUS mandatory       DESCRIPTION               "The size of this partition."       ::= { hrPartitionEntry 4 }   hrPartitionFSIndex OBJECT-TYPE       SYNTAX INTEGER (0..2147483647)       ACCESS read-only       STATUS mandatory       DESCRIPTION               "The index of the file system mounted on this               partition.  If no file system is mounted on this               partition, then this value shall be zero.  Note               that multiple partitions may point to one file               system, denoting that that file system resides on               those partitions.  Multiple file systems may not               reside on one partition."       ::= { hrPartitionEntry 5 }

⌨️ 快捷键说明

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