1HP-ICF-AUTORUN DEFINITIONS ::= BEGIN
2
3   IMPORTS
4      OBJECT-TYPE, MODULE-IDENTITY
5         FROM SNMPv2-SMI
6      TruthValue
7         FROM SNMPv2-TC
8      SnmpAdminString
9         FROM SNMP-FRAMEWORK-MIB
10      hpSwitch
11         FROM HP-ICF-OID;
12
13   hpicfAutorun MODULE-IDENTITY
14      LAST-UPDATED "200708240000Z"
15      ORGANIZATION "Hewlett-Packard Company,
16                    Workgroup Networks Division"
17      CONTACT-INFO "Hewlett Packard Company
18                    8000 Foothills Blvd.
19                    Roseville, CA 95747"
20      DESCRIPTION "This MIB module manages Autorun configuration
21                   for devices in the HP Integrated Communication
22                   Facility product line."
23      ::= { hpSwitch 42 }
24
25-- Autorun Configuration
26
27   hpicfAutorunConfig    OBJECT IDENTIFIER ::= { hpicfAutorun 1 }
28
29   hpicfUsbAutorunEnable OBJECT-TYPE
30      SYNTAX      TruthValue
31      MAX-ACCESS  read-write
32      STATUS      current
33      DESCRIPTION "This MIB object identifies the admin status of the
34                   USB Autorun feature
35                   true(1)  - Autorun Enabled.
36                   false(2) - Autorun Disabled."
37      ::= { hpicfAutorunConfig 1 }
38
39   hpicfUsbAutorunSecureMode OBJECT-TYPE
40      SYNTAX      TruthValue
41      MAX-ACCESS  read-write
42      STATUS      current
43      DESCRIPTION "This MIB object identifies the admin status of the
44                   secure-mode for the USB Autorun feature
45                   true(1)  - secure-mode for autorun Enabled.
46                   false(2) - secure-mode for autorun Disabled."
47      ::= { hpicfAutorunConfig 2 }
48
49   hpicfUsbAutorunEncryptionKey OBJECT-TYPE
50      SYNTAX      SnmpAdminString (SIZE(0..32))
51      MAX-ACCESS  read-write
52      STATUS      current
53      DESCRIPTION "This MIB object identifies the configured encryption
54                   key string for USB Autorun feature"
55      ::= { hpicfAutorunConfig 3 }
56
57-- Autorun conformance information
58
59   hpicfAutorunConformance
60      OBJECT IDENTIFIER ::= { hpicfAutorun 2 }
61
62   hpicfAutorunCompliances
63     OBJECT IDENTIFIER ::= { hpicfAutorunConformance 1 }
64   hpicfAutorunGroups
65      OBJECT IDENTIFIER ::= { hpicfAutorunConformance 2 }
66
67   hpicfAutorunCompliance MODULE-COMPLIANCE
68      STATUS      current
69      DESCRIPTION "Compliance statement for HP ICP Autorun
70                   configuration"
71      MODULE
72         MANDATORY-GROUPS { hpicfAutorunConfigGroup }
73      ::= { hpicfAutorunCompliances 1 }
74
75  hpicfAutorunConfigGroup OBJECT-GROUP
76     OBJECTS     { hpicfUsbAutorunEnable,
77                   hpicfUsbAutorunSecureMode,
78                   hpicfUsbAutorunEncryptionKey
79                 }
80     STATUS      current
81     DESCRIPTION " "
82     ::= { hpicfAutorunGroups 1 }
83
84END
85