forked from openconfig/featureprofiles
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding deviation for rate class unsupport option for the ETH channel …
…configuration (openconfig#3660) * add deviation for ETH channal rate class non-supported. Arista device does not support this yet * bug fix for channel definition in the interface.go file * Revert "add deviation for ETH channal rate class non-supported. Arista device does not support this yet" This reverts commit b1af1fc. * Arista device is not supporting ETH channel rate class yet. Adding this deviation. * adding a new PMD typeof PMD_400GBASE_ZR_PLUS for the functional testing * adding new testbed topology for new optics PMD 400G ZR plus * Update interface.go * updated metadata.pb.go file * Arista device is not supporting ETH channel rate class yet. Adding this deviation. * adding newly introduced deviation of unsupported rate class to the tests * removing folder of tmp * removing empty file called values * add deviation for ETH channal rate class non-supported. Arista device does not support this yet * bug fix for channel definition in the interface.go file * Revert "add deviation for ETH channal rate class non-supported. Arista device does not support this yet" This reverts commit b1af1fc. * Arista device is not supporting ETH channel rate class yet. Adding this deviation. * adding a new PMD typeof PMD_400GBASE_ZR_PLUS for the functional testing * adding new testbed topology for new optics PMD 400G ZR plus * Update interface.go * updated metadata.pb.go file * fixed metadata.pb.go --------- Co-authored-by: Pramod Maurya <[email protected]> Co-authored-by: Yiwen Hu <[email protected]>
- Loading branch information
Showing
8 changed files
with
81 additions
and
34 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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# proto-file: github.com/openconfig/ondatra/blob/main/proto/testbed.proto | ||
# proto-message: ondatra.Testbed | ||
|
||
# 1 DUT, 2 port, 400ZR_PLUS optics | ||
|
||
duts { | ||
id: "dut" | ||
ports { | ||
id: "port1" | ||
speed: S_400GB | ||
pmd: PMD_400GBASE_ZR_PLUS | ||
} | ||
ports { | ||
id: "port2" | ||
speed: S_400GB | ||
pmd: PMD_400GBASE_ZR_PLUS | ||
} | ||
} | ||
|
||
links { | ||
a: "dut:port1" | ||
b: "dut:port2" | ||
} |