rubyipmi 0.10.0 → 0.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. checksums.yaml +5 -5
  2. data/.document +5 -0
  3. data/.gitignore +50 -0
  4. data/.rspec +1 -0
  5. data/.rubocop.yml +66 -0
  6. data/.travis.yml +13 -0
  7. data/Gemfile +3 -3
  8. data/README.md +9 -3
  9. data/RELEASE_NOTES.md +33 -0
  10. data/Rakefile +15 -42
  11. data/lib/rubyipmi/commands/basecommand.rb +17 -23
  12. data/lib/rubyipmi/commands/mixins/power_mixin.rb +50 -0
  13. data/lib/rubyipmi/commands/mixins/sensors_mixin.rb +54 -0
  14. data/lib/rubyipmi/freeipmi/commands/basecommand.rb +26 -35
  15. data/lib/rubyipmi/freeipmi/commands/bmc.rb +4 -7
  16. data/lib/rubyipmi/freeipmi/commands/bmcconfig.rb +7 -17
  17. data/lib/rubyipmi/freeipmi/commands/bmcdevice.rb +2 -9
  18. data/lib/rubyipmi/freeipmi/commands/bmcinfo.rb +4 -10
  19. data/lib/rubyipmi/freeipmi/commands/chassis.rb +27 -45
  20. data/lib/rubyipmi/freeipmi/commands/chassisconfig.rb +23 -38
  21. data/lib/rubyipmi/freeipmi/commands/fru.rb +23 -42
  22. data/lib/rubyipmi/freeipmi/commands/lan.rb +4 -6
  23. data/lib/rubyipmi/freeipmi/commands/power.rb +8 -51
  24. data/lib/rubyipmi/freeipmi/commands/sensors.rb +10 -67
  25. data/lib/rubyipmi/freeipmi/connection.rb +14 -17
  26. data/lib/rubyipmi/freeipmi/errorcodes.rb +11 -17
  27. data/lib/rubyipmi/ipmitool/commands/basecommand.rb +12 -16
  28. data/lib/rubyipmi/ipmitool/commands/bmc.rb +13 -22
  29. data/lib/rubyipmi/ipmitool/commands/chassis.rb +26 -44
  30. data/lib/rubyipmi/ipmitool/commands/chassisconfig.rb +11 -21
  31. data/lib/rubyipmi/ipmitool/commands/fru.rb +35 -48
  32. data/lib/rubyipmi/ipmitool/commands/lan.rb +25 -28
  33. data/lib/rubyipmi/ipmitool/commands/power.rb +7 -58
  34. data/lib/rubyipmi/ipmitool/commands/sensors.rb +10 -68
  35. data/lib/rubyipmi/ipmitool/connection.rb +10 -19
  36. data/lib/rubyipmi/ipmitool/errorcodes.rb +11 -45
  37. data/lib/rubyipmi/observablehash.rb +1 -2
  38. data/lib/rubyipmi/version.rb +5 -0
  39. data/lib/rubyipmi.rb +23 -28
  40. data/rubyipmi.gemspec +17 -128
  41. metadata +18 -101
  42. data/spec/Vagrantfile +0 -45
  43. data/spec/fixtures/freeipmi/bmc_config.txt +0 -317
  44. data/spec/fixtures/freeipmi/bmc_config_lan_conf.txt +0 -19
  45. data/spec/fixtures/freeipmi/bmc_info.txt +0 -32
  46. data/spec/fixtures/freeipmi/errors.txt +0 -3
  47. data/spec/fixtures/freeipmi/fru.txt +0 -13
  48. data/spec/fixtures/freeipmi/sensors.txt +0 -29
  49. data/spec/fixtures/ipmitool/bmc_info.txt +0 -20
  50. data/spec/fixtures/ipmitool/errors.txt +0 -10
  51. data/spec/fixtures/ipmitool/fru.txt +0 -96
  52. data/spec/fixtures/ipmitool/lan.txt +0 -17
  53. data/spec/fixtures/ipmitool/sensors.txt +0 -105
  54. data/spec/integration/bmc_spec.rb +0 -48
  55. data/spec/integration/chassis_config_spec.rb +0 -38
  56. data/spec/integration/chassis_spec.rb +0 -26
  57. data/spec/integration/connection_spec.rb +0 -45
  58. data/spec/integration/fru_spec.rb +0 -38
  59. data/spec/integration/lan_spec.rb +0 -50
  60. data/spec/integration/power_spec.rb +0 -40
  61. data/spec/integration/rubyipmi_spec.rb +0 -114
  62. data/spec/integration/sensor_spec.rb +0 -43
  63. data/spec/manifests/default.pp +0 -50
  64. data/spec/puppetmodules/archive/LICENSE-2.0.txt +0 -202
  65. data/spec/puppetmodules/archive/Modulefile +0 -8
  66. data/spec/puppetmodules/archive/README.md +0 -40
  67. data/spec/puppetmodules/archive/manifests/download.pp +0 -157
  68. data/spec/puppetmodules/archive/manifests/extract.pp +0 -81
  69. data/spec/puppetmodules/archive/manifests/init.pp +0 -70
  70. data/spec/puppetmodules/archive/manifests/tar-gz.pp +0 -7
  71. data/spec/puppetmodules/archive/manifests/zip.pp +0 -7
  72. data/spec/puppetmodules/archive/metadata.json +0 -26
  73. data/spec/spec_helper.rb +0 -47
  74. data/spec/unit/freeipmi/bmc-info_spec.rb +0 -38
  75. data/spec/unit/freeipmi/bmc_spec.rb +0 -43
  76. data/spec/unit/freeipmi/connection_spec.rb +0 -121
  77. data/spec/unit/freeipmi/errorcodes_spec.rb +0 -28
  78. data/spec/unit/freeipmi/fru_spec.rb +0 -76
  79. data/spec/unit/freeipmi/lan_spec.rb +0 -0
  80. data/spec/unit/freeipmi/sensors_spec.rb +0 -85
  81. data/spec/unit/ipmitool/bmc_spec.rb +0 -77
  82. data/spec/unit/ipmitool/connection_spec.rb +0 -122
  83. data/spec/unit/ipmitool/errorcodes_spec.rb +0 -35
  84. data/spec/unit/ipmitool/fru_spec.rb +0 -77
  85. data/spec/unit/ipmitool/lan_spec.rb +0 -94
  86. data/spec/unit/ipmitool/sensors_spec.rb +0 -96
  87. data/spec/unit/rubyipmi_spec.rb +0 -50
  88. data/spec/vagrant +0 -27
  89. data/spec/vagrant.pub +0 -1
@@ -1,317 +0,0 @@
1
- #
2
- # Section UserX Comments
3
- #
4
- # In the following User sections, users should configure usernames, passwords,
5
- # and access rights for IPMI over LAN communication. Usernames can be set to any
6
- # string with the exception of User1, which is a fixed to the "anonymous"
7
- # username in IPMI.
8
- #
9
- # For IPMI over LAN access for a username, set "Enable_User" to "Yes",
10
- # "Lan_Enable_IPMI_Msgs" to "Yes", and "Lan_Privilege_Limit" to a privilege
11
- # level. The privilege level is used to limit various IPMI operations for
12
- # individual usernames. It is recommened that atleast one username be created
13
- # with a privilege limit "Administrator", so all system functions are available
14
- # to atleast one username via IPMI over LAN. For security reasons, we recommend
15
- # not enabling the "anonymous" User1. For most users, "Lan_Session_Limit" can be
16
- # set to 0 (or ignored) to support an unlimited number of simultaneous IPMI over
17
- # LAN sessions.
18
- #
19
- # If your system supports IPMI 2.0 and Serial-over-LAN (SOL),
20
- # a"SOL_Payload_Access" field may be listed below. Set the "SOL_Payload_Access"
21
- # field to "Yes" or "No" to enable or disable this username's ability to access
22
- # SOL.
23
- #
24
- # Please do not forget to uncomment those fields, such as "Password", that may
25
- # be commented out during the checkout.
26
- #
27
- # Some motherboards may require a "Username" to be configured prior to other
28
- # fields being read/written. If this is the case, those fields will be set to
29
- # <username-not-set-yet>.
30
- #
31
- Section User1
32
- ## Give Username
33
- ## Username NULL
34
- ## Give password or blank to clear. MAX 16 chars (20 chars if IPMI 2.0 supported).
35
- ## Password
36
- ## Possible values: Yes/No or blank to not set
37
- Enable_User Yes
38
- ## Possible values: Yes/No
39
- Lan_Enable_IPMI_Msgs Yes
40
- ## Possible values: Yes/No
41
- Lan_Enable_Link_Auth No
42
- ## Possible values: Yes/No
43
- Lan_Enable_Restricted_to_Callback No
44
- ## Possible values: Callback/User/Operator/Administrator/OEM_Proprietary/No_Access
45
- Lan_Privilege_Limit Administrator
46
- ## Possible values: 0-17, 0 is unlimited; May be reset to 0 if not specified
47
- ## Lan_Session_Limit
48
- EndSection
49
- Section User2
50
- ## Give Username
51
- Username admin
52
- ## Give password or blank to clear. MAX 16 chars (20 chars if IPMI 2.0 supported).
53
- ## Password
54
- ## Possible values: Yes/No or blank to not set
55
- Enable_User Yes
56
- ## Possible values: Yes/No
57
- Lan_Enable_IPMI_Msgs Yes
58
- ## Possible values: Yes/No
59
- Lan_Enable_Link_Auth No
60
- ## Possible values: Yes/No
61
- Lan_Enable_Restricted_to_Callback No
62
- ## Possible values: Callback/User/Operator/Administrator/OEM_Proprietary/No_Access
63
- Lan_Privilege_Limit Administrator
64
- ## Possible values: 0-17, 0 is unlimited; May be reset to 0 if not specified
65
- ## Lan_Session_Limit
66
- EndSection
67
- Section User3
68
- ## Give Username
69
- Username admin3
70
- ## Give password or blank to clear. MAX 16 chars (20 chars if IPMI 2.0 supported).
71
- ## Password
72
- ## Possible values: Yes/No or blank to not set
73
- Enable_User No
74
- ## Possible values: Yes/No
75
- Lan_Enable_IPMI_Msgs No
76
- ## Possible values: Yes/No
77
- Lan_Enable_Link_Auth No
78
- ## Possible values: Yes/No
79
- Lan_Enable_Restricted_to_Callback No
80
- ## Possible values: Callback/User/Operator/Administrator/OEM_Proprietary/No_Access
81
- Lan_Privilege_Limit No_Access
82
- ## Possible values: 0-17, 0 is unlimited; May be reset to 0 if not specified
83
- ## Lan_Session_Limit
84
- EndSection
85
- Section User4
86
- ## Give Username
87
- Username (Empty User)
88
- ## Give password or blank to clear. MAX 16 chars (20 chars if IPMI 2.0 supported).
89
- ## Password
90
- ## Possible values: Yes/No or blank to not set
91
- Enable_User No
92
- ## Possible values: Yes/No
93
- Lan_Enable_IPMI_Msgs No
94
- ## Possible values: Yes/No
95
- Lan_Enable_Link_Auth No
96
- ## Possible values: Yes/No
97
- Lan_Enable_Restricted_to_Callback No
98
- ## Possible values: Callback/User/Operator/Administrator/OEM_Proprietary/No_Access
99
- Lan_Privilege_Limit No_Access
100
- ## Possible values: 0-17, 0 is unlimited; May be reset to 0 if not specified
101
- ## Lan_Session_Limit
102
- EndSection
103
- Section User5
104
- ## Give Username
105
- Username (Empty User)
106
- ## Give password or blank to clear. MAX 16 chars (20 chars if IPMI 2.0 supported).
107
- ## Password
108
- ## Possible values: Yes/No or blank to not set
109
- Enable_User No
110
- ## Possible values: Yes/No
111
- Lan_Enable_IPMI_Msgs No
112
- ## Possible values: Yes/No
113
- Lan_Enable_Link_Auth No
114
- ## Possible values: Yes/No
115
- Lan_Enable_Restricted_to_Callback No
116
- ## Possible values: Callback/User/Operator/Administrator/OEM_Proprietary/No_Access
117
- Lan_Privilege_Limit No_Access
118
- ## Possible values: 0-17, 0 is unlimited; May be reset to 0 if not specified
119
- ## Lan_Session_Limit
120
- EndSection
121
- Section User6
122
- ## Give Username
123
- Username (Empty User)
124
- ## Give password or blank to clear. MAX 16 chars (20 chars if IPMI 2.0 supported).
125
- ## Password
126
- ## Possible values: Yes/No or blank to not set
127
- Enable_User No
128
- ## Possible values: Yes/No
129
- Lan_Enable_IPMI_Msgs No
130
- ## Possible values: Yes/No
131
- Lan_Enable_Link_Auth No
132
- ## Possible values: Yes/No
133
- Lan_Enable_Restricted_to_Callback No
134
- ## Possible values: Callback/User/Operator/Administrator/OEM_Proprietary/No_Access
135
- Lan_Privilege_Limit No_Access
136
- ## Possible values: 0-17, 0 is unlimited; May be reset to 0 if not specified
137
- ## Lan_Session_Limit
138
- EndSection
139
- Section User7
140
- ## Give Username
141
- Username (Empty User)
142
- ## Give password or blank to clear. MAX 16 chars (20 chars if IPMI 2.0 supported).
143
- ## Password
144
- ## Possible values: Yes/No or blank to not set
145
- Enable_User No
146
- ## Possible values: Yes/No
147
- Lan_Enable_IPMI_Msgs No
148
- ## Possible values: Yes/No
149
- Lan_Enable_Link_Auth No
150
- ## Possible values: Yes/No
151
- Lan_Enable_Restricted_to_Callback No
152
- ## Possible values: Callback/User/Operator/Administrator/OEM_Proprietary/No_Access
153
- Lan_Privilege_Limit No_Access
154
- ## Possible values: 0-17, 0 is unlimited; May be reset to 0 if not specified
155
- ## Lan_Session_Limit
156
- EndSection
157
- Section User8
158
- ## Give Username
159
- Username (Empty User)
160
- ## Give password or blank to clear. MAX 16 chars (20 chars if IPMI 2.0 supported).
161
- ## Password
162
- ## Possible values: Yes/No or blank to not set
163
- Enable_User No
164
- ## Possible values: Yes/No
165
- Lan_Enable_IPMI_Msgs No
166
- ## Possible values: Yes/No
167
- Lan_Enable_Link_Auth No
168
- ## Possible values: Yes/No
169
- Lan_Enable_Restricted_to_Callback No
170
- ## Possible values: Callback/User/Operator/Administrator/OEM_Proprietary/No_Access
171
- Lan_Privilege_Limit No_Access
172
- ## Possible values: 0-17, 0 is unlimited; May be reset to 0 if not specified
173
- ## Lan_Session_Limit
174
- EndSection
175
- Section User9
176
- ## Give Username
177
- Username (Empty User)
178
- ## Give password or blank to clear. MAX 16 chars (20 chars if IPMI 2.0 supported).
179
- ## Password
180
- ## Possible values: Yes/No or blank to not set
181
- Enable_User No
182
- ## Possible values: Yes/No
183
- Lan_Enable_IPMI_Msgs No
184
- ## Possible values: Yes/No
185
- Lan_Enable_Link_Auth No
186
- ## Possible values: Yes/No
187
- Lan_Enable_Restricted_to_Callback No
188
- ## Possible values: Callback/User/Operator/Administrator/OEM_Proprietary/No_Access
189
- Lan_Privilege_Limit No_Access
190
- ## Possible values: 0-17, 0 is unlimited; May be reset to 0 if not specified
191
- ## Lan_Session_Limit
192
- EndSection
193
- Section User10
194
- ## Give Username
195
- Username (Empty User)
196
- ## Give password or blank to clear. MAX 16 chars (20 chars if IPMI 2.0 supported).
197
- ## Password
198
- ## Possible values: Yes/No or blank to not set
199
- Enable_User No
200
- ## Possible values: Yes/No
201
- Lan_Enable_IPMI_Msgs No
202
- ## Possible values: Yes/No
203
- Lan_Enable_Link_Auth No
204
- ## Possible values: Yes/No
205
- Lan_Enable_Restricted_to_Callback No
206
- ## Possible values: Callback/User/Operator/Administrator/OEM_Proprietary/No_Access
207
- Lan_Privilege_Limit No_Access
208
- ## Possible values: 0-17, 0 is unlimited; May be reset to 0 if not specified
209
- ## Lan_Session_Limit
210
- EndSection
211
- Section User11
212
- ## Give Username
213
- Username (Empty User)
214
- ## Give password or blank to clear. MAX 16 chars (20 chars if IPMI 2.0 supported).
215
- ## Password
216
- ## Possible values: Yes/No or blank to not set
217
- Enable_User No
218
- ## Possible values: Yes/No
219
- Lan_Enable_IPMI_Msgs No
220
- ## Possible values: Yes/No
221
- Lan_Enable_Link_Auth No
222
- ## Possible values: Yes/No
223
- Lan_Enable_Restricted_to_Callback No
224
- ## Possible values: Callback/User/Operator/Administrator/OEM_Proprietary/No_Access
225
- Lan_Privilege_Limit No_Access
226
- ## Possible values: 0-17, 0 is unlimited; May be reset to 0 if not specified
227
- ## Lan_Session_Limit
228
- EndSection
229
- Section User12
230
- ## Give Username
231
- Username (Empty User)
232
- ## Give password or blank to clear. MAX 16 chars (20 chars if IPMI 2.0 supported).
233
- ## Password
234
- ## Possible values: Yes/No or blank to not set
235
- Enable_User No
236
- ## Possible values: Yes/No
237
- Lan_Enable_IPMI_Msgs No
238
- ## Possible values: Yes/No
239
- Lan_Enable_Link_Auth No
240
- ## Possible values: Yes/No
241
- Lan_Enable_Restricted_to_Callback No
242
- ## Possible values: Callback/User/Operator/Administrator/OEM_Proprietary/No_Access
243
- Lan_Privilege_Limit No_Access
244
- ## Possible values: 0-17, 0 is unlimited; May be reset to 0 if not specified
245
- ## Lan_Session_Limit
246
- EndSection
247
- #
248
- # Section Lan_Channel Comments
249
- #
250
- # In the Lan_Channel section, general IPMI over LAN can be enabled for disabled.
251
- # In the below, "Volatile" configurations are immediately configured onto the
252
- # BMC and will have immediate effect on the system. "Non_Volatile"
253
- # configurations are only available after the next system reset. Generally, both
254
- # the "Volatile" and "Non_Volatile" equivalent fields should be configured
255
- # identically.
256
- #
257
- # To enable IPMI over LAN, typically "Access_Mode" should be set to
258
- # "Always_Available". "Channel_Privilege_Limit" should be set to the highest
259
- # privilege level any username was configured with. Typically, this is set to
260
- # "Administrator".
261
- #
262
- # "User_Level_Auth" and "Per_Message_Auth" are typically set to "Yes" for
263
- # additional security.
264
- #
265
- Section Lan_Channel
266
- ## Possible values: Disabled/Pre_Boot_Only/Always_Available/Shared
267
- Volatile_Access_Mode Always_Available
268
- ## Possible values: Yes/No
269
- Volatile_Enable_User_Level_Auth Yes
270
- ## Possible values: Yes/No
271
- Volatile_Enable_Per_Message_Auth No
272
- ## Possible values: Yes/No
273
- Volatile_Enable_Pef_Alerting No
274
- ## Possible values: Callback/User/Operator/Administrator/OEM_Proprietary
275
- Volatile_Channel_Privilege_Limit Administrator
276
- ## Possible values: Disabled/Pre_Boot_Only/Always_Available/Shared
277
- Non_Volatile_Access_Mode Always_Available
278
- ## Possible values: Yes/No
279
- Non_Volatile_Enable_User_Level_Auth Yes
280
- ## Possible values: Yes/No
281
- Non_Volatile_Enable_Per_Message_Auth No
282
- ## Possible values: Yes/No
283
- Non_Volatile_Enable_Pef_Alerting No
284
- ## Possible values: Callback/User/Operator/Administrator/OEM_Proprietary
285
- Non_Volatile_Channel_Privilege_Limit Administrator
286
- EndSection
287
- #
288
- # Section Lan_Conf Comments
289
- #
290
- # In the Lan_Conf section, typical networking configuration is setup. Most users
291
- # will choose to set "Static" for the "IP_Address_Source" and set the
292
- # appropriate "IP_Address", "MAC_Address", "Subnet_Mask", etc. for the machine.
293
- #
294
- Section Lan_Conf
295
- ## Possible values: Unspecified/Static/Use_DHCP/Use_BIOS/Use_Others
296
- IP_Address_Source Use_DHCP
297
- ## Give valid IP address
298
- IP_Address 192.168.1.24
299
- ## Give valid MAC address
300
- MAC_Address 00:17:A4:49:AB:70
301
- ## Give valid Subnet Mask
302
- Subnet_Mask 255.255.255.0
303
- ## Give valid IP address
304
- Default_Gateway_IP_Address 192.168.1.1
305
- EndSection
306
- #
307
- # Section Lan_Conf_Auth Comments
308
- #
309
- # In the Lan_Conf_Auth section, allowable authentication mechanisms for IPMI 1.5
310
- # is configured. Most users will want to set all "MD5" authentication to "Yes"
311
- # and the rest to "No". If you have configured a NULL username and a NULL
312
- # password, you will also want to configure some of the "None" fields to "Yes"
313
- # to allow "None" authentication to work. Some motherboards do not allow you to
314
- # enable OEM authentication, so you may wish to set all OEM related fields to
315
- # "No".
316
- #
317
- Section Lan_Conf_Auth
@@ -1,19 +0,0 @@
1
- #
2
- # Section Lan_Conf Comments
3
- #
4
- # In the Lan_Conf section, typical networking configuration is setup. Most users
5
- # will choose to set "Static" for the "IP_Address_Source" and set the
6
- # appropriate "IP_Address", "MAC_Address", "Subnet_Mask", etc. for the machine.
7
- #
8
- Section Lan_Conf
9
- ## Possible values: Unspecified/Static/Use_DHCP/Use_BIOS/Use_Others
10
- IP_Address_Source Use_DHCP
11
- ## Give valid IP address
12
- IP_Address 192.168.1.24
13
- ## Give valid MAC address
14
- MAC_Address 00:17:A4:49:AB:70
15
- ## Give valid Subnet Mask
16
- Subnet_Mask 255.255.255.0
17
- ## Give valid IP address
18
- Default_Gateway_IP_Address 192.168.1.1
19
- EndSection
@@ -1,32 +0,0 @@
1
- Device ID : 17
2
- Device Revision : 1
3
- Device SDRs : supported
4
- Firmware Revision : 2.09
5
- Device Available : yes (normal operation)
6
- IPMI Version : 2.0
7
- Sensor Device : supported
8
- SDR Repository Device : supported
9
- SEL Device : supported
10
- FRU Inventory Device : supported
11
- IPMB Event Receiver : unsupported
12
- IPMB Event Generator : unsupported
13
- Bridge : unsupported
14
- Chassis Device : unsupported
15
- Manufacturer ID : Hewlett-Packard (11)
16
- Product ID : 8192
17
-
18
- Channel Information
19
-
20
- Channel Number : 2
21
- Medium Type : 802.3 LAN
22
- Protocol Type : IPMB-1.0
23
- Active Session Count : 0
24
- Session Support : multi-session
25
- Vendor ID : Intelligent Platform Management Interface forum (7154)
26
-
27
- Channel Number : 7
28
- Medium Type : OEM
29
- Protocol Type : KCS
30
- Active Session Count : 0
31
- Session Support : session-less
32
- Vendor ID : Intelligent Platform Management Interface forum (7154)
@@ -1,3 +0,0 @@
1
- authentication type unavailable for attempted privilege level
2
- RuntimeError: /usr/local/sbin/bmc-info: authentication type unavailable for attempted privilege level
3
- ipmi-fru: authentication type unavailable for attempted privilege level
@@ -1,13 +0,0 @@
1
- FRU Inventory Device: Default FRU Device (ID 00h)
2
-
3
- FRU Chassis Type: Rack Mount Chassis
4
- FRU Chassis Part Number: 430027-005
5
- FRU Chassis Serial Number: 2UX64201U2
6
-
7
- FRU Board Manufacturing Date/Time: 01/01/96 - 00:00:00
8
- FRU Board Manufacturer: HP
9
- FRU Board Product Name: ProLiant DL380 G5
10
- FRU Board Serial Number: 2UX64201U2
11
- FRU Board Part Number: 430027-005
12
-
13
- FRU Error: product info area checksum invalid
@@ -1,29 +0,0 @@
1
- 1 | System Chassis 1 UID Light | OEM Reserved | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'OEM Event = 0000h'
2
- 2 | System Chassis 2 Int. Health LED | OEM Reserved | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'OEM Event = 0000h'
3
- 3 | System Chassis 3 Ext. Health LED | OEM Reserved | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'OEM Event = 0000h'
4
- 4 | Power Supply 1 Power Supply 1 | Power Supply | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'Presence detected'
5
- 5 | Power Supply 2 Power Supply 2 | Power Supply | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'Presence detected'
6
- 6 | Power Supply 3 Power Supplies | Power Supply | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'Fully Redundant'
7
- 8 | Processor Module 1 VRM 1 | Power Unit | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'Device Inserted/Device Present'
8
- 9 | Processor Module 2 VRM 2 | Power Unit | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'Device Inserted/Device Present'
9
- 10 | System Internal Expansion Board 1 Fan 1 | Fan | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'transition to Running'
10
- 11 | System Internal Expansion Board 2 Fan 2 | Fan | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'transition to Running'
11
- 12 | System Internal Expansion Board 3 Fan 3 | Fan | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'transition to Running'
12
- 13 | System Internal Expansion Board 4 Fan 4 | Fan | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'transition to Running'
13
- 14 | Processor 1 Fan 5 | Fan | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'transition to Running'
14
- 15 | Processor 2 Fan 6 | Fan | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'transition to Running'
15
- 16 | Processor 3 Fan 7 | Fan | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'transition to Running'
16
- 17 | Processor 4 Fan 8 | Fan | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'transition to Running'
17
- 18 | Processor 5 Fan 9 | Fan | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'transition to Running'
18
- 19 | Processor 6 Fan 10 | Fan | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'transition to Running'
19
- 20 | Processor 7 Fan 11 | Fan | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'transition to Running'
20
- 21 | Processor 8 Fan 12 | Fan | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'transition to Running'
21
- 22 | System Board Fans | Fan | Nominal | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'Fully Redundant'
22
- 24 | System Internal Expansion Board 5 Temp 1 | Temperature | Nominal | 42.00 | C | 0.00 | 0.00 | 0.00 | 67.00 | 70.00 | 75.00 | 'OK'
23
- 25 | External Environment Temp 2 | Temperature | Nominal | 21.00 | C | 0.00 | 0.00 | 0.00 | 37.00 | 39.00 | 44.00 | 'OK'
24
- 26 | Processor 10 Temp 3 | Temperature | Nominal | 35.00 | C | 0.00 | 0.00 | 0.00 | 68.00 | 127.00 | 127.00 | 'OK'
25
- 27 | Processor 11 Temp 4 | Temperature | Nominal | 35.00 | C | 0.00 | 0.00 | 0.00 | 68.00 | 127.00 | 127.00 | 'OK'
26
- 28 | Power Unit Temp 5 | Temperature | Nominal | 49.00 | C | 0.00 | 0.00 | 0.00 | 74.00 | 77.00 | 82.00 | 'OK'
27
- 29 | Processor 12 Temp 6 | Temperature | Nominal | 35.00 | C | 0.00 | 0.00 | 0.00 | 68.00 | 127.00 | 127.00 | 'OK'
28
- 30 | Processor 13 Temp 7 | Temperature | Nominal | 35.00 | C | 0.00 | 0.00 | 0.00 | 68.00 | 127.00 | 127.00 | 'OK'
29
- 31 | System Board Power Meter | Current | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 'Device Enabled'
@@ -1,20 +0,0 @@
1
- Device ID : 17
2
- Device Revision : 1
3
- Firmware Revision : 2.9
4
- IPMI Version : 2.0
5
- Manufacturer ID : 11
6
- Manufacturer Name : Hewlett-Packard
7
- Product ID : 8192 (0x2000)
8
- Product Name : Unknown (0x2000)
9
- Device Available : yes
10
- Provides Device SDRs : yes
11
- Additional Device Support :
12
- Sensor Device
13
- SDR Repository Device
14
- SEL Device
15
- FRU Inventory Device
16
- Aux Firmware Rev Info :
17
- 0x00
18
- 0x00
19
- 0x00
20
- 0x30
@@ -1,10 +0,0 @@
1
- Authentication type NONE not supported
2
- Authentication type NONE not supported
3
- Error: Unable to establish LAN session
4
- Get Device ID command failed
5
- Unable to open SDR for reading
6
-
7
- Authentication type NONE not supported
8
- Authentication type NONE not supported
9
- Error: Unable to establish LAN session
10
- Get Device ID command failed
@@ -1,96 +0,0 @@
1
- FRU Device Description : Builtin FRU Device (ID 0)
2
- Chassis Type : -12 V
3
- Chassis Serial : USE238F06P
4
- Board Mfg Date : Sun Dec 31 23:00:00 1995
5
- Board Mfg : HP
6
- Board Product : ProLiant SL230s Gen8
7
- Board Serial : USE238F0D0
8
- Board Part Number : 650047-B21
9
- Product Manufacturer : HP
10
- Product Name : ProLiant SL230s Gen8
11
- Product Part Number : 650047-B21
12
- Product Serial : USE238F0D0
13
- Product Asset Tag : 000015B90F82
14
-
15
- FRU Device Description : CPU 1 DIMM 1 (ID 110)
16
- Memory Size : 680 MB
17
- Memory Type : Unknown (0x0B)
18
- Voltage Intf : Unknown (0x0B)
19
- Error Detect/Cor : Unknown (0x08)
20
- Manufacturer : Unknown (0x00)
21
- Serial Number : 00000000
22
-
23
- FRU Device Description : CPU 1 DIMM 3 (ID 112)
24
- Memory Size : 680 MB
25
- Memory Type : Unknown (0x0B)
26
- Voltage Intf : Unknown (0x0B)
27
- Error Detect/Cor : Unknown (0x08)
28
- Manufacturer : Unknown (0x00)
29
- Serial Number : 00000000
30
-
31
- FRU Device Description : CPU 1 DIMM 6 (ID 115)
32
- Memory Size : 680 MB
33
- Memory Type : Unknown (0x0B)
34
- Voltage Intf : Unknown (0x0B)
35
- Error Detect/Cor : Unknown (0x08)
36
- Manufacturer : Unknown (0x00)
37
- Serial Number : 00000000
38
-
39
- FRU Device Description : CPU 1 DIMM 8 (ID 117)
40
- Memory Size : 680 MB
41
- Memory Type : Unknown (0x0B)
42
- Voltage Intf : Unknown (0x0B)
43
- Error Detect/Cor : Unknown (0x08)
44
- Manufacturer : Unknown (0x00)
45
- Serial Number : 00000000
46
-
47
- FRU Device Description : CPU 2 DIMM 1 (ID 118)
48
- Memory Size : 680 MB
49
- Memory Type : Unknown (0x0B)
50
- Voltage Intf : Unknown (0x0B)
51
- Error Detect/Cor : Unknown (0x08)
52
- Manufacturer : Unknown (0x00)
53
- Serial Number : 00000000
54
-
55
- FRU Device Description : CPU 2 DIMM 3 (ID 120)
56
- Memory Size : 680 MB
57
- Memory Type : Unknown (0x0B)
58
- Voltage Intf : Unknown (0x0B)
59
- Error Detect/Cor : Unknown (0x08)
60
- Manufacturer : Unknown (0x00)
61
- Serial Number : 00000000
62
-
63
- FRU Device Description : CPU 2 DIMM 6 (ID 123)
64
- Memory Size : 680 MB
65
- Memory Type : Unknown (0x0B)
66
- Voltage Intf : Unknown (0x0B)
67
- Error Detect/Cor : Unknown (0x08)
68
- Manufacturer : Unknown (0x00)
69
- Serial Number : 00000000
70
-
71
- FRU Device Description : CPU 2 DIMM 8 (ID 125)
72
- Memory Size : 680 MB
73
- Memory Type : Unknown (0x0B)
74
- Voltage Intf : Unknown (0x0B)
75
- Error Detect/Cor : Unknown (0x08)
76
- Manufacturer : Unknown (0x00)
77
- Serial Number : 00000000
78
-
79
- FRU Device Description : CPU 1 (ID 16)
80
- Product Manufacturer : Intel
81
- Product Name : Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
82
-
83
- FRU Device Description : CPU 2 (ID 17)
84
- Product Manufacturer : Intel
85
- Product Name : Intel(R) Xeon(R) CPU E5-2670 0 @ 2.60GHz
86
-
87
- FRU Device Description : BMC CONTROLLER (ID 238)
88
- Product Manufacturer : HP
89
- Product Name : BMC CONTROLLER
90
- Product Part Number : iLO 4
91
-
92
- FRU Device Description : MB BIOS (ID 239)
93
- Product Manufacturer : HP
94
- Product Name : SYSTEM BIOS
95
- Product Part Number : P75
96
- Product Version : 07/05/2012
@@ -1,17 +0,0 @@
1
- Set in Progress : Set Complete
2
- Auth Type Support :
3
- Auth Type Enable : Callback :
4
- : User : NONE MD2 MD5 PASSWORD OEM
5
- : Operator : NONE MD2 MD5
6
- : Admin : MD2 MD5
7
- : OEM :
8
- IP Address Source : DHCP Address
9
- IP Address : 192.168.1.41
10
- Subnet Mask : 255.255.255.0
11
- MAC Address : 00:17:a4:49:ab:70
12
- BMC ARP Control : ARP Responses Enabled, Gratuitous ARP Disabled
13
- Gratituous ARP Intrvl : 0.0 seconds
14
- Default Gateway IP : 192.168.1.1
15
- 802.1q VLAN ID : Disabled
16
- 802.1q VLAN Priority : 0
17
- Cipher Suite Priv Max : Not Available