Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,14 @@ module openconfig-transport-types {
"This module contains general type definitions and identities
for optical transport models.";

oc-ext:openconfig-version "1.1.0";
oc-ext:openconfig-version "1.2.0";

revision "2025-07-11" {
description
"Add 100G lambda MSA PMD types: 100G-LR, 4X100G-LR, 100G-FR,
4X100G-FR";
reference "1.2.0";
}
revision "2024-11-21" {
description
"Add PROT_OTSI_A protocol type.";
Expand Down Expand Up @@ -1211,6 +1217,31 @@ module openconfig-transport-types {
description "Ethernet compliance code: 100GBASE_LR4";
}

identity ETH_2X100GBASE_LR4 {
base ETHERNET_PMD_TYPE;
description "Ethernet compliance code: 2x100GBASE_LR4";
}

identity ETH_100GBASE_LR {
base ETHERNET_PMD_TYPE;
description "Ethernet compliance code: 100GBASE_LR";
}

identity ETH_4X100GBASE_LR {
base ETHERNET_PMD_TYPE;
description "Ethernet compliance code: 4x100GBASE_LR";

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So there is no standard for this one, should this be called 400GBASE_DR4++?

}

identity ETH_100GBASE_FR {
base ETHERNET_PMD_TYPE;
description "Ethernet compliance code: 100GBASE_FR";

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is same as line 1280?

}

identity ETH_4X100GBASE_FR {
base ETHERNET_PMD_TYPE;
description "Ethernet compliance code: 4x100GBASE_FR";

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PMD is same as 400GBASE_DR4?

}

identity ETH_100GBASE_ER4L {
base ETHERNET_PMD_TYPE;
description "Ethernet compliance code: 100GBASE_ER4L";
Expand Down
Loading