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