Skip to content

Link Level Interface Policy

Location in GUI: Fabric » Access Policies » Policies » Interface » Link Level

Diagram
NameTypeConstraintMandatoryDefault Value
link_level_policiesList[link_level_policies]No

Section titled “link_level_policies (apic.access_policies.interface_policies)”
NameTypeConstraintMandatoryDefault Value
nameStringRegex: ^[a-zA-Z0-9_.:-]{1,64}$Yes
speedChoiceauto, 100M, 1G, 10G, 25G, 40G, 100G, 400G, inheritNoinherit
link_delay_intervalIntegermin: 0, max: 10000No0
link_debounce_intervalIntegermin: 0, max: 5000No100
autoBooleantrue, falseNotrue
fec_modeChoiceinherit, cl91-rs-fec, cl74-fc-fec, auto-fec, ieee-rs-fec, cons16-rs-fec, disable-fecNoinherit
physical_media_typeChoiceauto, sfp-10g-txNo

Example 1: The YAML snippet below demonstrates how to configure link-level policies. This includes setting the link_delay_interval and link_debounce_interval parameters. These are important for managing the “Port Bring-up Delay” required by various Line Cards, such as the Oracle Exadata CX5 Mellanox NICs. Both link_delay_interval and link_debounce_interval values are specified in milliseconds (ms), and link_delay_interval is set to 0ms by default.

apic:
access_policies:
interface_policies:
link_level_policies:
- name: 10G-CX5
speed: 10G
link_delay_interval: 10
link_debounce_interval: 110
auto: true
fec_mode: inherit

Example 2: The YAML snippet below demonstrates the flexibility of converting a fiber port into a copper port. By specifying the physical_media_type as sfp-10g-tx, we can easily integrate copper-based devices into the network infrastructure. The physical_media_type field can be set to either auto or sfp-10g-tx.

apic:
access_policies:
link_level_policies:
- name: 10G-CU
speed: 10G
auto: true
fec_mode: inherit
physical_media_type: sfp-10g-tx