mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-18 20:27:05 +00:00
Merge pull request #4733 from opensourcerouting/route-map-yang
yang: models for route map and filters
This commit is contained in:
commit
112fed90ed
353
yang/frr-filter.yang
Normal file
353
yang/frr-filter.yang
Normal file
@ -0,0 +1,353 @@
|
||||
module frr-filter {
|
||||
yang-version 1.1;
|
||||
namespace "http://frrouting.org/yang/filter";
|
||||
prefix frr-filter;
|
||||
|
||||
import ietf-inet-types {
|
||||
prefix inet;
|
||||
}
|
||||
import ietf-yang-types {
|
||||
prefix yang;
|
||||
}
|
||||
|
||||
organization "Free Range Routing";
|
||||
contact
|
||||
"FRR Users List: <mailto:frog@lists.frrouting.org>
|
||||
FRR Development List: <mailto:dev@lists.frrouting.org>";
|
||||
description "This module defines filter settings";
|
||||
|
||||
revision 2019-07-04 {
|
||||
description "Initial revision";
|
||||
}
|
||||
|
||||
/*
|
||||
* Types.
|
||||
*/
|
||||
typedef access-list-standard {
|
||||
description "Standard IPv4 access list (any, host or a prefix)";
|
||||
type uint16 {
|
||||
range "1..99 | 1300..1999";
|
||||
}
|
||||
}
|
||||
|
||||
typedef access-list-extended {
|
||||
description
|
||||
"Extended IPv4 access list (source / destination any, hosts or prefixes)";
|
||||
type uint16 {
|
||||
range "100..199 | 2000..2699";
|
||||
}
|
||||
}
|
||||
|
||||
typedef access-list-legacy {
|
||||
description "Standard/Extended IPv4 access list";
|
||||
type uint16 {
|
||||
range "1..199 | 1300..2699";
|
||||
}
|
||||
}
|
||||
|
||||
typedef access-list-name {
|
||||
description "Access list name formatting";
|
||||
type string;
|
||||
}
|
||||
|
||||
typedef access-list-sequence {
|
||||
description "Access list sequence number";
|
||||
type uint32 {
|
||||
range "1..4294967295";
|
||||
}
|
||||
}
|
||||
|
||||
typedef access-list-action {
|
||||
description "Access list return action on match";
|
||||
type enumeration {
|
||||
enum deny {
|
||||
description "Deny an entry";
|
||||
value 0;
|
||||
}
|
||||
enum permit {
|
||||
description "Accept an entry";
|
||||
value 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Configuration data.
|
||||
*/
|
||||
container filter-list {
|
||||
list access-list-legacy {
|
||||
description "Access list legacy instance";
|
||||
|
||||
key "number sequence";
|
||||
|
||||
leaf number {
|
||||
description "Access list sequence value";
|
||||
type access-list-legacy;
|
||||
}
|
||||
|
||||
leaf sequence {
|
||||
description "Access list sequence value";
|
||||
type access-list-sequence;
|
||||
}
|
||||
|
||||
leaf action {
|
||||
description "Access list action on match";
|
||||
type access-list-action;
|
||||
mandatory true;
|
||||
}
|
||||
|
||||
leaf remark {
|
||||
description "Access list remark";
|
||||
type string;
|
||||
}
|
||||
|
||||
choice value {
|
||||
description
|
||||
"Standard access list: value to match.
|
||||
Extended access list: source value to match.";
|
||||
mandatory true;
|
||||
|
||||
leaf host {
|
||||
description "Host to match";
|
||||
type inet:ipv4-address;
|
||||
}
|
||||
leaf network {
|
||||
description "Network to match";
|
||||
type inet:ipv4-prefix;
|
||||
}
|
||||
leaf any {
|
||||
description "Match any";
|
||||
type empty;
|
||||
}
|
||||
}
|
||||
|
||||
choice extended-value {
|
||||
when "./sequence >= 100 and ./sequence <= 199 or
|
||||
./sequence >= 2000 and ./sequence <= 2699";
|
||||
description "Destination value to match";
|
||||
|
||||
leaf destination-host {
|
||||
description "Host to match";
|
||||
type inet:ipv4-address;
|
||||
}
|
||||
leaf destination-network {
|
||||
description "Network to match";
|
||||
type inet:ipv4-prefix;
|
||||
}
|
||||
leaf destination-any {
|
||||
description "Match any";
|
||||
type empty;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
list access-list {
|
||||
description "Access list instance";
|
||||
|
||||
key "type identifier sequence";
|
||||
|
||||
leaf type {
|
||||
description "Access list content type";
|
||||
type enumeration {
|
||||
enum ipv4 {
|
||||
description "Internet Protocol address version 4";
|
||||
value 0;
|
||||
}
|
||||
enum ipv6 {
|
||||
description "Internet Protocol address version 6";
|
||||
value 1;
|
||||
}
|
||||
enum mac {
|
||||
description "Media Access Control address";
|
||||
value 2;
|
||||
}
|
||||
|
||||
/*
|
||||
* Protocol YANG models should augment the parent node to
|
||||
* contain the routing protocol specific value. The protocol
|
||||
* must also augment `value` leaf to include its specific
|
||||
* values or expand the `when` statement on the existing cases.
|
||||
*/
|
||||
enum custom {
|
||||
description "Custom data type";
|
||||
value 100;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
leaf identifier {
|
||||
description "Access list identifier";
|
||||
type access-list-name;
|
||||
}
|
||||
|
||||
leaf sequence {
|
||||
description "Access list sequence value";
|
||||
type access-list-sequence;
|
||||
}
|
||||
|
||||
leaf action {
|
||||
description "Access list action on match";
|
||||
type access-list-action;
|
||||
mandatory true;
|
||||
}
|
||||
|
||||
leaf remark {
|
||||
description "Access list remark";
|
||||
type string;
|
||||
}
|
||||
|
||||
choice value {
|
||||
description "Access list value to match";
|
||||
mandatory true;
|
||||
|
||||
case ipv4-prefix {
|
||||
when "./type = 'ipv4'";
|
||||
|
||||
leaf ipv4-prefix {
|
||||
description "Configure IPv4 prefix to match";
|
||||
type inet:ipv4-prefix;
|
||||
}
|
||||
|
||||
leaf ipv4-exact-match {
|
||||
description "Exact match of prefix";
|
||||
type boolean;
|
||||
default false;
|
||||
}
|
||||
}
|
||||
case ipv6-prefix {
|
||||
when "./type = 'ipv6'";
|
||||
|
||||
leaf ipv6-prefix {
|
||||
description "Configure IPv6 prefix to match";
|
||||
type inet:ipv6-prefix;
|
||||
}
|
||||
|
||||
leaf ipv6-exact-match {
|
||||
description "Exact match of prefix";
|
||||
type boolean;
|
||||
default false;
|
||||
}
|
||||
}
|
||||
case mac {
|
||||
when "./type = 'mac'";
|
||||
|
||||
leaf mac {
|
||||
description "Configure MAC address to match";
|
||||
type yang:mac-address;
|
||||
}
|
||||
}
|
||||
case any {
|
||||
leaf any {
|
||||
description "Match anything";
|
||||
type empty;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
list prefix-list {
|
||||
description "Prefix list instance";
|
||||
|
||||
key "type name sequence";
|
||||
|
||||
leaf type {
|
||||
description "Prefix list type";
|
||||
type enumeration {
|
||||
enum ipv4 {
|
||||
description "Internet Protocol address version 4";
|
||||
value 0;
|
||||
}
|
||||
enum ipv6 {
|
||||
description "Internet Protocol address version 6";
|
||||
value 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
leaf name {
|
||||
description "Prefix list name";
|
||||
type access-list-name;
|
||||
}
|
||||
|
||||
leaf sequence {
|
||||
description "Access list sequence value";
|
||||
type access-list-sequence;
|
||||
}
|
||||
|
||||
leaf action {
|
||||
description "Prefix list action on match";
|
||||
type access-list-action;
|
||||
mandatory true;
|
||||
}
|
||||
|
||||
leaf description {
|
||||
description "Prefix list user description";
|
||||
type string;
|
||||
}
|
||||
|
||||
choice value {
|
||||
description "Prefix list value to match";
|
||||
mandatory true;
|
||||
|
||||
case ipv4-prefix {
|
||||
when "./type = 'ipv4'";
|
||||
|
||||
leaf ipv4-prefix {
|
||||
description "Configure IPv4 prefix to match";
|
||||
type inet:ipv4-prefix;
|
||||
}
|
||||
|
||||
leaf ipv4-prefix-length-greater-or-equal {
|
||||
description
|
||||
"Specifies if matching prefixes with length greater than
|
||||
or equal to value";
|
||||
type uint8 {
|
||||
range "0..32";
|
||||
}
|
||||
}
|
||||
|
||||
leaf ipv4-prefix-length-lesser-or-equal {
|
||||
description
|
||||
"Specifies if matching prefixes with length lesser than
|
||||
or equal to value";
|
||||
type uint8 {
|
||||
range "0..32";
|
||||
}
|
||||
}
|
||||
}
|
||||
case ipv6-prefix {
|
||||
when "./type = 'ipv6'";
|
||||
|
||||
leaf ipv6-prefix {
|
||||
description "Configure IPv6 prefix to match";
|
||||
type inet:ipv6-prefix;
|
||||
}
|
||||
|
||||
leaf ipv6-prefix-length-greater-or-equal {
|
||||
description
|
||||
"Specifies if matching prefixes with length greater than
|
||||
or equal to value";
|
||||
type uint8 {
|
||||
range "0..128";
|
||||
}
|
||||
}
|
||||
|
||||
leaf ipv6-prefix-length-lesser-or-equal {
|
||||
description
|
||||
"Specifies if matching prefixes with length lesser than
|
||||
or equal to value";
|
||||
type uint8 {
|
||||
range "0..128";
|
||||
}
|
||||
}
|
||||
}
|
||||
case any {
|
||||
leaf any {
|
||||
description "Match anything";
|
||||
type empty;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
404
yang/frr-route-map.yang
Normal file
404
yang/frr-route-map.yang
Normal file
@ -0,0 +1,404 @@
|
||||
module frr-route-map {
|
||||
yang-version 1.1;
|
||||
namespace "http://frrouting.org/yang/route-map";
|
||||
prefix frr-route-map;
|
||||
|
||||
import ietf-inet-types {
|
||||
prefix inet;
|
||||
}
|
||||
import frr-filter {
|
||||
prefix filter;
|
||||
}
|
||||
|
||||
organization "Free Range Routing";
|
||||
contact
|
||||
"FRR Users List: <mailto:frog@lists.frrouting.org>
|
||||
FRR Development List: <mailto:dev@lists.frrouting.org>";
|
||||
description "This module defines route map settings";
|
||||
|
||||
revision 2019-07-01 {
|
||||
description "Initial revision";
|
||||
}
|
||||
|
||||
/*
|
||||
* Types.
|
||||
*/
|
||||
typedef route-map-sequence {
|
||||
description "Route map valid sequence numbers";
|
||||
type uint16 {
|
||||
range "1..65535";
|
||||
}
|
||||
}
|
||||
|
||||
typedef route-map-name {
|
||||
description "Route map name format";
|
||||
type string;
|
||||
}
|
||||
|
||||
/*
|
||||
* Operational data.
|
||||
*/
|
||||
container route-map {
|
||||
list instance {
|
||||
description "Route map instance";
|
||||
|
||||
key "name sequence";
|
||||
|
||||
leaf name {
|
||||
description "Route map instance name";
|
||||
type route-map-name;
|
||||
}
|
||||
|
||||
leaf sequence {
|
||||
description
|
||||
"Route map instance priority (low number means higher priority)";
|
||||
type route-map-sequence;
|
||||
}
|
||||
|
||||
leaf description {
|
||||
description "Route map description";
|
||||
type string;
|
||||
}
|
||||
|
||||
leaf action {
|
||||
description
|
||||
"Route map actions: permit (executes action), deny (quits evaluation)";
|
||||
mandatory true;
|
||||
type enumeration {
|
||||
enum permit {
|
||||
description
|
||||
"Executes configured action and permits the prefix/route
|
||||
if the conditions matched. An alternative exit action can
|
||||
be configured to continue processing the route map list
|
||||
or jump to process another route map.";
|
||||
value 0;
|
||||
}
|
||||
enum deny {
|
||||
description
|
||||
"If all conditions are met the prefix/route is denied and
|
||||
route map processing stops.";
|
||||
value 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
list match-condition {
|
||||
description "Route map match conditions";
|
||||
|
||||
key "condition";
|
||||
|
||||
leaf condition {
|
||||
description "Match condition";
|
||||
type enumeration {
|
||||
enum interface {
|
||||
description "Match interface";
|
||||
value 0;
|
||||
}
|
||||
enum ipv4-address-list {
|
||||
description "Match an IPv4 access-list";
|
||||
value 1;
|
||||
}
|
||||
enum ipv4-prefix-list {
|
||||
description "Match an IPv4 prefix-list";
|
||||
value 2;
|
||||
}
|
||||
enum ipv4-prefix-length {
|
||||
description "Match an IPv4 prefix length";
|
||||
value 3;
|
||||
}
|
||||
enum ipv4-next-hop-list {
|
||||
description "Match an IPv4 next-hop";
|
||||
value 4;
|
||||
}
|
||||
enum ipv4-next-hop-prefix-list {
|
||||
description "Match an IPv4 next-hop prefix list";
|
||||
value 5;
|
||||
}
|
||||
enum ipv4-next-hop-prefix-length {
|
||||
description "Match an IPv4 next-hop prefix length";
|
||||
value 6;
|
||||
}
|
||||
enum ipv4-next-hop-type {
|
||||
description "Match an IPv4 next-hop type";
|
||||
value 7;
|
||||
}
|
||||
enum ipv6-address-list {
|
||||
description "Match an IPv6 access-list";
|
||||
value 8;
|
||||
}
|
||||
enum ipv6-prefix-list {
|
||||
description "Match an IPv6 prefix-list";
|
||||
value 9;
|
||||
}
|
||||
enum ipv6-prefix-length {
|
||||
description "Match an IPv6 prefix length";
|
||||
value 10;
|
||||
}
|
||||
enum ipv6-next-hop {
|
||||
description "Match an IPv6 next-hop";
|
||||
value 11;
|
||||
}
|
||||
enum ipv6-next-hop-type {
|
||||
description "Match an IPv6 next-hop type";
|
||||
value 12;
|
||||
}
|
||||
enum metric {
|
||||
description "Match a route metric";
|
||||
value 13;
|
||||
}
|
||||
enum tag {
|
||||
description "Match a route tag";
|
||||
value 14;
|
||||
}
|
||||
|
||||
/*
|
||||
* Protocol YANG models should augment the parent node to
|
||||
* contain the routing protocol specific value. The protocol
|
||||
* must also augment `condition-value` to include its specific
|
||||
* values or expand the `when` statement on the existing cases.
|
||||
*/
|
||||
enum routing-protocol-specific {
|
||||
description "Match a routing protocol specific type";
|
||||
value 100;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
choice condition-value {
|
||||
description
|
||||
"Value to match (interpretation depends on condition type)";
|
||||
case access-list-num {
|
||||
when "./condition = 'ipv4-address-list' or
|
||||
./condition = 'ipv4-next-hop-list'";
|
||||
leaf access-list-num {
|
||||
type filter:access-list-standard;
|
||||
}
|
||||
}
|
||||
case access-list-num-extended {
|
||||
when "./condition = 'ipv4-address-list' or
|
||||
./condition = 'ipv4-next-hop-list'";
|
||||
leaf access-list-num-extended {
|
||||
type filter:access-list-extended;
|
||||
}
|
||||
}
|
||||
case list-name {
|
||||
when "./condition = 'ipv4-address-list' or
|
||||
./condition = 'ipv4-prefix-list' or
|
||||
./condition = 'ipv4-next-hop-list' or
|
||||
./condition = 'ipv4-next-hop-prefix-list' or
|
||||
./condition = 'ipv6-address-list' or
|
||||
./condition = 'ipv6-prefix-list'";
|
||||
leaf list-name {
|
||||
type filter:access-list-name;
|
||||
}
|
||||
}
|
||||
case ipv6-address {
|
||||
when "./condition = 'ipv6-next-hop'";
|
||||
leaf ipv6-address {
|
||||
type inet:ipv6-address;
|
||||
}
|
||||
}
|
||||
case ipv4-prefix-length {
|
||||
when "./condition = 'ipv4-prefix-length' or
|
||||
./condition = 'ipv4-next-hop-prefix-length'";
|
||||
leaf ipv4-prefix-length {
|
||||
type uint8 {
|
||||
range "0..32";
|
||||
}
|
||||
}
|
||||
}
|
||||
case ipv6-prefix-length {
|
||||
when "./condition = 'ipv6-prefix-length'";
|
||||
leaf ipv6-prefix-length {
|
||||
type uint8 {
|
||||
range "0..128";
|
||||
}
|
||||
}
|
||||
}
|
||||
case ipv4-next-hop-type {
|
||||
when "./condition = 'ipv4-next-hop-type'";
|
||||
leaf ipv4-next-hop-type {
|
||||
type enumeration {
|
||||
enum blackhole {
|
||||
value 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
case ipv6-next-hop-type {
|
||||
when "./condition = 'ipv6-next-hop-type'";
|
||||
leaf ipv6-next-hop-type {
|
||||
type enumeration {
|
||||
enum blackhole {
|
||||
value 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
case metric {
|
||||
when "./condition = 'metric'";
|
||||
leaf metric {
|
||||
type uint32 {
|
||||
range "1..4294967295";
|
||||
}
|
||||
}
|
||||
}
|
||||
case tag {
|
||||
when "./condition = 'tag'";
|
||||
leaf tag {
|
||||
type uint32 {
|
||||
range "1..4294967295";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
list set-action {
|
||||
description "Route map set actions";
|
||||
|
||||
key "action";
|
||||
|
||||
leaf action {
|
||||
description "Action to do when the route map matches";
|
||||
type enumeration {
|
||||
enum ipv4-next-hop {
|
||||
description "Set IPv4 address of the next hop";
|
||||
value 0;
|
||||
}
|
||||
enum ipv6-next-hop {
|
||||
description "Set IPv6 address of the next hop";
|
||||
value 1;
|
||||
}
|
||||
enum metric {
|
||||
description "Set prefix/route metric";
|
||||
value 2;
|
||||
}
|
||||
enum tag {
|
||||
description "Set tag";
|
||||
value 3;
|
||||
}
|
||||
|
||||
/*
|
||||
* Protocol YANG models should augment the parent node to
|
||||
* contain the routing protocol specific value. The protocol
|
||||
* must also augment `action-value` to include its specific
|
||||
* values or expand the `when` statement on the existing cases.
|
||||
*/
|
||||
enum routing-protocol-specific {
|
||||
description "Set a routing protocol specific action";
|
||||
value 100;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
choice action-value {
|
||||
description
|
||||
"Value to set (interpretation depends on action-type)";
|
||||
case ipv4-address {
|
||||
when "./action = 'ipv4-next-hop'";
|
||||
leaf ipv4-address {
|
||||
description "IPv4 address";
|
||||
type inet:ipv4-address;
|
||||
}
|
||||
}
|
||||
case ipv6-address {
|
||||
when "./action = 'ipv6-next-hop'";
|
||||
leaf ipv6-address {
|
||||
description "IPv6 address";
|
||||
type inet:ipv6-address;
|
||||
}
|
||||
}
|
||||
case metric {
|
||||
when "./action = 'metric'";
|
||||
choice metric-value {
|
||||
description "Metric to set or use";
|
||||
case value {
|
||||
leaf value {
|
||||
description "Use the following metric value";
|
||||
type uint32 {
|
||||
range "0..4294967295";
|
||||
}
|
||||
}
|
||||
}
|
||||
case add-metric {
|
||||
leaf add-metric {
|
||||
description "Add unit to metric";
|
||||
type boolean;
|
||||
}
|
||||
}
|
||||
case subtract-metric {
|
||||
leaf subtract-metric {
|
||||
description "Subtract unit from metric";
|
||||
type boolean;
|
||||
}
|
||||
}
|
||||
case use-round-trip-time {
|
||||
leaf use-round-trip-time {
|
||||
description "Use the round trip time as metric";
|
||||
type boolean;
|
||||
}
|
||||
}
|
||||
case add-round-trip-time {
|
||||
leaf add-round-trip-time {
|
||||
description "Add round trip time to metric";
|
||||
type boolean;
|
||||
}
|
||||
}
|
||||
case subtract-round-trip-time {
|
||||
leaf subtract-round-trip-time {
|
||||
description "Subtract round trip time to metric";
|
||||
type boolean;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
case tag {
|
||||
leaf tag {
|
||||
description "Tag value";
|
||||
type uint32 {
|
||||
range "0..4294967295";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
leaf call {
|
||||
description
|
||||
"Call another route map before calling `exit-policy`. If the
|
||||
called route map returns deny then this route map will also
|
||||
return deny";
|
||||
type string;
|
||||
}
|
||||
|
||||
leaf exit-policy {
|
||||
description "What do to after route map successful match, set and call";
|
||||
type enumeration {
|
||||
enum permit-or-deny {
|
||||
description "End route map evaluation and return";
|
||||
value 0;
|
||||
}
|
||||
enum next {
|
||||
description
|
||||
"Proceed evaluating next route map entry per sequence";
|
||||
value 1;
|
||||
}
|
||||
enum goto {
|
||||
description
|
||||
"Go to route map entry with the provided sequence number";
|
||||
value 2;
|
||||
}
|
||||
}
|
||||
default "permit-or-deny";
|
||||
}
|
||||
|
||||
leaf goto-value {
|
||||
when "../exit-policy = 'goto'";
|
||||
description
|
||||
"Sequence number to jump (when using `goto` exit policy)";
|
||||
type route-map-sequence;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user