Blame mibs/HOST-RESOURCES-TYPES.txt

Packit fcad23
HOST-RESOURCES-TYPES DEFINITIONS ::= BEGIN
Packit fcad23
Packit fcad23
IMPORTS
Packit fcad23
  MODULE-IDENTITY, OBJECT-IDENTITY        FROM SNMPv2-SMI
Packit fcad23
  hrMIBAdminInfo, hrStorage, hrDevice     FROM HOST-RESOURCES-MIB;
Packit fcad23
Packit fcad23
hostResourcesTypesModule MODULE-IDENTITY
Packit fcad23
  LAST-UPDATED "200003060000Z"    -- 6 March, 2000
Packit fcad23
  ORGANIZATION "IETF Host Resources MIB Working Group"
Packit fcad23
  CONTACT-INFO
Packit fcad23
      "Steve Waldbusser
Packit fcad23
      Postal: Lucent Technologies, Inc.
Packit fcad23
              1213 Innsbruck Dr.
Packit fcad23
              Sunnyvale, CA 94089
Packit fcad23
              USA
Packit fcad23
      Phone: 650-318-1251
Packit fcad23
      Fax:   650-318-1633
Packit fcad23
      Email: waldbusser@ins.com
Packit fcad23
Packit fcad23
      In addition, the Host Resources MIB mailing list is dedicated
Packit fcad23
      to discussion of this MIB. To join the mailing list, send a
Packit fcad23
      request message to hostmib-request@andrew.cmu.edu. The mailing
Packit fcad23
      list address is hostmib@andrew.cmu.edu."
Packit fcad23
  DESCRIPTION
Packit fcad23
      "This MIB module registers type definitions for
Packit fcad23
      storage types, device types, and file system types.
Packit fcad23
Packit fcad23
      After the initial revision, this module will be
Packit fcad23
      maintained by IANA."
Packit fcad23
  REVISION "200003060000Z"    -- 6 March 2000
Packit fcad23
  DESCRIPTION
Packit fcad23
      "The original version of this module, published as RFC
Packit fcad23
      2790."
Packit fcad23
  ::= { hrMIBAdminInfo 4 }
Packit fcad23
Packit fcad23
-- Registrations for some storage types, for use with hrStorageType
Packit fcad23
hrStorageTypes          OBJECT IDENTIFIER ::= { hrStorage 1 }
Packit fcad23
Packit fcad23
hrStorageOther OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The storage type identifier used when no other defined
Packit fcad23
        type is appropriate."
Packit fcad23
    ::= { hrStorageTypes 1 }
Packit fcad23
Packit fcad23
hrStorageRam OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The storage type identifier used for RAM."
Packit fcad23
    ::= { hrStorageTypes 2 }
Packit fcad23
Packit fcad23
hrStorageVirtualMemory OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The storage type identifier used for virtual memory,
Packit fcad23
        temporary storage of swapped or paged memory."
Packit fcad23
    ::= { hrStorageTypes 3 }
Packit fcad23
Packit fcad23
hrStorageFixedDisk OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The storage type identifier used for non-removable
Packit fcad23
        rigid rotating magnetic storage devices."
Packit fcad23
    ::= { hrStorageTypes 4 }
Packit fcad23
Packit fcad23
hrStorageRemovableDisk OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The storage type identifier used for removable rigid
Packit fcad23
        rotating magnetic storage devices."
Packit fcad23
    ::= { hrStorageTypes 5 }
Packit fcad23
Packit fcad23
hrStorageFloppyDisk OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The storage type identifier used for non-rigid rotating
Packit fcad23
        magnetic storage devices."
Packit fcad23
    ::= { hrStorageTypes 6 }
Packit fcad23
Packit fcad23
hrStorageCompactDisc OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The storage type identifier used for read-only rotating
Packit fcad23
        optical storage devices."
Packit fcad23
    ::= { hrStorageTypes 7 }
Packit fcad23
Packit fcad23
hrStorageRamDisk OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The storage type identifier used for a file system that
Packit fcad23
        is stored in RAM."
