Ethernet Network Policy
An Ethernet Network Policy configures VLAN settings for vNICs on Standalone servers. It defines whether the interface operates in Access mode (single VLAN) or Trunk mode (multiple VLANs), sets the native VLAN, and optionally enables QinQ tunneling. This policy applies to Standalone target platforms only; use Ethernet Network Group Policy for FI-attached servers.
Location in Intersight GUI:
Policies » Ethernet Network
Diagram
Section titled “Diagram”Classes
Section titled “Classes”policies (compute.intersight.organizations)
Section titled “policies (compute.intersight.organizations)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| ethernet_network | List | [ethernet_network] | No |
ethernet_network (compute.intersight.organizations.policies)
Section titled “ethernet_network (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 | |
| default_vlan | Integer | min: 0, max: 4094 | No | 0 |
| vlan_mode | Choice | ACCESS, TRUNK | No | ACCESS |
| allowed_vlans | String | No | ||
| qinq | Boolean | true, false | No | false |
| qinq_vlan | Integer | min: 1, max: 4093 | No |
tags (compute.intersight.organizations.policies.ethernet_network)
Section titled “tags (compute.intersight.organizations.policies.ethernet_network)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| key | String | Yes | ||
| value | String | Yes |
Examples
Section titled “Examples”Example-1: The example below demonstrates an access port policy assigning a single VLAN for a Standalone server management interface.
compute: intersight: organizations: - name: MyOrganization policies: ethernet_network: - name: access-vlan100 description: Access port on VLAN 100 for standalone servers vlan_mode: ACCESS default_vlan: 100 tags: - key: env value: prodExample-2: The example below demonstrates a trunk policy carrying multiple VLANs with VLAN 1 as the native VLAN, suitable for hypervisor uplinks on Standalone servers.
compute: intersight: organizations: - name: MyOrganization policies: ethernet_network: - name: trunk-uplink description: Trunk allowing VLANs 100-200 with native VLAN 1 vlan_mode: TRUNK default_vlan: 1 allowed_vlans: "100-200"