Skip to content

Commit

Permalink
Enable LACP on LAG interfaces
Browse files Browse the repository at this point in the history
This patch enables LACP on lag interfaces by default.

Change-Id: I14b20ba6754a8d85b834703ff0d2de2447cc36e9
Closes-Bug: 1778825
  • Loading branch information
sukhdevkapur committed Jul 13, 2018
1 parent cbba51a commit ffa9280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/api-server/vnc_cfg_api_server/vnc_cfg_types.py
Expand Up @@ -2194,7 +2194,7 @@ def _create_lag_interface(cls, api_server, db_conn, prouter_name, phy_interfaces
# create lag object
lag_obj = LinkAggregationGroup(parent_type='physical-router',
fq_name=['default-global-system-config', prouter_name, lag_interface_name],
link_aggregation_group_lacp_enabled=False)
link_aggregation_group_lacp_enabled=True)

ok, resp = api_server.internal_request_create('link-aggregation-group',
lag_obj.serialize_to_json())
Expand Down

0 comments on commit ffa9280

Please sign in to comment.