-
Notifications
You must be signed in to change notification settings - Fork 658
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add oam super node and refractor cfm + add state variables to pm pro…
…files
- Loading branch information
1 parent
57fa1b2
commit 1dfb64e
Showing
5 changed files
with
75 additions
and
19 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
- name: openconfig-oam | ||
docs: | ||
- yang/oam/openconfig-oam.yang | ||
- yang/oam/openconfig-cfm-types.yang | ||
- yang/oam/openconfig-oam-cfm.yang | ||
build: | ||
- yang/oam/openconfig-oam.yang | ||
- yang/oam/openconfig-oam-cfm.yang | ||
run-ci: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
module openconfig-oam { | ||
|
||
yang-version "1"; | ||
|
||
// namespace | ||
namespace "http://openconfig.net/yang/oam"; | ||
|
||
prefix "oc-oam"; | ||
import openconfig-extensions { prefix oc-ext; } | ||
|
||
organization "OpenConfig working group"; | ||
|
||
contact | ||
"OpenConfig working group | ||
www.openconfig.net"; | ||
|
||
description | ||
"This module defines a YANG data model for configuring and managing | ||
EthernetOAM functions"; | ||
|
||
oc-ext:openconfig-version "0.1.0"; | ||
|
||
revision "2024-09-11" { | ||
description | ||
"Initial revision"; | ||
reference "0.1.0"; | ||
} | ||
|
||
grouping oam-top{ | ||
description | ||
"top level grouping for configuration and operational state parameters relating | ||
to Ethernet OAM"; | ||
|
||
container oam { | ||
description | ||
"Operational state and configuration parameters relating to | ||
Ethernet OAM"; | ||
|
||
container config { | ||
description | ||
"Configuration parameters relating to Ethernet OAM"; | ||
} | ||
container state { | ||
config false; | ||
description | ||
"Operational state parameters relating to Ethernet OAM"; | ||
} | ||
} | ||
} | ||
|
||
uses oam-top; | ||
} |