IPMI User requirements

Hello

I am trying to understand the minimum required priviledges required for IPMI users in MAAS: https://maas.io/docs/power-drivers-reference - the IPMI section notes a user operation mode: “User, Operator, Administrator”

Can I configure a user with the User priviledge permission in IPMI?

Thanks,
Peter

You can indeed, we have provisions for all three privileges in the Ipmi power driver:

# provisioningserver/drivers/power/ipmi.py
244 | IPMI_PRIVILEGE_LEVEL_CHOICES = [
245 |    [IPMI_PRIVILEGE_LEVEL.USER.name, "User"],
246 |    [IPMI_PRIVILEGE_LEVEL.OPERATOR.name, "Operator"],
247 |    [IPMI_PRIVILEGE_LEVEL.ADMIN.name, "Administrator"],
248 | ]

MAAS can work with user privilege, but if you commission the machine you have to select Skip configuring supported BMC controllers with a MAAS generated username and password

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.