We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba84889 commit 4c8a4c6Copy full SHA for 4c8a4c6
1 file changed
dockers/docker-fpm-frr/bgpcfgd
@@ -477,6 +477,15 @@ class VlanInterfaceMgr(InterfaceMgr):
477
)
478
479
480
+class PortChannelInterfaceMgr(InterfaceMgr):
481
+ def __init__(self, daemon, directory):
482
+ super(PortChannelInterfaceMgr, self).__init__(
483
+ daemon,
484
+ directory,
485
+ swsscommon.CFG_LAG_INTF_TABLE_NAME
486
+ )
487
+
488
489
def wait_for_bgpd():
490
# wait for 20 seconds
491
stop_time = datetime.datetime.now() + datetime.timedelta(seconds=20)
@@ -498,6 +507,7 @@ def main():
498
507
InterfaceMgr,
499
508
LoopbackInterfaceMgr,
500
509
VlanInterfaceMgr,
510
+ PortChannelInterfaceMgr,
501
511
]
502
512
wait_for_bgpd()
503
513
daemon = Daemon()
0 commit comments