Skip to content

Commit

Permalink
feat: Fast failover for LACP on aggregate network interfaces (#502)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesholland-uk authored Apr 25, 2023
1 parent 0ecde30 commit 0dcdaa2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions panos/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -1344,6 +1344,7 @@ class AggregateInterface(PhysicalInterface):
lacp_passive_pre_negotiation (bool): Enable LACP passive pre-negotiation, off by default
lacp_mode (str): Set LACP mode to 'active' or 'passive'
lacp_rate (str): Set LACP transmission-rate to 'fast' or 'slow'
lacp_fast_failover (bool): Enable fast failover for LACP
"""

Expand Down Expand Up @@ -1511,6 +1512,14 @@ def _setup(self):
path="{mode}/lacp/transmission-rate",
)
)
params.append(
VersionedParamPath(
"lacp_fast_failover",
condition={"mode": ["layer3", "layer2", "ha"], "lacp_enable": True},
vartype="yesno",
path="{mode}/lacp/fast-failover",
)
)

self._params = tuple(params)

Expand Down

0 comments on commit 0dcdaa2

Please sign in to comment.