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 enabled leaf into isis multi-topology config #1207

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
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
8 changes: 7 additions & 1 deletion release/models/isis/openconfig-isis-lsp.yang
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,13 @@ submodule openconfig-isis-lsp {
Section 4.c of the IETF Trust's Legal Provisions Relating
to IETF Documents (http://trustee.ietf.org/license-info).";

oc-ext:openconfig-version "1.7.0";
oc-ext:openconfig-version "1.7.1";

revision "2024-10-25" {
description
"Add enabled leaf into isis multi-topology configuration.";
reference "1.7.1";
}

revision "2024-02-28" {
description
Expand Down
15 changes: 13 additions & 2 deletions release/models/isis/openconfig-isis-routing.yang
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@ submodule openconfig-isis-routing {
description
"This module describes YANG model for ISIS Routing";

oc-ext:openconfig-version "1.7.0";
oc-ext:openconfig-version "1.7.1";

revision "2024-10-25" {
description
"Add enabled leaf into isis multi-topology configuration.";
reference "1.7.1";
}

revision "2024-02-28" {
description
Expand Down Expand Up @@ -297,6 +303,12 @@ submodule openconfig-isis-routing {
description
"Subsequent address-family type.";
}
leaf enabled {
type boolean;
description
"When set to true, the functionality within which this leaf is
defined is enabled, when set to false it is explicitly disabled.";
}
//prefer single topology
}

Expand Down Expand Up @@ -529,7 +541,6 @@ submodule openconfig-isis-routing {
description
"This container defines AFI-SAFI multi-topology state information";
uses isis-mt-config;
uses rt-admin-config;
}
}
}
Expand Down
8 changes: 7 additions & 1 deletion release/models/isis/openconfig-isis.yang
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,13 @@ module openconfig-isis {
+-> { levels config }
+-> { level adjacencies }";

oc-ext:openconfig-version "1.7.0";
oc-ext:openconfig-version "1.7.1";

revision "2024-10-25" {
description
"Add enabled leaf into isis multi-topology configuration.";
reference "1.7.1";
}

revision "2024-02-28" {
description
Expand Down
Loading