Packit fcad23
    ::= { hrStorageTypes 8 }
Packit fcad23
Packit fcad23
hrStorageFlashMemory OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The storage type identifier used for flash memory."
Packit fcad23
    ::= { hrStorageTypes 9 }
Packit fcad23
Packit fcad23
hrStorageNetworkDisk OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The storage type identifier used for a
Packit fcad23
        networked file system."
Packit fcad23
    ::= { hrStorageTypes 10 }
Packit fcad23
Packit fcad23
-- Registrations for some device types, for use with hrDeviceType
Packit fcad23
hrDeviceTypes             OBJECT IDENTIFIER ::= { hrDevice 1 }
Packit fcad23
Packit fcad23
hrDeviceOther OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used when no other defined
Packit fcad23
        type is appropriate."
Packit fcad23
    ::= { hrDeviceTypes 1 }
Packit fcad23
Packit fcad23
hrDeviceUnknown OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used when the device type is
Packit fcad23
        unknown."
Packit fcad23
    ::= { hrDeviceTypes 2 }
Packit fcad23
Packit fcad23
hrDeviceProcessor OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used for a CPU."
Packit fcad23
    ::= { hrDeviceTypes 3 }
Packit fcad23
Packit fcad23
hrDeviceNetwork OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used for a network interface."
Packit fcad23
    ::= { hrDeviceTypes 4 }
Packit fcad23
Packit fcad23
hrDevicePrinter OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used for a printer."
Packit fcad23
    ::= { hrDeviceTypes 5 }
Packit fcad23
Packit fcad23
hrDeviceDiskStorage OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used for a disk drive."
Packit fcad23
    ::= { hrDeviceTypes 6 }
Packit fcad23
Packit fcad23
hrDeviceVideo OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used for a video device."
Packit fcad23
    ::= { hrDeviceTypes 10 }
Packit fcad23
Packit fcad23
hrDeviceAudio OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used for an audio device."
Packit fcad23
    ::= { hrDeviceTypes 11 }
Packit fcad23
Packit fcad23
hrDeviceCoprocessor OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used for a co-processor."
Packit fcad23
    ::= { hrDeviceTypes 12 }
Packit fcad23
Packit fcad23
hrDeviceKeyboard OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used for a keyboard device."
Packit fcad23
    ::= { hrDeviceTypes 13 }
Packit fcad23
Packit fcad23
hrDeviceModem OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used for a modem."
Packit fcad23
    ::= { hrDeviceTypes 14 }
Packit fcad23
Packit fcad23
hrDeviceParallelPort OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used for a parallel port."
Packit fcad23
    ::= { hrDeviceTypes 15 }
Packit fcad23
Packit fcad23
hrDevicePointing OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used for a pointing device
Packit fcad23
        (e.g., a mouse)."
Packit fcad23
    ::= { hrDeviceTypes 16 }
Packit fcad23
Packit fcad23
hrDeviceSerialPort OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used for a serial port."
Packit fcad23
    ::= { hrDeviceTypes 17 }
Packit fcad23
Packit fcad23
hrDeviceTape OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used for a tape storage device."
Packit fcad23
    ::= { hrDeviceTypes 18 }
Packit fcad23
Packit fcad23
hrDeviceClock OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used for a clock device."
Packit fcad23
    ::= { hrDeviceTypes 19 }
Packit fcad23
Packit fcad23
hrDeviceVolatileMemory OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used for a volatile memory
Packit fcad23
        storage device."
Packit fcad23
    ::= { hrDeviceTypes 20 }
Packit fcad23
Packit fcad23
hrDeviceNonVolatileMemory OBJECT-IDENTITY
Packit fcad23
    STATUS current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The device type identifier used for a non-volatile memory
Packit fcad23
Packit fcad23
        storage device."
Packit fcad23
    ::= { hrDeviceTypes 21 }
