Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1360 lines
46 KiB

  1. HOST-RESOURCES-MIB DEFINITIONS ::= BEGIN
  2. IMPORTS
  3. DisplayString FROM RFC1213-MIB
  4. TimeTicks,
  5. OBJECT-TYPE,
  6. Counter, Gauge FROM RFC1155-SMI;
  7. host OBJECT IDENTIFIER ::= { mib-2 25 }
  8. hrSystem OBJECT IDENTIFIER ::= { host 1 }
  9. hrStorage OBJECT IDENTIFIER ::= { host 2 }
  10. hrDevice OBJECT IDENTIFIER ::= { host 3 }
  11. hrSWRun OBJECT IDENTIFIER ::= { host 4 }
  12. hrSWRunPerf OBJECT IDENTIFIER ::= { host 5 }
  13. hrSWInstalled OBJECT IDENTIFIER ::= { host 6 }
  14. -- textual conventions
  15. -- a truth value
  16. Boolean ::= INTEGER { true(1), false(2) }
  17. -- memory size, expressed in units of 1024bytes
  18. KBytes ::= INTEGER (0..2147483647)
  19. -- This textual convention is intended to identify the manufacturer,
  20. -- model, and version of a specific hardware or software product.
  21. -- It is suggested that these OBJECT IDENTIFIERs are allocated such
  22. -- that all products from a particular manufacturer are registered
  23. -- under a subtree distinct to that manufacturer. In addition, all
  24. -- versions of a product should be registered under a subtree
  25. -- distinct to that product. With this strategy, a management
  26. -- station may uniquely determine the manufacturer and/or model of a
  27. -- product whose productID is unknown to the management station.
  28. -- Objects of this type may be useful for inventory purposes or for
  29. -- automatically detecting incompatibilities or version mismatches
  30. -- between various hardware and software components on a system.
  31. ProductID ::= OBJECT IDENTIFIER
  32. -- unknownProduct will be used for any unknown ProductID
  33. -- unknownProduct OBJECT IDENTIFIER ::= { 0 0 }
  34. -- For example, the product ID for the ACME 4860 66MHz clock doubled
  35. -- processor might be:
  36. -- enterprises.acme.acmeProcessors.a4860DX2.MHz66
  37. -- A software product might be registered as:
  38. -- enterprises.acme.acmeOperatingSystems.acmeDOS.six(6).one(1)
  39. DateAndTime ::= OCTET STRING (SIZE (8 | 11))
  40. -- A date-time specification for the local time of day.
  41. -- This data type is intended to provide a consistent
  42. -- method of reporting date information.
  43. --
  44. -- field octets contents range
  45. -- _____ ______ ________ _____
  46. -- 1 1-2 year 0..65536
  47. -- (in network byte order)
  48. -- 2 3 month 1..12
  49. -- 3 4 day 1..31
  50. -- 4 5 hour 0..23
  51. -- 5 6 minutes 0..59
  52. -- 6 7 seconds 0..60
  53. -- (use 60 for leap-second)
  54. -- 7 8 deci-seconds 0..9
  55. -- 8 9 direction from UTC "+" / "-"
  56. -- (in ascii notation)
  57. -- 9 10 hours from UTC 0..11
  58. -- 10 11 minutes from UTC 0..59
  59. --
  60. -- Note that if only local time is known, then
  61. -- timezone information (fields 8-10) is not present.
  62. InternationalDisplayString ::= OCTET STRING
  63. -- This data type is used to model textual information in some
  64. -- character set. A network management station should use a local
  65. -- algorithm to determine which character set is in use and how it
  66. -- should be displayed. Note that this character set may be encoded
  67. -- with more than one octet per symbol, but will most often be NVT
  68. -- ASCII.
  69. -- The Host Resources System Group
  70. --
  71. -- Implementation of this group is mandatory for all host systems.
  72. hrSystemUptime OBJECT-TYPE
  73. SYNTAX TimeTicks
  74. ACCESS read-only
  75. STATUS mandatory
  76. DESCRIPTION
  77. "The amount of time since this host was last
  78. initialized. Note that this is different from
  79. sysUpTime in MIB-II [3] because sysUpTime is the
  80. uptime of the network management portion of the
  81. system."
  82. ::= { hrSystem 1 }
  83. hrSystemDate OBJECT-TYPE
  84. SYNTAX DateAndTime
  85. ACCESS read-write
  86. STATUS mandatory
  87. DESCRIPTION
  88. "The host's notion of the local date and time of
  89. day."
  90. ::= { hrSystem 2 }
  91. hrSystemInitialLoadDevice OBJECT-TYPE
  92. SYNTAX INTEGER (1..2147483647)
  93. ACCESS read-write
  94. STATUS mandatory
  95. DESCRIPTION
  96. "The index of the hrDeviceEntry for the device from
  97. which this host is configured to load its initial
  98. operating system configuration."
  99. ::= { hrSystem 3 }
  100. hrSystemInitialLoadParameters OBJECT-TYPE
  101. SYNTAX InternationalDisplayString (SIZE (0..128))
  102. ACCESS read-write
  103. STATUS mandatory
  104. DESCRIPTION
  105. "This object contains the parameters (e.g. a
  106. pathname and parameter) supplied to the load device
  107. when requesting the initial operating system
  108. configuration from that device."
  109. ::= { hrSystem 4 }
  110. hrSystemNumUsers OBJECT-TYPE
  111. SYNTAX Gauge
  112. ACCESS read-only
  113. STATUS mandatory
  114. DESCRIPTION
  115. "The number of user sessions for which this host is
  116. storing state information. A session is a
  117. collection of processes requiring a single act of
  118. user authentication and possibly subject to
  119. collective job control."
  120. ::= { hrSystem 5 }
  121. hrSystemProcesses OBJECT-TYPE
  122. SYNTAX Gauge
  123. ACCESS read-only
  124. STATUS mandatory
  125. DESCRIPTION
  126. "The number of process contexts currently loaded or
  127. running on this system."
  128. ::= { hrSystem 6 }
  129. hrSystemMaxProcesses OBJECT-TYPE
  130. SYNTAX INTEGER (0..2147483647)
  131. ACCESS read-only
  132. STATUS mandatory
  133. DESCRIPTION
  134. "The maximum number of process contexts this system
  135. can support. If there is no fixed maximum, the
  136. value should be zero. On systems that have a fixed
  137. maximum, this object can help diagnose failures
  138. that occur when this maximum is reached."
  139. ::= { hrSystem 7 }
  140. -- The Host Resources Storage Group
  141. --
  142. -- Implementation of this group is mandatory for all host systems.
  143. -- Registration for some storage types, for use with hrStorageType
  144. hrStorageTypes OBJECT IDENTIFIER ::= { hrStorage 1 }
  145. hrStorageOther OBJECT IDENTIFIER ::= { hrStorageTypes 1 }
  146. hrStorageRam OBJECT IDENTIFIER ::= { hrStorageTypes 2 }
  147. -- hrStorageVirtualMemory is temporary storage of swapped
  148. -- or paged memory
  149. hrStorageVirtualMemory OBJECT IDENTIFIER ::= { hrStorageTypes 3 }
  150. hrStorageFixedDisk OBJECT IDENTIFIER ::= { hrStorageTypes 4 }
  151. hrStorageRemovableDisk OBJECT IDENTIFIER ::= { hrStorageTypes 5 }
  152. hrStorageFloppyDisk OBJECT IDENTIFIER ::= { hrStorageTypes 6 }
  153. hrStorageCompactDisc OBJECT IDENTIFIER ::= { hrStorageTypes 7 }
  154. hrStorageRamDisk OBJECT IDENTIFIER ::= { hrStorageTypes 8 }
  155. hrMemorySize OBJECT-TYPE
  156. SYNTAX KBytes
  157. ACCESS read-only
  158. STATUS mandatory
  159. DESCRIPTION
  160. "The amount of physical main memory contained by
  161. the host."
  162. ::= { hrStorage 2 }
  163. hrStorageTable OBJECT-TYPE
  164. SYNTAX SEQUENCE OF HrStorageEntry
  165. ACCESS not-accessible
  166. STATUS mandatory
  167. DESCRIPTION
  168. "The (conceptual) table of logical storage areas on
  169. the host.
  170. An entry shall be placed in the storage table for
  171. each logical area of storage that is allocated and
  172. has fixed resource limits. The amount of storage
  173. represented in an entity is the amount actually
  174. usable by the requesting entity, and excludes loss
  175. due to formatting or file system reference
  176. information.
  177. These entries are associated with logical storage
  178. areas, as might be seen by an application, rather
  179. than physical storage entities which are typically
  180. seen by an operating system. Storage such as tapes
  181. and floppies without file systems on them are
  182. typically not allocated in chunks by the operating
  183. system to requesting applications, and therefore
  184. shouldn't appear in this table. Examples of valid
  185. storage for this table include disk partitions,
  186. file systems, ram (for some architectures this is
  187. further segmented into regular memory, extended
  188. memory, and so on), backing store for virtual
  189. memory (`swap space').
  190. This table is intended to be a useful diagnostic
  191. for `out of memory' and `out of buffers' types of
  192. failures. In addition, it can be a useful
  193. performance monitoring tool for tracking memory,
  194. disk, or buffer usage."
  195. ::= { hrStorage 3 }
  196. hrStorageEntry OBJECT-TYPE
  197. SYNTAX HrStorageEntry
  198. ACCESS not-accessible
  199. STATUS mandatory
  200. DESCRIPTION
  201. "A (conceptual) entry for one logical storage area
  202. on the host. As an example, an instance of the
  203. hrStorageType object might be named
  204. hrStorageType.3"
  205. INDEX { hrStorageIndex }
  206. ::= { hrStorageTable 1 }
  207. HrStorageEntry ::= SEQUENCE {
  208. hrStorageIndex INTEGER,
  209. hrStorageType OBJECT IDENTIFIER,
  210. hrStorageDescr DisplayString,
  211. hrStorageAllocationUnits INTEGER,
  212. hrStorageSize INTEGER,
  213. hrStorageUsed INTEGER,
  214. hrStorageAllocationFailures Counter
  215. }
  216. hrStorageIndex OBJECT-TYPE
  217. SYNTAX INTEGER (1..2147483647)
  218. ACCESS read-only
  219. STATUS mandatory
  220. DESCRIPTION
  221. "A unique value for each logical storage area
  222. contained by the host."
  223. ::= { hrStorageEntry 1 }
  224. hrStorageType OBJECT-TYPE
  225. SYNTAX OBJECT IDENTIFIER
  226. ACCESS read-only
  227. STATUS mandatory
  228. DESCRIPTION
  229. "The type of storage represented by this entry."
  230. ::= { hrStorageEntry 2 }
  231. hrStorageDescr OBJECT-TYPE
  232. SYNTAX DisplayString
  233. ACCESS read-only
  234. STATUS mandatory
  235. DESCRIPTION
  236. "A description of the type and instance of the
  237. storage described by this entry."
  238. ::= { hrStorageEntry 3 }
  239. hrStorageAllocationUnits OBJECT-TYPE
  240. SYNTAX INTEGER (1..2147483647)
  241. ACCESS read-only
  242. STATUS mandatory
  243. DESCRIPTION
  244. "The size, in bytes, of the data objects allocated
  245. from this pool. If this entry is monitoring
  246. sectors, blocks, buffers, or packets, for example,
  247. this number will commonly be greater than one.
  248. Otherwise this number will typically be one."
  249. ::= { hrStorageEntry 4 }
  250. hrStorageSize OBJECT-TYPE
  251. SYNTAX INTEGER (0..2147483647)
  252. ACCESS read-write
  253. STATUS mandatory
  254. DESCRIPTION
  255. "The size of the storage represented by this entry,
  256. in units of hrStorageAllocationUnits."
  257. ::= { hrStorageEntry 5 }
  258. hrStorageUsed OBJECT-TYPE
  259. SYNTAX INTEGER (0..2147483647)
  260. ACCESS read-only
  261. STATUS mandatory
  262. DESCRIPTION
  263. "The amount of the storage represented by this
  264. entry that is allocated, in units of
  265. hrStorageAllocationUnits."
  266. ::= { hrStorageEntry 6 }
  267. hrStorageAllocationFailures OBJECT-TYPE
  268. SYNTAX Counter
  269. ACCESS read-only
  270. STATUS mandatory
  271. DESCRIPTION
  272. "The number of requests for storage represented by
  273. this entry that could not be honored due to not
  274. enough storage. It should be noted that as this
  275. object has a SYNTAX of Counter, that it does not
  276. have a defined initial value. However, it is
  277. recommended that this object be initialized to
  278. zero."
  279. ::= { hrStorageEntry 7 }
  280. -- The Host Resources Device Group
  281. --
  282. -- Implementation of this group is mandatory for all host systems.
  283. --
  284. -- The device group is useful for identifying and diagnosing the
  285. -- devices on a system. The hrDeviceTable contains common
  286. -- information for any type of device. In addition, some devices
  287. -- have device-specific tables for more detailed information. More
  288. -- such tables may be defined in the future for other device types.
  289. -- Registration for some device types, for use with hrDeviceType
  290. hrDeviceTypes OBJECT IDENTIFIER ::= { hrDevice 1 }
  291. hrDeviceOther OBJECT IDENTIFIER ::= { hrDeviceTypes 1 }
  292. hrDeviceUnknown OBJECT IDENTIFIER ::= { hrDeviceTypes 2 }
  293. hrDeviceProcessor OBJECT IDENTIFIER ::= { hrDeviceTypes 3 }
  294. hrDeviceNetwork OBJECT IDENTIFIER ::= { hrDeviceTypes 4 }
  295. hrDevicePrinter OBJECT IDENTIFIER ::= { hrDeviceTypes 5 }
  296. hrDeviceDiskStorage OBJECT IDENTIFIER ::= { hrDeviceTypes 6 }
  297. hrDeviceVideo OBJECT IDENTIFIER ::= { hrDeviceTypes 10 }
  298. hrDeviceAudio OBJECT IDENTIFIER ::= { hrDeviceTypes 11 }
  299. hrDeviceCoprocessor OBJECT IDENTIFIER ::= { hrDeviceTypes 12 }
  300. hrDeviceKeyboard OBJECT IDENTIFIER ::= { hrDeviceTypes 13 }
  301. hrDeviceModem OBJECT IDENTIFIER ::= { hrDeviceTypes 14 }
  302. hrDeviceParallelPort OBJECT IDENTIFIER ::= { hrDeviceTypes 15 }
  303. hrDevicePointing OBJECT IDENTIFIER ::= { hrDeviceTypes 16 }
  304. hrDeviceSerialPort OBJECT IDENTIFIER ::= { hrDeviceTypes 17 }
  305. hrDeviceTape OBJECT IDENTIFIER ::= { hrDeviceTypes 18 }
  306. hrDeviceClock OBJECT IDENTIFIER ::= { hrDeviceTypes 19 }
  307. hrDeviceVolatileMemory OBJECT IDENTIFIER ::= { hrDeviceTypes 20 }
  308. hrDeviceNonVolatileMemory OBJECT IDENTIFIER ::= { hrDeviceTypes 21 }
  309. hrDeviceTable OBJECT-TYPE
  310. SYNTAX SEQUENCE OF HrDeviceEntry
  311. ACCESS not-accessible
  312. STATUS mandatory
  313. DESCRIPTION
  314. "The (conceptual) table of devices contained by the
  315. host."
  316. ::= { hrDevice 2 }
  317. hrDeviceEntry OBJECT-TYPE
  318. SYNTAX HrDeviceEntry
  319. ACCESS not-accessible
  320. STATUS mandatory
  321. DESCRIPTION
  322. "A (conceptual) entry for one device contained by
  323. the host. As an example, an instance of the
  324. hrDeviceType object might be named hrDeviceType.3"
  325. INDEX { hrDeviceIndex }
  326. ::= { hrDeviceTable 1 }
  327. HrDeviceEntry ::= SEQUENCE {
  328. hrDeviceIndex INTEGER,
  329. hrDeviceType OBJECT IDENTIFIER,
  330. hrDeviceDescr DisplayString,
  331. hrDeviceID ProductID,
  332. hrDeviceStatus INTEGER,
  333. hrDeviceErrors Counter
  334. }
  335. hrDeviceIndex OBJECT-TYPE
  336. SYNTAX INTEGER (1..2147483647)
  337. ACCESS read-only
  338. STATUS mandatory
  339. DESCRIPTION
  340. "A unique value for each device contained by the
  341. host. The value for each device must remain
  342. constant at least from one re-initialization of the
  343. agent to the next re-initialization."
  344. ::= { hrDeviceEntry 1 }
  345. hrDeviceType OBJECT-TYPE
  346. SYNTAX OBJECT IDENTIFIER
  347. ACCESS read-only
  348. STATUS mandatory
  349. DESCRIPTION
  350. "An indication of the type of device.
  351. If this value is `hrDeviceProcessor { hrDeviceTypes
  352. 3 }' then an entry exists in the hrProcessorTable
  353. which corresponds to this device.
  354. If this value is `hrDeviceNetwork { hrDeviceTypes 4
  355. }', then an entry exists in the hrNetworkTable
  356. which corresponds to this device.
  357. If this value is `hrDevicePrinter { hrDeviceTypes 5
  358. }', then an entry exists in the hrPrinterTable
  359. which corresponds to this device.
  360. If this value is `hrDeviceDiskStorage {
  361. hrDeviceTypes 6 }', then an entry exists in the
  362. hrDiskStorageTable which corresponds to this
  363. device."
  364. ::= { hrDeviceEntry 2 }
  365. hrDeviceDescr OBJECT-TYPE
  366. SYNTAX DisplayString (SIZE (0..64))
  367. ACCESS read-only
  368. STATUS mandatory
  369. DESCRIPTION
  370. "A textual description of this device, including
  371. the device's manufacturer and revision, and
  372. optionally, its serial number."
  373. ::= { hrDeviceEntry 3 }
  374. hrDeviceID OBJECT-TYPE
  375. SYNTAX ProductID
  376. ACCESS read-only
  377. STATUS mandatory
  378. DESCRIPTION
  379. "The product ID for this device."
  380. ::= { hrDeviceEntry 4 }
  381. hrDeviceStatus OBJECT-TYPE
  382. SYNTAX INTEGER {
  383. unknown(1),
  384. running(2),
  385. warning(3),
  386. testing(4),
  387. down(5)
  388. }
  389. ACCESS read-only
  390. STATUS mandatory
  391. DESCRIPTION
  392. "The current operational state of the device
  393. described by this row of the table. A value
  394. unknown(1) indicates that the current state of the
  395. device is unknown. running(2) indicates that the
  396. device is up and running and that no unusual error
  397. conditions are known. The warning(3) state
  398. indicates that agent has been informed of an
  399. unusual error condition by the operational software
  400. (e.g., a disk device driver) but that the device is
  401. still 'operational'. An example would be high
  402. number of soft errors on a disk. A value of
  403. testing(4), indicates that the device is not
  404. available for use because it is in the testing
  405. state. The state of down(5) is used only when the
  406. agent has been informed that the device is not
  407. available for any use."
  408. ::= { hrDeviceEntry 5 }
  409. hrDeviceErrors OBJECT-TYPE
  410. SYNTAX Counter
  411. ACCESS read-only
  412. STATUS mandatory
  413. DESCRIPTION
  414. "The number of errors detected on this device. It
  415. should be noted that as this object has a SYNTAX
  416. of Counter, that it does not have a defined
  417. initial value. However, it is recommended that
  418. this object be initialized to zero."
  419. ::= { hrDeviceEntry 6 }
  420. hrProcessorTable OBJECT-TYPE
  421. SYNTAX SEQUENCE OF HrProcessorEntry
  422. ACCESS not-accessible
  423. STATUS mandatory
  424. DESCRIPTION
  425. "The (conceptual) table of processors contained by
  426. the host.
  427. Note that this table is potentially sparse: a
  428. (conceptual) entry exists only if the correspondent
  429. value of the hrDeviceType object is
  430. `hrDeviceProcessor'."
  431. ::= { hrDevice 3 }
  432. hrProcessorEntry OBJECT-TYPE
  433. SYNTAX HrProcessorEntry
  434. ACCESS not-accessible
  435. STATUS mandatory
  436. DESCRIPTION
  437. "A (conceptual) entry for one processor contained
  438. by the host. The hrDeviceIndex in the index
  439. represents the entry in the hrDeviceTable that
  440. corresponds to the hrProcessorEntry.
  441. As an example of how objects in this table are
  442. named, an instance of the hrProcessorFrwID object
  443. might be named hrProcessorFrwID.3"
  444. INDEX { hrDeviceIndex }
  445. ::= { hrProcessorTable 1 }
  446. HrProcessorEntry ::= SEQUENCE {
  447. hrProcessorFrwID ProductID,
  448. hrProcessorLoad INTEGER
  449. }
  450. hrProcessorFrwID OBJECT-TYPE
  451. SYNTAX ProductID
  452. ACCESS read-only
  453. STATUS mandatory
  454. DESCRIPTION
  455. "The product ID of the firmware associated with the
  456. processor."
  457. ::= { hrProcessorEntry 1 }
  458. hrProcessorLoad OBJECT-TYPE
  459. SYNTAX INTEGER (0..100)
  460. ACCESS read-only
  461. STATUS mandatory
  462. DESCRIPTION
  463. "The average, over the last minute, of the
  464. percentage of time that this processor was not
  465. idle."
  466. ::= { hrProcessorEntry 2 }
  467. hrNetworkTable OBJECT-TYPE
  468. SYNTAX SEQUENCE OF HrNetworkEntry
  469. ACCESS not-accessible
  470. STATUS mandatory
  471. DESCRIPTION
  472. "The (conceptual) table of network devices
  473. contained by the host.
  474. Note that this table is potentially sparse: a
  475. (conceptual) entry exists only if the correspondent
  476. value of the hrDeviceType object is
  477. `hrDeviceNetwork'."
  478. ::= { hrDevice 4 }
  479. hrNetworkEntry OBJECT-TYPE
  480. SYNTAX HrNetworkEntry
  481. ACCESS not-accessible
  482. STATUS mandatory
  483. DESCRIPTION
  484. "A (conceptual) entry for one network device
  485. contained by the host. The hrDeviceIndex in the
  486. index represents the entry in the hrDeviceTable
  487. that corresponds to the hrNetworkEntry.
  488. As an example of how objects in this table are
  489. named, an instance of the hrNetworkIfIndex object
  490. might be named hrNetworkIfIndex.3"
  491. INDEX { hrDeviceIndex }
  492. ::= { hrNetworkTable 1 }
  493. HrNetworkEntry ::= SEQUENCE {
  494. hrNetworkIfIndex INTEGER
  495. }
  496. hrNetworkIfIndex OBJECT-TYPE
  497. SYNTAX INTEGER
  498. ACCESS read-only
  499. STATUS mandatory
  500. DESCRIPTION
  501. "The value of ifIndex which corresponds to this
  502. network device."
  503. ::= { hrNetworkEntry 1 }
  504. hrPrinterTable OBJECT-TYPE
  505. SYNTAX SEQUENCE OF HrPrinterEntry
  506. ACCESS not-accessible
  507. STATUS mandatory
  508. DESCRIPTION
  509. "The (conceptual) table of printers local to the
  510. host.
  511. Note that this table is potentially sparse: a
  512. (conceptual) entry exists only if the correspondent
  513. value of the hrDeviceType object is
  514. `hrDevicePrinter'."
  515. ::= { hrDevice 5 }
  516. hrPrinterEntry OBJECT-TYPE
  517. SYNTAX HrPrinterEntry
  518. ACCESS not-accessible
  519. STATUS mandatory
  520. DESCRIPTION
  521. "A (conceptual) entry for one printer local to the
  522. host. The hrDeviceIndex in the index represents
  523. the entry in the hrDeviceTable that corresponds to
  524. the hrPrinterEntry.
  525. As an example of how objects in this table are
  526. named, an instance of the hrPrinterStatus object
  527. might be named hrPrinterStatus.3"
  528. INDEX { hrDeviceIndex }
  529. ::= { hrPrinterTable 1 }
  530. HrPrinterEntry ::= SEQUENCE {
  531. hrPrinterStatus INTEGER,
  532. hrPrinterDetectedErrorState OCTET STRING
  533. }
  534. hrPrinterStatus OBJECT-TYPE
  535. SYNTAX INTEGER {
  536. other(1),
  537. unknown(2),
  538. idle(3),
  539. printing(4),
  540. warmup(5)
  541. }
  542. ACCESS read-only
  543. STATUS mandatory
  544. DESCRIPTION
  545. "The current status of this printer device. When
  546. in the idle(1), printing(2), or warmup(3) state,
  547. the corresponding hrDeviceStatus should be
  548. running(2) or warning(3). When in the unknown
  549. state, the corresponding hrDeviceStatus should be
  550. unknown(1)."
  551. ::= { hrPrinterEntry 1 }
  552. hrPrinterDetectedErrorState OBJECT-TYPE
  553. SYNTAX OCTET STRING
  554. ACCESS read-only
  555. STATUS mandatory
  556. DESCRIPTION
  557. "This object represents any error conditions
  558. detected by the printer. The error conditions are
  559. encoded as bits in an octet string, with the
  560. following definitions:
  561. Condition Bit # hrDeviceStatus
  562. lowPaper 0 warning(3)
  563. noPaper 1 down(5)
  564. lowToner 2 warning(3)
  565. noToner 3 down(5)
  566. doorOpen 4 down(5)
  567. jammed 5 down(5)
  568. offline 6 down(5)
  569. serviceRequested 7 warning(3)
  570. If multiple conditions are currently detected and
  571. the hrDeviceStatus would not otherwise be
  572. unknown(1) or testing(4), the hrDeviceStatus shall
  573. correspond to the worst state of those indicated,
  574. where down(5) is worse than warning(3) which is
  575. worse than running(2).
  576. Bits are numbered starting with the most
  577. significant bit of the first byte being bit 0, the
  578. least significant bit of the first byte being bit
  579. 7, the most significant bit of the second byte
  580. being bit 8, and so on. A one bit encodes that
  581. the condition was detected, while a zero bit
  582. encodes that the condition was not detected.
  583. This object is useful for alerting an operator to
  584. specific warning or error conditions that may
  585. occur, especially those requiring human
  586. intervention."
  587. ::= { hrPrinterEntry 2 }
  588. hrDiskStorageTable OBJECT-TYPE
  589. SYNTAX SEQUENCE OF HrDiskStorageEntry
  590. ACCESS not-accessible
  591. STATUS mandatory
  592. DESCRIPTION
  593. "The (conceptual) table of long-term storage
  594. devices contained by the host. In particular, disk
  595. devices accessed remotely over a network are not
  596. included here.
  597. Note that this table is potentially sparse: a
  598. (conceptual) entry exists only if the correspondent
  599. value of the hrDeviceType object is
  600. `hrDeviceDiskStorage'."
  601. ::= { hrDevice 6 }
  602. hrDiskStorageEntry OBJECT-TYPE
  603. SYNTAX HrDiskStorageEntry
  604. ACCESS not-accessible
  605. STATUS mandatory
  606. DESCRIPTION
  607. "A (conceptual) entry for one long-term storage
  608. device contained by the host. The hrDeviceIndex in
  609. the index represents the entry in the hrDeviceTable
  610. that corresponds to the hrDiskStorageEntry. As an
  611. example, an instance of the hrDiskStorageCapacity
  612. object might be named hrDiskStorageCapacity.3"
  613. INDEX { hrDeviceIndex }
  614. ::= { hrDiskStorageTable 1 }
  615. HrDiskStorageEntry ::= SEQUENCE {
  616. hrDiskStorageAccess INTEGER,
  617. hrDiskStorageMedia INTEGER,
  618. hrDiskStorageRemoveble Boolean,
  619. hrDiskStorageCapacity KBytes
  620. }
  621. hrDiskStorageAccess OBJECT-TYPE
  622. SYNTAX INTEGER {
  623. readWrite(1),
  624. readOnly(2)
  625. }
  626. ACCESS read-only
  627. STATUS mandatory
  628. DESCRIPTION
  629. "An indication if this long-term storage device is
  630. readable and writable or only readable. This
  631. should reflect the media type, any write-protect
  632. mechanism, and any device configuration that
  633. affects the entire device."
  634. ::= { hrDiskStorageEntry 1 }
  635. hrDiskStorageMedia OBJECT-TYPE
  636. SYNTAX INTEGER {
  637. other(1),
  638. unknown(2),
  639. hardDisk(3),
  640. floppyDisk(4),
  641. opticalDiskROM(5),
  642. opticalDiskWORM(6), -- Write Once Read Many
  643. opticalDiskRW(7),
  644. ramDisk(8)
  645. }
  646. ACCESS read-only
  647. STATUS mandatory
  648. DESCRIPTION
  649. "An indication of the type of media used in this
  650. long-term storage device."
  651. ::= { hrDiskStorageEntry 2 }
  652. hrDiskStorageRemoveble OBJECT-TYPE
  653. SYNTAX Boolean
  654. ACCESS read-only
  655. STATUS mandatory
  656. DESCRIPTION
  657. "Denotes whether or not the disk media may be
  658. removed from the drive."
  659. ::= { hrDiskStorageEntry 3 }
  660. hrDiskStorageCapacity OBJECT-TYPE
  661. SYNTAX KBytes
  662. ACCESS read-only
  663. STATUS mandatory
  664. DESCRIPTION
  665. "The total size for this long-term storage device."
  666. ::= { hrDiskStorageEntry 4 }
  667. hrPartitionTable OBJECT-TYPE
  668. SYNTAX SEQUENCE OF HrPartitionEntry
  669. ACCESS not-accessible
  670. STATUS mandatory
  671. DESCRIPTION
  672. "The (conceptual) table of partitions for long-term
  673. storage devices contained by the host. In
  674. particular, partitions accessed remotely over a
  675. network are not included here."
  676. ::= { hrDevice 7 }
  677. hrPartitionEntry OBJECT-TYPE
  678. SYNTAX HrPartitionEntry
  679. ACCESS not-accessible
  680. STATUS mandatory
  681. DESCRIPTION
  682. "A (conceptual) entry for one partition. The
  683. hrDeviceIndex in the index represents the entry in
  684. the hrDeviceTable that corresponds to the
  685. hrPartitionEntry.
  686. As an example of how objects in this table are
  687. named, an instance of the hrPartitionSize object
  688. might be named hrPartitionSize.3.1"
  689. INDEX { hrDeviceIndex, hrPartitionIndex }
  690. ::= { hrPartitionTable 1 }
  691. HrPartitionEntry ::= SEQUENCE {
  692. hrPartitionIndex INTEGER,
  693. hrPartitionLabel InternationalDisplayString,
  694. hrPartitionID OCTET STRING,
  695. hrPartitionSize KBytes,
  696. hrPartitionFSIndex INTEGER
  697. }
  698. hrPartitionIndex OBJECT-TYPE
  699. SYNTAX INTEGER (1..2147483647)
  700. ACCESS read-only
  701. STATUS mandatory
  702. DESCRIPTION
  703. "A unique value for each partition on this long-
  704. term storage device. The value for each long-term
  705. storage device must remain constant at least from
  706. one re-initialization of the agent to the next re-
  707. initialization."
  708. ::= { hrPartitionEntry 1 }
  709. hrPartitionLabel OBJECT-TYPE
  710. SYNTAX InternationalDisplayString (SIZE (0..128))
  711. ACCESS read-only
  712. STATUS mandatory
  713. DESCRIPTION
  714. "A textual description of this partition."
  715. ::= { hrPartitionEntry 2 }
  716. hrPartitionID OBJECT-TYPE
  717. SYNTAX OCTET STRING
  718. ACCESS read-only
  719. STATUS mandatory
  720. DESCRIPTION
  721. "A descriptor which uniquely represents this
  722. partition to the responsible operating system. On
  723. some systems, this might take on a binary
  724. representation."
  725. ::= { hrPartitionEntry 3 }
  726. hrPartitionSize OBJECT-TYPE
  727. SYNTAX KBytes
  728. ACCESS read-only
  729. STATUS mandatory
  730. DESCRIPTION
  731. "The size of this partition."
  732. ::= { hrPartitionEntry 4 }
  733. hrPartitionFSIndex OBJECT-TYPE
  734. SYNTAX INTEGER (0..2147483647)
  735. ACCESS read-only
  736. STATUS mandatory
  737. DESCRIPTION
  738. "The index of the file system mounted on this
  739. partition. If no file system is mounted on this
  740. partition, then this value shall be zero. Note
  741. that multiple partitions may point to one file
  742. system, denoting that that file system resides on
  743. those partitions. Multiple file systems may not
  744. reside on one partition."
  745. ::= { hrPartitionEntry 5 }
  746. -- The File System Table
  747. hrFSTable OBJECT-TYPE
  748. SYNTAX SEQUENCE OF HrFSEntry
  749. ACCESS not-accessible
  750. STATUS mandatory
  751. DESCRIPTION
  752. "The (conceptual) table of file systems local to
  753. this host or remotely mounted from a file server.
  754. File systems that are in only one user's
  755. environment on a multi-user system will not be
  756. included in this table."
  757. ::= { hrDevice 8 }
  758. hrFSEntry OBJECT-TYPE
  759. SYNTAX HrFSEntry
  760. ACCESS not-accessible
  761. STATUS mandatory
  762. DESCRIPTION
  763. "A (conceptual) entry for one file system local to
  764. this host or remotely mounted from a file server.
  765. File systems that are in only one user's
  766. environment on a multi-user system will not be
  767. included in this table.
  768. As an example of how objects in this table are
  769. named, an instance of the hrFSMountPoint object
  770. might be named hrFSMountPoint.3"
  771. INDEX { hrFSIndex }
  772. ::= { hrFSTable 1 }
  773. -- Registration for some popular File System types,
  774. -- for use with hrFSType.
  775. hrFSTypes OBJECT IDENTIFIER ::= { hrDevice 9 }
  776. hrFSOther OBJECT IDENTIFIER ::= { hrFSTypes 1 }
  777. hrFSUnknown OBJECT IDENTIFIER ::= { hrFSTypes 2 }
  778. hrFSBerkeleyFFS OBJECT IDENTIFIER ::= { hrFSTypes 3 }
  779. hrFSSys5FS OBJECT IDENTIFIER ::= { hrFSTypes 4 }
  780. -- DOS
  781. hrFSFat OBJECT IDENTIFIER ::= { hrFSTypes 5 }
  782. -- OS/2 High Performance File System
  783. hrFSHPFS OBJECT IDENTIFIER ::= { hrFSTypes 6 }
  784. -- Macintosh Hierarchical File System
  785. hrFSHFS OBJECT IDENTIFIER ::= { hrFSTypes 7 }
  786. -- Macintosh File System
  787. hrFSMFS OBJECT IDENTIFIER ::= { hrFSTypes 8 }
  788. -- Windows NT
  789. hrFSNTFS OBJECT IDENTIFIER ::= { hrFSTypes 9 }
  790. hrFSVNode OBJECT IDENTIFIER ::= { hrFSTypes 10 }
  791. hrFSJournaled OBJECT IDENTIFIER ::= { hrFSTypes 11 }
  792. -- CD File systems
  793. hrFSiso9660 OBJECT IDENTIFIER ::= { hrFSTypes 12 }
  794. hrFSRockRidge OBJECT IDENTIFIER ::= { hrFSTypes 13 }
  795. hrFSNFS OBJECT IDENTIFIER ::= { hrFSTypes 14 }
  796. hrFSNetware OBJECT IDENTIFIER ::= { hrFSTypes 15 }
  797. -- Andrew File System
  798. hrFSAFS OBJECT IDENTIFIER ::= { hrFSTypes 16 }
  799. -- OSF DCE Distributed File System
  800. hrFSDFS OBJECT IDENTIFIER ::= { hrFSTypes 17 }
  801. hrFSAppleshare OBJECT IDENTIFIER ::= { hrFSTypes 18 }
  802. hrFSRFS OBJECT IDENTIFIER ::= { hrFSTypes 19 }
  803. -- Data General
  804. hrFSDGCFS OBJECT IDENTIFIER ::= { hrFSTypes 20 }
  805. -- SVR4 Boot File System
  806. hrFSBFS OBJECT IDENTIFIER ::= { hrFSTypes 21 }
  807. HrFSEntry ::= SEQUENCE {
  808. hrFSIndex INTEGER,
  809. hrFSMountPoint InternationalDisplayString,
  810. hrFSRemoteMountPoint InternationalDisplayString,
  811. hrFSType OBJECT IDENTIFIER,
  812. hrFSAccess INTEGER,
  813. hrFSBootable Boolean,
  814. hrFSStorageIndex INTEGER,
  815. hrFSLastFullBackupDate DateAndTime,
  816. hrFSLastPartialBackupDate DateAndTime
  817. }
  818. hrFSIndex OBJECT-TYPE
  819. SYNTAX INTEGER (1..2147483647)
  820. ACCESS read-only
  821. STATUS mandatory
  822. DESCRIPTION
  823. "A unique value for each file system local to this
  824. host. The value for each file system must remain
  825. constant at least from one re-initialization of
  826. the agent to the next re-initialization."
  827. ::= { hrFSEntry 1 }
  828. hrFSMountPoint OBJECT-TYPE
  829. SYNTAX InternationalDisplayString (SIZE(0..128))
  830. ACCESS read-only
  831. STATUS mandatory
  832. DESCRIPTION
  833. "The path name of the root of this file system."
  834. ::= { hrFSEntry 2 }
  835. hrFSRemoteMountPoint OBJECT-TYPE
  836. SYNTAX InternationalDisplayString (SIZE(0..128))
  837. ACCESS read-only
  838. STATUS mandatory
  839. DESCRIPTION
  840. "A description of the name and/or address of the
  841. server that this file system is mounted from.
  842. This may also include parameters such as the mount
  843. point on the remote file system. If this is not a
  844. remote file system, this string should have a
  845. length of zero."
  846. ::= { hrFSEntry 3 }
  847. hrFSType OBJECT-TYPE
  848. SYNTAX OBJECT IDENTIFIER
  849. ACCESS read-only
  850. STATUS mandatory
  851. DESCRIPTION
  852. "The value of this object identifies the type of
  853. this file system."
  854. ::= { hrFSEntry 4 }
  855. hrFSAccess OBJECT-TYPE
  856. SYNTAX INTEGER {
  857. readWrite(1),
  858. readOnly(2)
  859. }
  860. ACCESS read-only
  861. STATUS mandatory
  862. DESCRIPTION
  863. "An indication if this file system is logically
  864. configured by the operating system to be readable
  865. and writable or only readable. This does not
  866. represent any local access-control policy, except
  867. one that is applied to the file system as a whole."
  868. ::= { hrFSEntry 5 }
  869. hrFSBootable OBJECT-TYPE
  870. SYNTAX Boolean
  871. ACCESS read-only
  872. STATUS mandatory
  873. DESCRIPTION
  874. "A flag indicating whether this file system is
  875. bootable."
  876. ::= { hrFSEntry 6 }
  877. hrFSStorageIndex OBJECT-TYPE
  878. SYNTAX INTEGER (0..2147483647)
  879. ACCESS read-only
  880. STATUS mandatory
  881. DESCRIPTION
  882. "The index of the hrStorageEntry that represents
  883. information about this file system. If there is
  884. no such information available, then this value
  885. shall be zero. The relevant storage entry will be
  886. useful in tracking the percent usage of this file
  887. system and diagnosing errors that may occur when
  888. it runs out of space."
  889. ::= { hrFSEntry 7 }
  890. hrFSLastFullBackupDate OBJECT-TYPE
  891. SYNTAX DateAndTime
  892. ACCESS read-write
  893. STATUS mandatory
  894. DESCRIPTION
  895. "The last date at which this complete file system
  896. was copied to another storage device for backup.
  897. This information is useful for ensuring that
  898. backups are being performed regularly.
  899. If this information is not known, then this
  900. variable shall have the value corresponding to
  901. January 1, year 0000, 00:00:00.0, which is encoded
  902. as (hex)'00 00 01 01 00 00 00 00'."
  903. ::= { hrFSEntry 8 }
  904. hrFSLastPartialBackupDate OBJECT-TYPE
  905. SYNTAX DateAndTime
  906. ACCESS read-write
  907. STATUS mandatory
  908. DESCRIPTION
  909. "The last date at which a portion of this file
  910. system was copied to another storage device for
  911. backup. This information is useful for ensuring
  912. that backups are being performed regularly.
  913. If this information is not known, then this
  914. variable shall have the value corresponding to
  915. January 1, year 0000, 00:00:00.0, which is encoded
  916. as (hex)'00 00 01 01 00 00 00 00'."
  917. ::= { hrFSEntry 9 }
  918. -- The Host Resources Running Software Group
  919. --
  920. -- Implementation of this group is optional.
  921. --
  922. -- The hrSWRunTable contains an entry for each distinct piece of
  923. -- software that is running or loaded into physical or virtual
  924. -- memory in preparation for running. This includes the host's
  925. -- operating system, device drivers, and applications.
  926. hrSWOSIndex OBJECT-TYPE
  927. SYNTAX INTEGER (1..2147483647)
  928. ACCESS read-only
  929. STATUS mandatory
  930. DESCRIPTION
  931. "The value of the hrSWRunIndex for the
  932. hrSWRunEntry that represents the primary operating
  933. system running on this host. This object is
  934. useful for quickly and uniquely identifying that
  935. primary operating system."
  936. ::= { hrSWRun 1 }
  937. hrSWRunTable OBJECT-TYPE
  938. SYNTAX SEQUENCE OF HrSWRunEntry
  939. ACCESS not-accessible
  940. STATUS mandatory
  941. DESCRIPTION
  942. "The (conceptual) table of software running on the
  943. host."
  944. ::= { hrSWRun 2 }
  945. hrSWRunEntry OBJECT-TYPE
  946. SYNTAX HrSWRunEntry
  947. ACCESS not-accessible
  948. STATUS mandatory
  949. DESCRIPTION
  950. "A (conceptual) entry for one piece of software
  951. running on the host Note that because the installed
  952. software table only contains information for
  953. software stored locally on this host, not every
  954. piece of running software will be found in the
  955. installed software table. This is true of software
  956. that was loaded and run from a non-local source,
  957. such as a network-mounted file system.
  958. As an example of how objects in this table are
  959. named, an instance of the hrSWRunName object might
  960. be named hrSWRunName.1287"
  961. INDEX { hrSWRunIndex }
  962. ::= { hrSWRunTable 1 }
  963. HrSWRunEntry ::= SEQUENCE {
  964. hrSWRunIndex INTEGER,
  965. hrSWRunName InternationalDisplayString,
  966. hrSWRunID ProductID,
  967. hrSWRunPath InternationalDisplayString,
  968. hrSWRunParameters InternationalDisplayString,
  969. hrSWRunType INTEGER,
  970. hrSWRunStatus INTEGER
  971. }
  972. hrSWRunIndex OBJECT-TYPE
  973. SYNTAX INTEGER (1..2147483647)
  974. ACCESS read-only
  975. STATUS mandatory
  976. DESCRIPTION
  977. "A unique value for each piece of software running
  978. on the host. Wherever possible, this should be the
  979. system's native, unique identification number."
  980. ::= { hrSWRunEntry 1 }
  981. hrSWRunName OBJECT-TYPE
  982. SYNTAX InternationalDisplayString (SIZE (0..64))
  983. ACCESS read-only
  984. STATUS mandatory
  985. DESCRIPTION
  986. "A textual description of this running piece of
  987. software, including the manufacturer, revision,
  988. and the name by which it is commonly known. If
  989. this software was installed locally, this should be
  990. the same string as used in the corresponding
  991. hrSWInstalledName."
  992. ::= { hrSWRunEntry 2 }
  993. hrSWRunID OBJECT-TYPE
  994. SYNTAX ProductID
  995. ACCESS read-only
  996. STATUS mandatory
  997. DESCRIPTION
  998. "The product ID of this running piece of software."
  999. ::= { hrSWRunEntry 3 }
  1000. hrSWRunPath OBJECT-TYPE
  1001. SYNTAX InternationalDisplayString (SIZE(0..128))
  1002. ACCESS read-only
  1003. STATUS mandatory
  1004. DESCRIPTION
  1005. "A description of the location on long-term storage
  1006. (e.g. a disk drive) from which this software was
  1007. loaded."
  1008. ::= { hrSWRunEntry 4 }
  1009. hrSWRunParameters OBJECT-TYPE
  1010. SYNTAX InternationalDisplayString (SIZE(0..128))
  1011. ACCESS read-only
  1012. STATUS mandatory
  1013. DESCRIPTION
  1014. "A description of the parameters supplied to this
  1015. software when it was initially loaded."
  1016. ::= { hrSWRunEntry 5 }
  1017. hrSWRunType OBJECT-TYPE
  1018. SYNTAX INTEGER {
  1019. unknown(1),
  1020. operatingSystem(2),
  1021. deviceDriver(3),
  1022. application(4)
  1023. }
  1024. ACCESS read-only
  1025. STATUS mandatory
  1026. DESCRIPTION
  1027. "The type of this software."
  1028. ::= { hrSWRunEntry 6 }
  1029. hrSWRunStatus OBJECT-TYPE
  1030. SYNTAX INTEGER {
  1031. running(1),
  1032. runnable(2), -- waiting for resource (CPU, memory, IO)
  1033. notRunnable(3), -- loaded but waiting for event
  1034. invalid(4) -- not loaded
  1035. }
  1036. ACCESS read-write
  1037. STATUS mandatory
  1038. DESCRIPTION
  1039. "The status of this running piece of software.
  1040. Setting this value to invalid(4) shall cause this
  1041. software to stop running and to be unloaded."
  1042. ::= { hrSWRunEntry 7 }
  1043. -- The Host Resources Running Software Performance Group
  1044. -- Implementation of this group is optional.
  1045. --
  1046. -- The hrSWRunPerfTable contains an entry corresponding to
  1047. -- each entry in the hrSWRunTable.
  1048. hrSWRunPerfTable OBJECT-TYPE
  1049. SYNTAX SEQUENCE OF HrSWRunPerfEntry
  1050. ACCESS not-accessible
  1051. STATUS mandatory
  1052. DESCRIPTION
  1053. "The (conceptual) table of running software
  1054. performance metrics."
  1055. ::= { hrSWRunPerf 1 }
  1056. hrSWRunPerfEntry OBJECT-TYPE
  1057. SYNTAX HrSWRunPerfEntry
  1058. ACCESS not-accessible
  1059. STATUS mandatory
  1060. DESCRIPTION
  1061. "A (conceptual) entry containing software
  1062. performance metrics. As an example, an instance
  1063. of the hrSWRunPerfCPU object might be named
  1064. hrSWRunPerfCPU.1287"
  1065. INDEX { hrSWRunIndex } -- This table augments information in
  1066. -- the hrSWRunTable.
  1067. ::= { hrSWRunPerfTable 1 }
  1068. HrSWRunPerfEntry ::= SEQUENCE {
  1069. hrSWRunPerfCPU INTEGER,
  1070. hrSWRunPerfMem KBytes
  1071. }
  1072. hrSWRunPerfCPU OBJECT-TYPE
  1073. SYNTAX INTEGER
  1074. ACCESS read-only
  1075. STATUS mandatory
  1076. DESCRIPTION
  1077. "The number of centi-seconds of the total system's
  1078. CPU resources consumed by this process. Note that
  1079. on a multi-processor system, this value may
  1080. increment by more than one centi-second in one
  1081. centi-second of real (wall clock) time."
  1082. ::= { hrSWRunPerfEntry 1 }
  1083. hrSWRunPerfMem OBJECT-TYPE
  1084. SYNTAX KBytes
  1085. ACCESS read-only
  1086. STATUS mandatory
  1087. DESCRIPTION
  1088. "The total amount of real system memory allocated
  1089. to this process."
  1090. ::= { hrSWRunPerfEntry 2 }
  1091. -- The Host Resources Installed Software Group
  1092. --
  1093. -- Implementation of this group is optional.
  1094. --
  1095. -- The hrSWInstalledTable contains an entry for each piece
  1096. -- of software installed in long-term storage (e.g. a disk
  1097. -- drive) locally on this host. Note that this does not
  1098. -- include software loadable remotely from a network
  1099. -- server.
  1100. --
  1101. -- This table is useful for identifying and inventorying
  1102. -- software on a host and for diagnosing incompatibility
  1103. -- and version mismatch problems between various pieces
  1104. -- of hardware and software.
  1105. hrSWInstalledLastChange OBJECT-TYPE
  1106. SYNTAX TimeTicks
  1107. ACCESS read-only
  1108. STATUS mandatory
  1109. DESCRIPTION
  1110. "The value of sysUpTime when an entry in the
  1111. hrSWInstalledTable was last added, renamed, or
  1112. deleted. Because this table is likely to contain
  1113. many entries, polling of this object allows a
  1114. management station to determine when re-downloading
  1115. of the table might be useful."
  1116. ::= { hrSWInstalled 1 }
  1117. hrSWInstalledLastUpdateTime OBJECT-TYPE
  1118. SYNTAX TimeTicks
  1119. ACCESS read-only
  1120. STATUS mandatory
  1121. DESCRIPTION
  1122. "The value of sysUpTime when the hrSWInstalledTable
  1123. was last completely updated. Because caching of
  1124. this data will be a popular implementation
  1125. strategy, retrieval of this object allows a
  1126. management station to obtain a guarantee that no
  1127. data in this table is older than the indicated
  1128. time."
  1129. ::= { hrSWInstalled 2 }
  1130. hrSWInstalledTable OBJECT-TYPE
  1131. SYNTAX SEQUENCE OF HrSWInstalledEntry
  1132. ACCESS not-accessible
  1133. STATUS mandatory
  1134. DESCRIPTION
  1135. "The (conceptual) table of software installed on
  1136. this host."
  1137. ::= { hrSWInstalled 3 }
  1138. hrSWInstalledEntry OBJECT-TYPE
  1139. SYNTAX HrSWInstalledEntry
  1140. ACCESS not-accessible
  1141. STATUS mandatory
  1142. DESCRIPTION
  1143. "A (conceptual) entry for a piece of software
  1144. installed on this host.
  1145. As an example of how objects in this table are
  1146. named, an instance of the hrSWInstalledName object
  1147. might be named hrSWInstalledName.96"
  1148. INDEX { hrSWInstalledIndex }
  1149. ::= { hrSWInstalledTable 1 }
  1150. HrSWInstalledEntry ::= SEQUENCE {
  1151. hrSWInstalledIndex INTEGER,
  1152. hrSWInstalledName InternationalDisplayString,
  1153. hrSWInstalledID ProductID,
  1154. hrSWInstalledType INTEGER,
  1155. hrSWInstalledDate DateAndTime
  1156. }
  1157. hrSWInstalledIndex OBJECT-TYPE
  1158. SYNTAX INTEGER (1..2147483647)
  1159. ACCESS read-only
  1160. STATUS mandatory
  1161. DESCRIPTION
  1162. "A unique value for each piece of software
  1163. installed on the host. This value shall be in the
  1164. range from 1 to the number of pieces of software
  1165. installed on the host."
  1166. ::= { hrSWInstalledEntry 1 }
  1167. hrSWInstalledName OBJECT-TYPE
  1168. SYNTAX InternationalDisplayString (SIZE (0..64))
  1169. ACCESS read-only
  1170. STATUS mandatory
  1171. DESCRIPTION
  1172. "A textual description of this installed piece of
  1173. software, including the manufacturer, revision, the
  1174. name by which it is commonly known, and optionally,
  1175. its serial number."
  1176. ::= { hrSWInstalledEntry 2 }
  1177. hrSWInstalledID OBJECT-TYPE
  1178. SYNTAX ProductID
  1179. ACCESS read-only
  1180. STATUS mandatory
  1181. DESCRIPTION
  1182. "The product ID of this installed piece of
  1183. software."
  1184. ::= { hrSWInstalledEntry 3 }
  1185. hrSWInstalledType OBJECT-TYPE
  1186. SYNTAX INTEGER {
  1187. unknown(1),
  1188. operatingSystem(2),
  1189. deviceDriver(3),
  1190. application(4)
  1191. }
  1192. ACCESS read-only
  1193. STATUS mandatory
  1194. DESCRIPTION
  1195. "The type of this software."
  1196. ::= { hrSWInstalledEntry 4 }
  1197. hrSWInstalledDate OBJECT-TYPE
  1198. SYNTAX DateAndTime
  1199. ACCESS read-only
  1200. STATUS mandatory
  1201. DESCRIPTION
  1202. "The last-modification date of this application as
  1203. it would appear in a directory listing."
  1204. ::= { hrSWInstalledEntry 5 }
  1205. END