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
Section titled “Diagram”Classes
Section titled “Classes”policies (compute.intersight.organizations)
Section titled “policies (compute.intersight.organizations)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| imc_access | List | [imc_access] | No |
imc_access (compute.intersight.organizations.policies)
Section titled “imc_access (compute.intersight.organizations.policies)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | Regex: ^[a-zA-Z0-9_.:-]{1,64}$ | Yes | |
| description | String | No | ||
| managed | Boolean | true, false | No | true |
| tags | List | [tags] | No | |
| configure_inband | Boolean | true, false | No | true |
| configure_out_of_band | Boolean | true, false | No | false |
| inband_vlan | Integer | min: 4, max: 4093 | No | |
| ipv4 | Boolean | true, false | No | true |
| ipv6 | Boolean | true, false | No | false |
| inband_ip_pool | String | No | ||
| out_of_band_ip_pool | String | No |
tags (compute.intersight.organizations.policies.imc_access)
Section titled “tags (compute.intersight.organizations.policies.imc_access)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| key | String | Yes | ||
| value | String | Yes |
Examples
Section titled “Examples”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: prodExample-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