summaryrefslogtreecommitdiffstats
path: root/mibs/Intel-Bios.txt
diff options
context:
space:
mode:
authorMaryam Tahhan <maryam.tahhan@intel.com>2017-03-06 17:47:20 +0000
committerMaryam Tahhan <maryam.tahhan@intel.com>2017-03-16 16:57:58 +0000
commitb61d49ad6f086cdfe5c66b3b8d522bc9448ef69e (patch)
tree8bbb119796fb4b2237aadff13cb1ff0243ab3afb /mibs/Intel-Bios.txt
parent5649793d2037d6f26211be4035e28842ebb3e737 (diff)
mibs: Add new mibs to barometer
Add mib definitions for new features like mcelog, RDT and BIOS to barometer for SNMP equivalence support. Change-Id: I016ed7653d82bcfdaf94f22734092b3b0d4c267f Signed-off-by: Maryam Tahhan <maryam.tahhan@intel.com>
Diffstat (limited to 'mibs/Intel-Bios.txt')
-rw-r--r--mibs/Intel-Bios.txt67
1 files changed, 67 insertions, 0 deletions
diff --git a/mibs/Intel-Bios.txt b/mibs/Intel-Bios.txt
new file mode 100644
index 00000000..824cd09f
--- /dev/null
+++ b/mibs/Intel-Bios.txt
@@ -0,0 +1,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