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

Removed duplication of timers. Regenerated tree, Minor editorial comment #28

Merged
merged 2 commits into from
Jun 4, 2024
Merged
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
6 changes: 1 addition & 5 deletions Yang/Tree/isis-tree.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ module: ietf-l3-isis-topology
augment /nw:networks/nw:network/nw:network-types:
+--rw isis-topology!
augment /nw:networks/nw:network/nw:node/l3t:l3-node-attributes:
+--rw isis-timer-attributes
| +--rw lsp-mtu? uint16
| +--rw lsp-lifetime? uint16
| +--rw lsp-refresh? rt-types:timer-value-seconds16 {lsp-refresh}?
| +--rw poi-tlv? boolean {poi-tlv}?
+--rw isis-node-attributes
+--rw system-id? ietf-isis:system-id
+--rw level? ietf-isis:level
Expand All @@ -23,3 +18,4 @@ module: ietf-l3-isis-topology
+--rw interface-type? ietf-isis:interface-type
+--rw level? ietf-isis:level
+--rw is-passive? boolean

15 changes: 5 additions & 10 deletions Yang/ietf-l3-isis-topology.yang
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ module ietf-l3-isis-topology {
}

grouping isis-link-attributes {
description "Identifies the IS-IS link attributes.";
description "Defines the IS-IS link attributes.";
container isis-link-attributes {
description
"Main Container to identify the ISIS Link Attributes";
Expand All @@ -101,12 +101,7 @@ module ietf-l3-isis-topology {
}

grouping isis-node-attributes {
description "isis node scope attributes";
container isis-timer-attributes {
description
"Contains node timer attributes";
uses ietf-isis:lsp-parameters;
}
description "IS-IS node scope attributes";
container isis-node-attributes {
description
"Main Container to identify the ISIS Node Attributes";
Expand Down Expand Up @@ -190,7 +185,7 @@ grouping isis-termination-point-attributes {
isis topology";
}
description
"isis node-level attributes ";
"Augments L3 topology node attributes for IS-IS";
uses isis-node-attributes;
}

Expand All @@ -201,7 +196,7 @@ grouping isis-termination-point-attributes {
IS-IS topology";
}
description
"Augments topology link configuration";
"Augments L3 topology link attributes for IS-IS";
uses isis-link-attributes;
}

Expand All @@ -215,7 +210,7 @@ grouping isis-termination-point-attributes {
IS-IS topology";
}
description
"Augments topology termination point configuration";
"Augments L3 topology termination point attributes for IS-IS";
uses isis-termination-point-attributes;
}
}
2 changes: 1 addition & 1 deletion draft-ogondio-nmop-isis-topology.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ contributor:

--- abstract

This document defines a YANG data model for representing an abstracted view of a network topology that contains Intermediate System to Intermediate System (IS-IS). This document augments the 'ietf-network' data model by adding IS-IS concepts and explains how the data model can be used to represent the IS-IS topology.
This document defines a YANG data model for representing an abstracted view of a network topology that contains Intermediate System to Intermediate System (IS-IS). This document augments the 'ietf-network' and 'ietf-network-topology' data models by adding IS-IS concepts and explains how the data model can be used to represent the IS-IS topology.

The YANG data model defined in this document conforms to the Network Management Datastore Architecture (NMDA).

Expand Down
Loading