Skip to content

Commit

Permalink
add state containers
Browse files Browse the repository at this point in the history
  • Loading branch information
dplore committed Sep 6, 2024
1 parent 8e9c101 commit a688fae
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions release/models/aft/openconfig-aft-common.yang
Original file line number Diff line number Diff line change
Expand Up @@ -289,26 +289,41 @@ submodule openconfig-aft-common {
container gre {
description
"Container of nodes for GRE encapsulation.";

uses aft-common-entry-nexthop-gre-state;
container state {
description
"State parameters relating to GRE encapsulation headers.";
uses aft-common-entry-nexthop-gre-state;
}
}

container ip {
description
"Container of nodes for IP encapsulation.";
uses aft-common-entry-nexthop-ip-state;
container state {
description
"State parameters relating to IP encapsulation headers.";
uses aft-common-entry-nexthop-ip-state;
}
}

container mpls {
description
"Container of nodes for IP encapsulation.";
uses aft-common-entry-nexthop-mpls-state;
container state {
description
"State parameters relating to MPLS encapsulation headers.";
uses aft-common-entry-nexthop-mpls-state;
}
}

container udp {
description
"Container of nodes for UDP encapsulation.";
uses aft-common-entry-nexthop-udp-state;
container state {
description
"State parameters relating to UDP encapsulation headers.";
uses aft-common-entry-nexthop-udp-state;
}
}
}
}
Expand Down

0 comments on commit a688fae

Please sign in to comment.