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 vpws local and remote identifiers to EVPN-VPWS configuration #930

Merged
merged 8 commits into from
Jul 16, 2024
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
Loading