[ci] Add missing package for daily build
[barometer.git] / mibs / Intel-Bios.txt
1 INTEL-BIOS-MIB DEFINITIONS ::= BEGIN
2
3 IMPORTS
4     MODULE-IDENTITY, OBJECT-TYPE
5         FROM SNMPv2-SMI
6
7     hostAssist
8         FROM Intel-SA-MIB
9
10     DisplayString
11         FROM SNMPv2-TC;
12
13 --*****************************************************************************
14 --
15 -- MODULE IDENTITY AND REVISION GROUP
16 --
17 --*****************************************************************************
18
19 intelBios           MODULE-IDENTITY
20     LAST-UPDATED    "201610241700Z" -- coordinated universal time UTC format is YYMMDDHHmmZ
21     ORGANIZATION    "Intel, Server Management Software"
22     CONTACT-INFO    " "
23     DESCRIPTION     "This SNMP MIB module retrieves System Management BIOS (SMBIOS)
24                     information from DMI table using dmidecode.
25
26                     Version:  1.0   10/24/2016
27
28                     Intel copyright information 2016"
29                     ::= { hostAssist 2 }
30
31 -------------------------------------------------------------------------------
32 -- BIOS scalars
33 -------------------------------------------------------------------------------
34
35 biosVendor  OBJECT-TYPE
36     SYNTAX      DisplayString (SIZE (0..128))
37     MAX-ACCESS  read-only
38     STATUS      current
39     DESCRIPTION
40             "The textual string describes the bios vendor."
41     ::= { intelBios 1 }
42
43 biosVersion  OBJECT-TYPE
44     SYNTAX      DisplayString (SIZE (0..128))
45     MAX-ACCESS  read-only
46     STATUS      current
47     DESCRIPTION
48             "The textual string describes the bios version."
49     ::= { intelBios 2 }
50
51 biosReleaseDate  OBJECT-TYPE
52     SYNTAX      DisplayString (SIZE (0..128))
53     MAX-ACCESS  read-only
54     STATUS      current
55     DESCRIPTION
56             "The textual string describes the bios release date."
57     ::= { intelBios 3 }
58
59 biosRevision  OBJECT-TYPE
60     SYNTAX      DisplayString (SIZE (0..128))
61     MAX-ACCESS  read-only
62     STATUS      current
63     DESCRIPTION
64             "The textual string describes the bios revision."
65     ::= { intelBios 4 }
66
67 END