IPMI Configuration
Configuration Syntax and Commands
The following sections describe the IPMI configuration syntax and commands.
IPMI Interface Configuration
This configuration allows you to communicate with the BMC on the platform hardware.
Syntax:
Attribute | Description |
---|---|
|
IPMI channel ID. For UfiSpace switches, the LAN interface ID is 1. |
|
type of network |
|
Manually set the static IPv4 address or configure DHCP to receive dynamic IPv4 address. |
|
IPv4 prefix |
|
IPv4 address for gateway |
Example: IPMI Interface Configuration
{ "ietf-restconf:data": { "rtbrick-config:system": { "platform-management": { "ipmi": { "interface": [ { "id": 1, "type": "lan", "mode": "static", "address-family": { "ipv4": { "prefix4": "198.51.100.110/24", "gateway-address": "198.51.100.111" } } } ] } } } } }
IPMI User Configuration
This configuration allows you to change the password of one of the 10 users, including the admin user.
Syntax:
Attribute | Description ` |
---|---|
user <user-id>` |
User ID. The |
|
Plain text password |
|
Encrypted password |
Example: IPMI User Configuration
{ "ietf-restconf:data": { "rtbrick-config:system": { "platform-management": { "ipmi": { "user": [ { "id": 2, "password-encrypted-text": "$21e4946e31b406de98b3077aef03ed5a7" } ] } } } } }