Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add encapsulation header types referenced from AFT module. #1204

Closed
wants to merge 2 commits into from
Closed
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
16 changes: 15 additions & 1 deletion release/models/aft/openconfig-aft-types.yang
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ module openconfig-aft-types {
"Types related to the OpenConfig Abstract Forwarding
Table (AFT) model";

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

revision "2024-10-21" {
description
"Add UDPV4 and UDPV6 enums to encapsualtion header types.";
reference "1.2.1";
}

revision "2024-07-18" {
description
Expand Down Expand Up @@ -99,6 +105,14 @@ module openconfig-aft-types {
description
"The encapsulation header is UDP packet header.";
}
enum UDPV4 {
description
"The encapsulation header is UDP packet header followed by IPv4 packet header.";
}
enum UDPV6 {
description
"The encapsulation header is UDP packet header followed by IPv6 packet header.";
}
}
description
"Types of tunnel encapsulation that are supported by systems as either
Expand Down
Loading