- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- ProLiant Servers (ML,DL,SL)
- >
- How to access Hardware Information of Proliant
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2011 09:51 PM
09-14-2011 09:51 PM
How to access Hardware Information of Proliant
Hi,
I would like to know how the different tools get the hardware information. I mean there are different resources like lspci, SMH page, vSphere client. All seems to be able to collect the hardware information freely even if they are not provided by HP. Is there any sort of standard by which independent vendors can query HP system? Also what are the tools that can report wealth of inromation cross-operating system? The tools seem to report information incosistently. For instance, sometimes lspci cannot report something which vSphere can report. Also the information is sometimes incomplete. For instance, the CPU is reported to be Genuine Intel 2.0 GHz. where as I would like to more about like whether it is Xeon or Core 2 etc. So I would like to know about a list of tools where I can use alternative tools if one of the tools fail.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2011 11:16 PM
09-14-2011 11:16 PM
Re: How to access Hardware Information of Proliant
Hi.
The information avalible to you is from SNMP and WMI (WBEM).
Other Vendors like Vmware probably uses API's to HP system Bios and/or ILO
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2011 03:48 PM
09-24-2011 03:48 PM
Re: How to access Hardware Information of Proliant
The PCI bus standards include a standardized method for identifying devices attached to the PCI/PCI-X/PCI-Express bus. The information is in the form of vendor/device/subvendor/subdevice ID numbers. On Linux systems, there is a file containing a list of known PCI ID numbers: it is usually located at /usr/share/misc/pci.ids. The "lspci" command uses this list to identify PCI devices using their ID numbers. The lspci command is independent of device drivers: because it uses the standard identification methods included in the bus technology, it can query any PCI-compatible device. On the other hand, it can display only the information encoded in the standard identifiers: an appropriate device driver can often find out more using device-specific methods.
(On Debian, you can update the pci.ids table to the latest available version with the command "update-pciids": other distributions may have something similar, or you can just download the latest version of the file from pciids.sourceforge.net and replace the standard version with it manually. This will only affect "lspci" and similar hardware information gathering tools: driver modules have their compatibility information encoded into the drivers themselves.)
Another standardized information source is DMI: the "dmidecode" command can usually find and decode quite a bit of information on the system, including things like the system serial number.
Memory DIMMs each have a small standardized SPD data chip that identifies the manufacturer, model, size and access properties (speed, wait state requirements, etc.) of the memory: if your system allows access to the chipset i2c bus (and there exists an i2c driver for your chipset), then the SPD data can be read and used to describe the memory configuration.
On Linux at least, the "hp-health" apparently provides the SPD access and perhaps some other HP-proprietary hardware information sources. The "hp-snmp-agents" collect hardware information from both the standard sources and from hp-health and make it accessible by the SNMP service of the system. The SMH mostly just takes what is available via the SNMP service and presents it in a nice web UI.
The CPU model information is also encoded in numeric format. The exception is the "GenuineIntel" string: it is actually included in the processor as text (for copyright/trademark reasons, I guess). Although the basic CPU type information is available in Linux with "cat /proc/cpuinfo", there are dedicated tools like the "cpuid" command which can dig a bit deeper and usually will decode the model codes into human-recognizable model names. (Obviously, the tool needs a table of known model numbers vs. names: if the CPU is newer than the table included with the tool, complete decoding may not be possible.)