Packit fcad23
Packit fcad23
-- Registrations for some popular File System types,
Packit fcad23
-- for use with hrFSType.
Packit fcad23
hrFSTypes               OBJECT IDENTIFIER ::= { hrDevice 9 }
Packit fcad23
Packit fcad23
hrFSOther OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used when no other
Packit fcad23
        defined type is appropriate."
Packit fcad23
    ::= { hrFSTypes 1 }
Packit fcad23
Packit fcad23
hrFSUnknown OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used when the type of
Packit fcad23
        file system is unknown."
Packit fcad23
    ::= { hrFSTypes 2 }
Packit fcad23
Packit fcad23
hrFSBerkeleyFFS OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        Berkeley Fast File System."
Packit fcad23
    ::= { hrFSTypes 3 }
Packit fcad23
Packit fcad23
hrFSSys5FS OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        System V File System."
Packit fcad23
    ::= { hrFSTypes 4 }
Packit fcad23
Packit fcad23
hrFSFat OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for
Packit fcad23
        DOS's FAT file system."
Packit fcad23
    ::= { hrFSTypes 5 }
Packit fcad23
Packit fcad23
hrFSHPFS OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for OS/2's
Packit fcad23
        High Performance File System."
Packit fcad23
    ::= { hrFSTypes 6 }
Packit fcad23
Packit fcad23
hrFSHFS OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        Macintosh Hierarchical File System."
Packit fcad23
    ::= { hrFSTypes 7 }
Packit fcad23
Packit fcad23
hrFSMFS OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        Macintosh File System."
Packit fcad23
    ::= { hrFSTypes 8 }
Packit fcad23
Packit fcad23
hrFSNTFS OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        Windows NT File System."
Packit fcad23
    ::= { hrFSTypes 9 }
Packit fcad23
Packit fcad23
hrFSVNode OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        VNode File System."
Packit fcad23
    ::= { hrFSTypes 10 }
Packit fcad23
Packit fcad23
hrFSJournaled OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        Journaled File System."
Packit fcad23
    ::= { hrFSTypes 11 }
Packit fcad23
Packit fcad23
hrFSiso9660 OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        ISO 9660 File System for CD's."
Packit fcad23
    ::= { hrFSTypes 12 }
Packit fcad23
Packit fcad23
hrFSRockRidge OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        RockRidge File System for CD's."
Packit fcad23
    ::= { hrFSTypes 13 }
Packit fcad23
Packit fcad23
hrFSNFS OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        NFS File System."
Packit fcad23
    ::= { hrFSTypes 14 }
Packit fcad23
Packit fcad23
hrFSNetware OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        Netware File System."
Packit fcad23
    ::= { hrFSTypes 15 }
Packit fcad23
Packit fcad23
hrFSAFS OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        Andrew File System."
Packit fcad23
    ::= { hrFSTypes 16 }
Packit fcad23
Packit fcad23
hrFSDFS OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        OSF DCE Distributed File System."
Packit fcad23
    ::= { hrFSTypes 17 }
Packit fcad23
Packit fcad23
hrFSAppleshare OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        AppleShare File System."
Packit fcad23
    ::= { hrFSTypes 18 }
Packit fcad23
Packit fcad23
hrFSRFS OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        RFS File System."
Packit fcad23
    ::= { hrFSTypes 19 }
Packit fcad23
Packit fcad23
hrFSDGCFS OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        Data General DGCFS."
Packit fcad23
    ::= { hrFSTypes 20 }
Packit fcad23
Packit fcad23
hrFSBFS OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        SVR4 Boot File System."
Packit fcad23
    ::= { hrFSTypes 21 }
Packit fcad23
Packit fcad23
hrFSFAT32 OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        Windows FAT32 File System."
Packit fcad23
    ::= { hrFSTypes 22 }
Packit fcad23
Packit fcad23
hrFSLinuxExt2 OBJECT-IDENTITY
Packit fcad23
    STATUS  current
Packit fcad23
    DESCRIPTION
Packit fcad23
        "The file system type identifier used for the
Packit fcad23
        Linux EXT2 File System."
Packit fcad23
    ::= { hrFSTypes 23 }
Packit fcad23
Packit fcad23
END