Skip to content

IMC Access Policy

An IMC Access Policy configures server management controller (CIMC) network access options, defining how In-Band and Out-of-Band management IP addresses are assigned to endpoints. It integrates with IP Pools to automate management IP allocation and is applied to Server or Chassis profiles.

Location in Intersight GUI: Policies » IMC Access

Diagram

policies (compute.intersight.organizations)

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

imc_access (compute.intersight.organizations.policies)

Section titled “imc_access (compute.intersight.organizations.policies)”
NameTypeConstraintMandatoryDefault Value
nameStringRegex: ^[a-zA-Z0-9_.:-]{1,64}$Yes
descriptionStringNo
managedBooleantrue, falseNotrue
tagsList[tags]No
configure_inbandBooleantrue, falseNotrue
configure_out_of_bandBooleantrue, falseNofalse
inband_vlanIntegermin: 4, max: 4093No
ipv4Booleantrue, falseNotrue
ipv6Booleantrue, falseNofalse
inband_ip_poolStringNo
out_of_band_ip_poolStringNo

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

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

Example-1: The example below demonstrates a basic In-Band IMC Access policy using an IP pool for management address assignment.

compute:
intersight:
organizations:
- name: MyOrganization
policies:
imc_access:
- name: inband-access
description: In-Band IMC access with IP pool
configure_inband: true
inband_vlan: 100
inband_ip_pool: mgmt-ip-pool
tags:
- key: env
value: prod

Example-2: The example below demonstrates a policy enabling both In-Band and Out-of-Band management with separate IP pools.

compute:
intersight:
organizations:
- name: MyOrganization
policies:
imc_access:
- name: dual-access
description: In-Band and Out-of-Band IMC access
configure_inband: true
configure_out_of_band: true
inband_vlan: 100
inband_ip_pool: inband-mgmt-pool
out_of_band_ip_pool: oob-mgmt-pool
ipv4: true
ipv6: false