Skip to content
Open
Changes from 1 commit
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,7 +22,13 @@ module openconfig-network-instance-static {
description
"Static configurations associated with a network instance";

oc-ext:openconfig-version "0.2.1";
oc-ext:openconfig-version "0.2.2";

revision "2025-08-05" {
description
"Add static encapsulation headers with IPV6 header.";
reference "0.2.2";
}
Comment thread
nupkanoi marked this conversation as resolved.

revision "2025-08-05" {
description
Expand Down Expand Up @@ -295,6 +301,29 @@ module openconfig-network-instance-static {
}
}

container udp-v6 {
when "../config/type = 'oc-aftt:UDPV6'";
description
"Container of nodes for UDP in IPv6 encapsulation. When this
container is used, an IPv6 header with a UDP header is added
to the encapsulation list.";

container config {
description
"Configuration parameters relating to encapsulation headers.";

uses oc-aft:aft-common-entry-nexthop-encap-udp-v6-state;
}
Comment thread
nupkanoi marked this conversation as resolved.

container state {
config false;
description
"State parameters relating to encapsulation headers.";

uses oc-aft:aft-common-entry-nexthop-encap-udp-v6-state;
}
Comment thread
nupkanoi marked this conversation as resolved.
}

container gre {
when "../config/type = 'oc-aftt:GRE'";
description
Expand Down
Loading