Skip to content

Commit 0dcdaa2

Browse files
feat: Fast failover for LACP on aggregate network interfaces (#502)
1 parent 0ecde30 commit 0dcdaa2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

panos/network.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1344,6 +1344,7 @@ class AggregateInterface(PhysicalInterface):
13441344
lacp_passive_pre_negotiation (bool): Enable LACP passive pre-negotiation, off by default
13451345
lacp_mode (str): Set LACP mode to 'active' or 'passive'
13461346
lacp_rate (str): Set LACP transmission-rate to 'fast' or 'slow'
1347+
lacp_fast_failover (bool): Enable fast failover for LACP
13471348
13481349
"""
13491350

@@ -1511,6 +1512,14 @@ def _setup(self):
15111512
path="{mode}/lacp/transmission-rate",
15121513
)
15131514
)
1515+
params.append(
1516+
VersionedParamPath(
1517+
"lacp_fast_failover",
1518+
condition={"mode": ["layer3", "layer2", "ha"], "lacp_enable": True},
1519+
vartype="yesno",
1520+
path="{mode}/lacp/fast-failover",
1521+
)
1522+
)
15141523

15151524
self._params = tuple(params)
15161525

0 commit comments

Comments
 (0)