Test Management Controller ID String Status via IPMI.

Test cases added:
    - Test Management Controller ID String Status via IPMI
    - Test Management Controller ID String Status via Raw IPMI

Change-Id: Iaa75e0c0fac3ccc35b766e90baf17f24b413e77f
Signed-off-by: Rahul Maheshwari <rahulmaheshwari@in.ibm.com>
diff --git a/data/ipmi_raw_cmd_table.py b/data/ipmi_raw_cmd_table.py
index 57805f6..3265fb0 100644
--- a/data/ipmi_raw_cmd_table.py
+++ b/data/ipmi_raw_cmd_table.py
@@ -45,5 +45,22 @@
             "dc d5 00 d5 00 d5 00 d5 00 00 00 00 00 00 00 00 00 00",
             "Byte position 2nd LSB e.g. d5 Instantaneous power readings",
         ],
+    },
+    'conf_param':
+    {
+        'Enabled':
+        [
+            # raw command, expected output, comment
+            "0x2c 0x12 0xdc 0x02 0x00 0x01",
+            "dc",
+            "Enabled nibble position 6th LSB e.g. 0x01",
+        ],
+        'Disabled':
+        [
+            # raw command, expected output, comment
+            "0x2c 0x12 0xdc 0x02 0x00 0x00",
+            "dc",
+            "Disable nibble position 6th LSB e.g. 0x00",
+        ]
     }
 }