-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[docker-teamd]: Explicitly set LAG hwaddr (#664)
* [docker-teamd]: Explicitly set LAG hwaddr Team device is initially created without any members and has a random HW address, which is later changed to port's address. This configuration sets team device's address explicitly to base MAC to avoid reassignment. Signed-off-by: marian-pritsak <[email protected]> * Update teamd config tests with hwaddr Signed-off-by: marian-pritsak <[email protected]> * Align HW addr byte for Centec and Mellanox Signed-off-by: marian-pritsak <[email protected]> * Change HW addr to unicast in config tests Signed-off-by: marian-pritsak <[email protected]>
- Loading branch information
1 parent
b968cf7
commit 820e7aa
Showing
7 changed files
with
17 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"device": "{{ pc }}", | ||
"hwaddr": "{{ hwaddr }}", | ||
"runner": { | ||
"name": "lacp", | ||
"active": true, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"device": "PortChannel01", | ||
"hwaddr": "e4:1d:2d:a5:f3:ad", | ||
"runner": { | ||
"name": "lacp", | ||
"active": true, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"device": "PortChannel02", | ||
"hwaddr": "e4:1d:2d:a5:f3:ad", | ||
"runner": { | ||
"name": "lacp", | ||
"active": true, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"device": "PortChannel03", | ||
"hwaddr": "e4:1d:2d:a5:f3:ad", | ||
"runner": { | ||
"name": "lacp", | ||
"active": true, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"device": "PortChannel04", | ||
"hwaddr": "e4:1d:2d:a5:f3:ad", | ||
"runner": { | ||
"name": "lacp", | ||
"active": true, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters