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
25 changes: 22 additions & 3 deletions release/models/acl/openconfig-packet-match.yang
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,14 @@ module openconfig-packet-match {
wildcard ('any') for that field.";


oc-ext:openconfig-version "2.3.0";
oc-ext:openconfig-version "2.4.0";

revision "2026-05-11" {
description
"Deprecate source/destination flow-label definitions and replace
with single IPv6 flow-label leaf.";
reference "2.4.0";
}

revision "2026-03-25" {
description
Expand Down Expand Up @@ -416,8 +423,11 @@ module openconfig-packet-match {

leaf source-flow-label {
type oc-inet:ipv6-flow-label;
status deprecated;
description
"Source IPv6 Flow label.";
"Deprecated: use flow-label instead. The IPv6 header contains a
single flow-label field; there is no distinct source or
destination flow-label.";
Comment thread
earies marked this conversation as resolved.
}

leaf destination-address {
Expand All @@ -437,9 +447,18 @@ module openconfig-packet-match {
}

leaf destination-flow-label {
type oc-inet:ipv6-flow-label;
status deprecated;
description
"Deprecated: use flow-label instead. The IPv6 header contains a
single flow-label field; there is no distinct source or
destination flow-label.";
Comment thread
earies marked this conversation as resolved.
}

leaf flow-label {
type oc-inet:ipv6-flow-label;
description
"Destination IPv6 Flow label.";
"IPv6 Flow label.";
}

uses ip-protocol-fields-common-config;
Expand Down
Loading