Skip to content

Ethernet Network Control Policy

An Ethernet Network Control Policy configures link-layer discovery and MAC address handling on vNIC interfaces for FI-attached servers, controlling CDP, LLDP, MAC forging, MAC registration mode, and uplink failure behavior.

Location in Intersight GUI: Policies » Ethernet Network Control

Diagram

policies (compute.intersight.organizations)

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

ethernet_network_control (compute.intersight.organizations.policies)

Section titled “ethernet_network_control (compute.intersight.organizations.policies)”
NameTypeConstraintMandatoryDefault Value
nameStringRegex: ^[a-zA-Z0-9_.:-]{1,64}$Yes
descriptionStringNo
managedBooleantrue, falseNotrue
tagsList[tags]No
cdpBooleantrue, falseNofalse
forge_macChoiceallow, denyNoallow
mac_registration_modeChoicenativeVlanOnly, allVlansNonativeVlanOnly
uplink_fail_actionChoicelinkDown, warningNolinkDown
lldp_receiveBooleantrue, falseNofalse
lldp_transmitBooleantrue, falseNofalse

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

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

Example-1: Configure an Ethernet Network Control policy with CDP and LLDP enabled on a standard FI-attached vNIC, with environment tags.

compute:
intersight:
organizations:
- name: MyOrg
policies:
ethernet_network_control:
- name: MyEthCtrlPolicy
cdp: true
lldp_transmit: true
lldp_receive: true
forge_mac: allow
mac_registration_mode: nativeVlanOnly
uplink_fail_action: linkDown
tags:
- key: env
value: prod

Example-2: Configure a policy for an active/active uplink topology that keeps vEthernet up when no uplink is pinned.

compute:
intersight:
organizations:
- name: MyOrg
policies:
ethernet_network_control:
- name: MyEthCtrlActiveActive
uplink_fail_action: warning
mac_registration_mode: allVlans

Example-3: Deny MAC forging for strict environments where spoofed MAC addresses must be blocked.

compute:
intersight:
organizations:
- name: MyOrg
policies:
ethernet_network_control:
- name: MyEthCtrlSecure
forge_mac: deny
cdp: false
lldp_transmit: false
lldp_receive: false