Skip to content

Commit

Permalink
Add vpws local and remote identifiers to EVPN-VPWS configuration (ope…
Browse files Browse the repository at this point in the history
…nconfig#930)

* Update openconfig-evpn.yang with vpws identifiers

Extend openconfig-evpn.yang model with those two leafs for setting both local and remote vpws service identifiers within container evpn/evpn-instances/evpn-instance

---------

Co-authored-by: Óscar González de Dios <[email protected]>
  • Loading branch information
2 people authored and sallylsy committed Sep 5, 2024
1 parent 3115d6a commit 0d541e7
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion release/models/network-instance/openconfig-evpn.yang
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,14 @@ module openconfig-evpn {
domains, this is not currently supported and requires an extension
of the model.";

oc-ext:openconfig-version "0.8.0";
oc-ext:openconfig-version "0.9.0";

revision "2024-05-14" {
description
"Add configuration of VPWS identifier
for EVPN Virtual Private Wire Services (RFC 8214)";
reference "0.9.0";
}

revision "2024-04-03" {
description
Expand Down Expand Up @@ -555,6 +562,30 @@ module openconfig-evpn {
draft-ietf-bess-rfc7432bis-05 BGP MPLS-Based
Ethernet VPN";
}

leaf local-vpws-service-id {
type uint32 {
range "1..16777215";
}
description
"Indicates the local VPWS identifier assigned
to the Attachment Circuit (AC).";
reference
"RFC8214 Virtual Private Wire Service Support
in Ethernet VPN.";
}

leaf remote-vpws-service-id {
type uint32 {
range "1..16777215";
}
description
"Indicates the remote VPWS identifier assigned
to the Attachment Circuit (AC).";
reference
"RFC8214 Virtual Private Wire Service Support
in Ethernet VPN.";
}
}

grouping evpn-import-export-config {
Expand Down

0 comments on commit 0d541e7

Please sign in to comment.