libredfish
A native async Rust client for Redfish, the DMTF standard API for managing server hardware through a BMC (Baseboard Management Controller).
libredfish gives you a single, vendor-agnostic Redfish trait for common operations — power
control, BIOS/boot management, firmware updates, sensors, event logs, secure boot, user
management, and more — while handling the quirks of each vendor's Redfish implementation under
the hood.
Supported vendors
- Dell (iDRAC)
- HPE (iLO)
- Lenovo
- Supermicro
- AMI (Viking DGX H100)
- NVIDIA BlueField DPU
- NVIDIA GH200 (Grace Hopper)
- NVIDIA GBx00 (Grace-Blackwell)
- NVIDIA GB NVLink switch
- LiteOn Power Shelf
The client detects the vendor automatically from the BMC's service root and dispatches calls to
the matching implementation, so application code can be written once against the Redfish trait.
Installation
[]
= "0.2"
Usage
use ;
async
If you already know the vendor speaks the standard Redfish schema (no vendor-specific quirks
needed), you can skip auto-detection with create_standard_client:
let redfish = pool.create_standard_client?;
Development
Integration tests run against the DMTF Redfish mockup server
included under tests/:
License
Licensed under the MIT license.