---
title: "Verify the BMC Firmware Version on a Linux Dedicated Server"
description: "Check and verify the BMC firmware version on your OVHcloud dedicated server to ensure hardware management compatibility."
url: https://docs.ovhcloud.com/en/guides/bare-metal-cloud/dedicated-servers/bmc-fw-update
lang: en
lastUpdated: 2026-06-08
---
# Verify the BMC Firmware Version on a Linux Dedicated Server

## Objective

A BMC (Baseboard Management Controller) is responsible for the remote management and low-level control of the server hardware. An outdated version can directly impact security, stability, and manageability of the server. Keeping the BMC firmware updated is necessary to patch security vulnerabilities, maintain system stability, and meet compliance requirements.

**This guide outlines the steps to check the BMC firmware version on a dedicated server.**

## Requirements

- A [dedicated server](https://www.ovhcloud.com/en-gb/bare-metal/) in your OVHcloud account.
- Administrator rights (sudo).
- Your dedicated server must be connected to the Internet (only if the `ipmitool` tool is not already installed).

:::info
Due to our dedicated configuration, BMC upgrade is only performed by OVHcloud automation supervised by our technician, we do not provide any package or automated mechanism to do so.
:::

### On a Linux Server

First, you need to install the `ipmitool` package. This tool allows you to query the BMC via the IPMI interface. For more information, see the official documentation: [https://linux.die.net/man/1/ipmitool](https://linux.die.net/man/1/ipmitool).

Depending on the Linux distribution, the command may vary:


**Debian/Ubuntu**

```sh
sudo apt update
sudo apt install ipmitool -y
```


**RHEL/CentOS/AlmaLinux/Rocky Linux**

```sh
sudo dnf install epel-release -y
sudo dnf install ipmitool -y
```


Check the BMC firmware version using the following command:

```sh
sudo ipmitool mc info
```

![BMC firmware version output from ipmitool on Linux](/images/bare-metal-cloud/dedicated-servers/bmc-fw-update/ipmi_tool.png)
:::warning

**TYAN S8056 motherboard**

- If your server uses a **TYAN S8056** motherboard and the firmware version is equal to or lower than 1.14, please contact our support team by creating a [support ticket via the OVHcloud Help Center](https://help.ovhcloud.com/csm?id=csm_get_help) to request a firmware update.
- If the version is higher than 1.14, no action is required.

:::

### On a Windows Server

Currently, we are only able to provide the procedure for servers running Linux operating systems. We recommend that you restart your Windows server in our [rescue mode](/en/guides/bare-metal-cloud/dedicated-servers/rescue-mode.md) environment to check the version by following the instructions below.

### On a Server in Rescue Mode

Once your server is restarted in [rescue mode](/en/guides/bare-metal-cloud/dedicated-servers/rescue-mode.md), install the `ipmitool` package.

```sh
root@rescue12-customer-eu (nsxxxxx.ip-xx-xx-xx.eu) ~ # apt install ipmitool -y
```

Next, check the firmware version:

```sh
ipmitool mc info
```

![BMC firmware version output from ipmitool in rescue mode](/images/bare-metal-cloud/dedicated-servers/bmc-fw-update/ipmi_tool_rescue.png)
:::warning

**TYAN S8056 motherboard**

- If your server uses a **TYAN S8056** motherboard and the firmware version is equal to or lower than 1.14, please contact our support team by creating a [support ticket via the OVHcloud Help Center](https://help.ovhcloud.com/csm?id=csm_get_help) to request a firmware update.
- If the version is higher than 1.14, no action is required.

:::

## Go further

[Upgrading Samsung NVMe PM9A1 Firmware on Dedicated Servers](/en/guides/bare-metal-cloud/dedicated-servers/samsung-nvme-fw-upgrade.md)

[Dedicated Servers - Upgrading your Micron 7500 PRO firmware](/en/guides/bare-metal-cloud/dedicated-servers/micron-7500-fw-upgrade.md)

For specialized services (SEO, development, etc.), contact [OVHcloud partners](https://partner.ovhcloud.com/en-gb/directory/).

If you need assistance with the use and configuration of your OVHcloud solutions, we offer various [support options](https://www.ovhcloud.com/en-gb/support-levels/).

Join our [community of users](https://community.ovhcloud.com/).
