Skip to content
Open
Show file tree
Hide file tree
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 @@ -24,7 +24,13 @@ submodule openconfig-bgp-common-multiprotocol {
for multiple protocols in BGP. The groupings are common across
multiple contexts.";

oc-ext:openconfig-version "9.9.1";
oc-ext:openconfig-version "9.9.2";

revision "2026-07-15" {
description
"Extend Add-path Send leaf with values ADDPATH-ECMP and ADDPATH-ALL";
reference "9.9.2";
}

revision "2025-04-18" {
description
Expand Down
8 changes: 7 additions & 1 deletion release/models/bgp/openconfig-bgp-common-structure.yang
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@ submodule openconfig-bgp-common-structure {
"This sub-module contains groupings that are common across multiple BGP
contexts and provide structure around other primitive groupings.";

oc-ext:openconfig-version "9.9.1";
oc-ext:openconfig-version "9.9.2";

revision "2026-07-15" {
description
"Extend Add-path Send leaf with values ADDPATH-ECMP and ADDPATH-ALL";
reference "9.9.2";
}

revision "2025-04-18" {
description
Expand Down
29 changes: 26 additions & 3 deletions release/models/bgp/openconfig-bgp-common.yang
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@ submodule openconfig-bgp-common {
may be application to a subset of global, peer-group or neighbor
contexts.";

oc-ext:openconfig-version "9.9.1";
oc-ext:openconfig-version "9.9.2";
Comment thread
nupkanoi marked this conversation as resolved.

revision "2026-07-15" {
description
"Extend Add-path Send leaf with values ADDPATH-ECMP and ADDPATH-ALL";
reference "9.9.2";
}

revision "2025-04-18" {
description
Expand Down Expand Up @@ -525,11 +531,28 @@ submodule openconfig-bgp-common {
}

leaf send {
type boolean;
type union {
type boolean;
type enumeration {
enum ADDPATH_ECMP {
description
"Enable capability negotiation to send multiple paths,
and select/advertise all active ECMP paths
for a destination to the peer.";
}
enum ADDPATH_ALL {
description
"Enable capability negotiation to send all RIB/FIB paths
to the peer.";
}
Comment thread
nupkanoi marked this conversation as resolved.
}
}
default false;
description
"Enable capability negotiation to send multiple path
advertisements for an NLRI from the neighbor or group";
advertisements for an NLRI from the neighbor or group.
Supports both backward-compatible boolean toggles or explicit
selection modes (ADDPATH_ECMP, ADDPATH_ALL).";
reference
"RFC 7911 - Advertisement of Multiple Paths in BGP";
}
Expand Down
8 changes: 7 additions & 1 deletion release/models/bgp/openconfig-bgp-global.yang
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,13 @@ submodule openconfig-bgp-global {
"This sub-module contains groupings that are specific to the
global context of the OpenConfig BGP module";

oc-ext:openconfig-version "9.9.1";
oc-ext:openconfig-version "9.9.2";

revision "2026-07-15" {
description
"Extend Add-path Send leaf with values ADDPATH-ECMP and ADDPATH-ALL";
reference "9.9.2";
}

revision "2025-04-18" {
description
Expand Down
8 changes: 7 additions & 1 deletion release/models/bgp/openconfig-bgp-neighbor.yang
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,13 @@ submodule openconfig-bgp-neighbor {
"This sub-module contains groupings that are specific to the
neighbor context of the OpenConfig BGP module.";

oc-ext:openconfig-version "9.9.1";
oc-ext:openconfig-version "9.9.2";

revision "2026-07-15" {
description
"Extend Add-path Send leaf with values ADDPATH-ECMP and ADDPATH-ALL";
reference "9.9.2";
}

revision "2025-04-18" {
description
Expand Down
8 changes: 7 additions & 1 deletion release/models/bgp/openconfig-bgp-peer-group.yang
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@ submodule openconfig-bgp-peer-group {
"This sub-module contains groupings that are specific to the
peer-group context of the OpenConfig BGP module.";

oc-ext:openconfig-version "9.9.1";
oc-ext:openconfig-version "9.9.2";

revision "2026-07-15" {
description
"Extend Add-path Send leaf with values ADDPATH-ECMP and ADDPATH-ALL";
reference "9.9.2";
}

revision "2025-04-18" {
description
Expand Down
8 changes: 7 additions & 1 deletion release/models/bgp/openconfig-bgp.yang
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,13 @@ module openconfig-bgp {
whereas leaf not present inherits its value from the leaf present
at the next higher level in the hierarchy.";

oc-ext:openconfig-version "9.9.1";
oc-ext:openconfig-version "9.9.2";

revision "2026-07-15" {
description
"Extend Add-path Send leaf with values ADDPATH-ECMP and ADDPATH-ALL";
reference "9.9.2";
}

revision "2025-04-18" {
description
Expand Down
Loading