[BACK]Return to IANA-STORAGE-MEDIA-TYPE-MIB.txt CVS log [TXT][DIR] Up to [local] / src / share / snmp

Annotation of src/share/snmp/IANA-STORAGE-MEDIA-TYPE-MIB.txt, Revision 1.1

1.1     ! martijn     1: IANA-STORAGE-MEDIA-TYPE-MIB DEFINITIONS ::= BEGIN
        !             2:
        !             3: IMPORTS
        !             4:     MODULE-IDENTITY, mib-2
        !             5:         FROM SNMPv2-SMI
        !             6:     TEXTUAL-CONVENTION
        !             7:         FROM SNMPv2-TC;
        !             8:
        !             9: ianaStorageMediaTypeMIB MODULE-IDENTITY
        !            10:     LAST-UPDATED "201510120000Z"        -- 12 October 2015
        !            11:     ORGANIZATION "IANA"
        !            12:     CONTACT-INFO
        !            13:             "Internet Assigned Numbers Authority
        !            14:              Postal: ICANN
        !            15:                      12025 Waterfront Drive, Suite 300
        !            16:                      Los Angeles, CA 90094-2536
        !            17:                      United States
        !            18:              Tel:    +1 310-301-5800
        !            19:              Email: iana&iana.org"
        !            20:
        !            21:     DESCRIPTION
        !            22:             "This MIB module defines Textual Conventions
        !            23:             representing the media type of a storage device.
        !            24:
        !            25:             Copyright (c) 2015 IETF Trust and the persons identified
        !            26:             as authors of the code.  All rights reserved.
        !            27:
        !            28:             Redistribution and use in source and binary forms, with
        !            29:             or without modification, is permitted pursuant to, and
        !            30:             subject to the license terms contained in, the
        !            31:             Simplified BSD License set forth in Section 4.c of the
        !            32:             IETF Trust's Legal Provisions Relating to IETF Documents
        !            33:             (http://trustee.ietf.org/license-info)."
        !            34:
        !            35:        REVISION "201510120000Z"        -- 12 October 2015
        !            36:        DESCRIPTION
        !            37:                "The initial version of this MIB, published as
        !            38:                RFC 7666."
        !            39:        ::= { mib-2 237 }
        !            40:
        !            41: IANAStorageMediaType ::= TEXTUAL-CONVENTION
        !            42:     STATUS       current
        !            43:     DESCRIPTION
        !            44:             "The media type of a storage device:
        !            45:
        !            46:             unknown(1)     The media type is unknown, e.g., because
        !            47:                            the implementation failed to obtain the
        !            48:                            media type from the hypervisor.
        !            49:
        !            50:             other(2)       The media type is other than those
        !            51:                            defined in this conversion.
        !            52:
        !            53:             hardDisk(3)    The media type is hard disk.
        !            54:
        !            55:             opticalDisk(4) The media type is optical disk.
        !            56:
        !            57:             floppyDisk(5)  The media type is floppy disk."
        !            58:
        !            59:     SYNTAX       INTEGER {
        !            60:                     other(1),
        !            61:                     unknown(2),
        !            62:                     hardDisk(3),
        !            63:                     opticalDisk(4),
        !            64:                     floppyDisk(5)
        !            65:                  }
        !            66:
        !            67: END