Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/reference/fabric-api.md.gen
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,8 @@ _Appears in:_
| `fec` _string_ | | | |
| `counters` _[SwitchStateInterfaceCounters](#switchstateinterfacecounters)_ | | | |
| `lldpNeighbors` _[SwitchStateLLDPNeighbor](#switchstatelldpneighbor) array_ | | | |
| `errDisabled` _boolean_ | | | |
| `linkFlapCount` _integer_ | | | |


#### SwitchStateInterfaceCounters
Expand Down Expand Up @@ -3018,6 +3020,25 @@ _Appears in:_



#### SwitchLinkFlapErrDisable



SwitchLinkFlapErrDisable configures link-flap errdisable on fabric-facing ports.
Presence of this struct enables the feature; omitting it leaves the ports unprotected.



_Appears in:_
- [SwitchSpec](#switchspec)

| Field | Description | Default | Validation |
| --- | --- | --- | --- |
| `flapThreshold` _integer_ | FlapThreshold is the number of link-down events within SamplingInterval that triggers errdisable.<br />Defaults to 3. | 3 | Maximum: 50 <br />Minimum: 1 <br /> |
| `samplingInterval` _integer_ | SamplingInterval is the observation window in seconds for counting flap events.<br />Defaults to 30 s. | 30 | Maximum: 65535 <br />Minimum: 1 <br /> |
| `recoveryInterval` _integer_ | RecoveryInterval is how long in seconds before the port is automatically re-enabled.<br />0 means the port is never automatically re-enabled and must be recovered manually.<br />Defaults to 300 s. | 300 | Maximum: 65534 <br />Minimum: 0 <br /> |


#### SwitchProfile


Expand Down Expand Up @@ -3317,6 +3338,7 @@ _Appears in:_
| `enableAllPorts` _boolean_ | EnableAllPorts is a flag to enable all ports on the switch regardless of them being used or not | | |
| `roce` _boolean_ | RoCE is a flag to enable RoCEv2 support on the switch which includes lossless queues and QoS configuration | | |
| `ecmp` _[SwitchECMP](#switchecmp)_ | ECMP is the ECMP configuration for the switch | | |
| `linkFlapErrDisable` _[SwitchLinkFlapErrDisable](#switchlinkflaperrdisable)_ | LinkFlapErrDisable, if set, enables link-flap errdisable protection on all fabric-facing ports.<br />When a port exceeds FlapThreshold link-down events within SamplingInterval seconds it is<br />disabled; RecoveryInterval controls how long before it is automatically re-enabled (0 = never). | | |


#### SwitchStatus
Expand Down
Loading