Skip to content

IPMI over LAN Policy

An IPMI over LAN Policy configures the IPMI service on UCS servers, controlling remote server management access over the network with configurable privilege levels and optional traffic encryption.

Location in Intersight GUI: Policies » IPMI over LAN

Diagram

policies (compute.intersight.organizations)

Section titled “policies (compute.intersight.organizations)”
NameTypeConstraintMandatoryDefault Value
ipmi_over_lanList[ipmi_over_lan]No

ipmi_over_lan (compute.intersight.organizations.policies)

Section titled “ipmi_over_lan (compute.intersight.organizations.policies)”
NameTypeConstraintMandatoryDefault Value
nameStringRegex: ^[a-zA-Z0-9_.:-]{1,64}$Yes
descriptionStringNo
managedBooleantrue, falseNotrue
tagsList[tags]No
enabledBooleantrue, falseNotrue
privilegeChoiceadmin, user, read-onlyNoadmin
encryption_keyStringNo

tags (compute.intersight.organizations.policies.ipmi_over_lan)

Section titled “tags (compute.intersight.organizations.policies.ipmi_over_lan)”
NameTypeConstraintMandatoryDefault Value
keyStringYes
valueStringYes

Example-1: Configure an IPMI over LAN policy with admin privilege and encryption, with environment tags.

compute:
intersight:
organizations:
- name: MyOrg
policies:
ipmi_over_lan:
- name: MyIpmiPolicy
enabled: true
privilege: admin
encryption_key: !env IPMI_ENCRYPTION_KEY
tags:
- key: env
value: prod

Example-2: Configure IPMI with read-only privilege for monitoring-only access.

compute:
intersight:
organizations:
- name: MyOrg
policies:
ipmi_over_lan:
- name: MyIpmiReadOnly
enabled: true
privilege: read-only

Example-3: Disable IPMI over LAN access for servers that do not require it.

compute:
intersight:
organizations:
- name: MyOrg
policies:
ipmi_over_lan:
- name: MyIpmiDisabled
enabled: false